Does air friction make a projectile trajectory non-parabolic?

Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
6 replies · 5K views
kishtik
Messages
96
Reaction score
0
How can I find the trajectory of a projectile when not neglecting air friction? Will it still be a parabola?
 
Physics news on Phys.org
1. There is no closed form exact solution to this problem if you assume that the air resistance has a quadratic dependence on the velocity.
(You'll need to use either numerical methods or smart approximations)
2. You may find a closed form solution in the case of a linear dependence in velocity of the air resistance.
3. No, the curves will not be parabolas.
 
But how can I use the quadratic formula to find the trajectory?
 
What quadratic formula?
 
no you can't use quadratic formula, since the path taken by the projectile will not be parabolic.
 
Are you talking of solving for the trajectory with qudratic dependency of velocity in air resistance?
If so, use for example a forward Euler scheme with a standard iteration loop to handle the nonlinearity
 
kishtik said:
But how can I use the quadratic formula to find the trajectory?
You dont.
Without air resistance the equations are:
[tex]m \frac{d^2 x}{dt^2} = 0[/tex]
and
[tex]m \frac{d^2 y}{dt^2} = -mg[/tex]
these can be solved by integrating both sides twice(the intitial height and initial velocity are functions of the constants of integration). The solution for x is linear in t and the solution for y is quadratic for t.
with air resistance(proportional to the velocity) the equations are:
[tex]m \frac{d^2 x}{dt^2} = -k \frac{dx}{dt}[/tex]
and
[tex]m \frac{d^2 x}{dt^2} = -k \frac{dx}{dt} - mg[/tex].
If you solve these you will find exponentials turning up in the solutions, and neither x nor y is quadratic in t. The solution is
[tex]x=A+Be^{-kt/m}[/tex]

[tex]y=C+De^{-kt/m}-\frac{mg}{k}t[/tex]
The initial position is (A+B,C+D). The xcomponent of the initial velocity is -kB/m. The y component of the initial velocity is -kD/m - mg/k. It is somewhat difficult to find y in terms of x, but it can be done by using logarithms as follows:
[tex]x-A = Be^{-kt/m}[/tex]

[tex]\frac{x-A}{B} = e^{-kt/m}[/tex]

[tex]ln(x-A)-ln(B) = -kt/m[/tex]

[tex]-\frac{k}{m}(ln (x-A) - ln (B)) = t[/tex]
now all that's left is to substitute this in the solution for y, to obtain
[tex]y=C+D\frac{x-A}{B} +g(ln (x-A) - ln (B))[/tex]
This clearly is not a parabola.