Let say you have an automated gun which can shoot the target by determining the horizontal and vertical distance to the target from the gun. It can also shoot at any velocity and at any angle. But you programmed the gun so that it will fire the bullet at minimum velocity possible to hit the target.
During a test run your gun found that the target is situated at 7 0 m height and at 1 4 0 m horizontal distance. Find the velocity (in m / s ) your gun is going to fire at.
Note:
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
I originally solved and got the expected answer by assuming that the vertical velocity is zero when the projectile strikes the target. However, this is not the optimal solution. A parameter sweep shows that the minimum launch speed is 4 7 . 5 9 , and it occurs when the launch velocity is ( v x , v y ) = ( 2 5 . 0 2 , 4 0 . 4 9 ) .
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
|
@Steven Chase
in first attempt I got 47.5 , but it was incorrect.
After some time i was thinking that you will delete you solution, but you just changed it according to correct answer. Smart guy.
Log in to reply
Yeah, I was a bit careless with the first solution
Log in to reply
@Steven Chase
but your strategy of thinking that the Particle have vertical velocity zero at that point is incorrect. Even I don't know what is incorrect in that method.
I will think of it. Interesting!
Log in to reply
@Talulah Riley – I have now posted an entirely different solution which gets the right answer
Log in to reply
@Steven Chase – @Steven Chase But what is wrong in your previous method.??
Log in to reply
@Talulah Riley – It is based on intuition, and intuition turns out to be wrong in this case. The actual optimization problem is more complex
Log in to reply
@Steven Chase
–
@Steven Chase
so the conclusion is if we want to through a particle to a particular coordinate it doesn't mean that, at that coordinate, the particle will have
v
y
=
0
,
v
x
=
v
cos
θ
.
Extreme cases may exist.
Log in to reply
@Talulah Riley – That's correct, the horizontal and vertical velocities are both nonzero at that point
@Sanjay Swain Yes, the answer is approximately 47.595 m/s. Your problem answer is incorrect.
The trajectory is:
y = tan θ x − 2 1 g v 2 cos 2 θ x 2
It follows that the velocity v is a function of θ parameterized by x and y :
v ( θ ) = ( 2 cos 2 θ ( y − tan θ x ) g x 2 ) 2 1
An optimization of v ( θ ) is found by taking the derivative of v w.r.t. θ and equating it to 0
d θ d v = d θ d ( 2 cos 2 θ ( y − tan θ x ) g x 2 ) 2 1 = 0
Once you find θ o p t . ( confirm you have a minimum by second derivative tests or a simple plot of v ( θ ) , substitute back into v ( θ ) ).
v ( 1.017 ) ≈ 47.595 s m
Problem Loading...
Note Loading...
Set Loading...
The equation of trajectory of the projectile is
y = x tan α − 2 u 2 g x 2 sec 2 α
⟹ tan 2 α − g x 2 u 2 tan α + 1 + g x 2 2 u 2 y = 0
Since α is real, therefore u 4 ≥ g 2 x 2 + 2 g y u 2
⟹ u ≥ g ( y + x 2 + y 2 )
= 7 0 0 ( 5 + 1 ) ≈ 4 7 . 5 9 4 6 m/s.