Accounting for Air Resistance

An object with mass m = 1 kg m = 1 \text{ kg} is launched straight upwards from ground level with initial velocity v 0 = 100 m/s v_0 = 100 \text{ m/s} . While it is moving upward, the net force on the object from gravity and from air resistance is F = m g v 2 100 . F = -mg - \frac{v^2}{100}. In the equation above, the negative signs indicate that the forces oppose the motion. The gravitational acceleration g g is 10 m/s 2 10 \text{ m/s}^{2} , and v v is the instantaneous velocity in the vertical direction.

To the nearest meter, what height (relative to ground) does the object reach before it begins to fall back down?

Note: Assume that the scaling factor on the v 2 v^2 term has the units required for that term to represent force.


The answer is 120.

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.

4 solutions

Steven Chase
Jan 12, 2017

Relevant wiki: Introduction to Kinematics

For situations with velocity-dependent forces, it is useful to employ the following strategy:

1) Start with Newton's Second law
2) Apply the differentiation - Chain rule
3) Separate variables and integrate

F = m d v d t = m d v d y d y d t = m v d v d y . {F = m \frac{dv}{dt} = m \frac{dv}{dy} \frac{dy}{dt} = mv \frac{dv}{dy}}. m v d v d y = m g v 2 100 = m g α v 2 . Here , α = 1 100 . d y = m v d v m g α v 2 . y m a x = v 0 0 m v d v m g α v 2 . = 0 v 0 m v d v m g + α v 2 . = m 2 α m g m g + α v 0 2 d u u . = m 2 α ln ( m g + α v 0 2 m g ) . \begin{aligned} mv \frac{dv}{dy} &= -mg - \frac{v^2}{100} = -mg - \alpha v^{2}. \\ \text{Here}, \, \alpha \,&=\, \frac{1}{100}. \\ dy &= \frac{mv \, {dv}}{-mg - \alpha v^{2}}. \\ y_{max} &= \int_{v_0}^{0} \frac{mv \, {dv}}{-mg - \alpha v^{2}}. \\ &= \int_0^{v_0} \frac{mv \, {dv}}{mg + \alpha v^{2}}. \\ &=\frac{m}{2 \alpha} \int_{mg}^{mg + \alpha {v_0}^2} \frac{du}{u}. \\ &= \frac{m}{2 \alpha} \ln \left(\frac{mg + \alpha {v_0}^2}{mg}\right). \\ \end{aligned}
Plugging in numbers gives y m a x = 120 m y_{max} = \boxed{120 m} , to the nearest meter.

Sahil Silare
Jan 19, 2017

We can define force as, F = m a F=ma F = m g v 2 100 F = -mg - \frac{v^2}{100} a = g v 2 m 100 a = -g - \frac{v^2}{m100} a = v d v d x a=v\frac{dv}{dx} At highest point v = 0 v=0 , v d v d x = ( 100 g + v 2 ) 100 \frac{vdv}{dx}=-\frac{\left(100g+v^2\right)}{100} v ( 100 g + v 2 ) d v = d x 100 \frac{v}{\left(100g+v^2\right)}dv=-\frac{dx}{100} By integrating both sides we get, 100 0 v ( 1000 + v 2 ) d v = 1 100 0 x d x \int _{100}^0\frac{v}{\left(1000+v^2\right)}dv=-\frac{1}{100}\int _0^xdx ln ( 1000 ) 2 ln ( 11000 ) 2 = x 100 \dfrac{\ln\left(1000\right)}{2}-\dfrac{\ln\left(11000\right)}{2}=-\frac{x}{100} x 100 = 1.1989 -\frac{x}{100}=-1.1989 x = 119.89 x=119.89 So, the answer is approximately x = 120 m x=120 m .

Its too easy for level 5!

Prince Loomba - 4 years, 4 months ago

Log in to reply

Yeah but it depends on the person who is attempting maybe there are many others who can't attempt and do it right. You can't compare levels as it may be easy for you but it maybe difficult for others. :)

Sahil Silare - 4 years, 4 months ago

Log in to reply

Thats right.

Prince Loomba - 4 years, 4 months ago
Krishna Karthik
May 7, 2020

I originally did the problem analytically, but since there are a lot of analytic solutions already, here's a solution that's done by computer simulation. I used Runge-Kutta 4th order to solve the second order ODE with time-step 1 0 6 10^{-6} :

 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
39
40
41
42
43
44
45
#4th order Runge-Kutta numerical solution of second order ODE

import math

#initialisation

time = 0
deltaT = 10**-6


u_1 = 0
u_2 = 100

def differentialEquation(t,x,xdot):  #applying RK4 by splitting 2nd order ODE into 2 first order ODEs
    return (-10 - ((xdot**2)/100))


while u_2 >= 0:

    #evaluating slope at various points


    k0 = deltaT*u_2
    L0 = deltaT*differentialEquation(time,u_1,u_2)

    k1 = deltaT*(u_2 + 0.5*L0)
    L1 = deltaT*differentialEquation(time + 0.5*deltaT, u_1 + 0.5*k0, u_2 + 0.5*L0)

    k2 = deltaT*(u_2 + 0.5*L1)
    L2 = deltaT*differentialEquation(time + 0.5*deltaT, u_1 + 0.5*k1, u_2 + 0.5*L1)

    k3 = deltaT*(u_2 + L2)
    L3 = deltaT*differentialEquation(time + deltaT, u_1 + k2, u_2 + L2)


    #RK4 approximation of values

    u_1 = u_1 + (1/6)*(k0 + 2*k1 + 2*k2 + k3)
    u_2 = u_2 + (1/6)*(L0 + 2*L1 + 2*L2 + L3)

    time += deltaT



print("maximum height: " + str(u_1))

Mark Hennings
Jan 22, 2017

For variety, the differential equation v ˙ = 10 v 2 100 v ( 0 ) = 100 \dot{v} \; = \; -10 - \frac{v^2}{100} \hspace{2cm} v(0) = 100 can be solved to obtain v = 10 10 tan ( α t 10 ) 0 t α 10 v \; = \; 10\sqrt{10}\tan\big(\alpha - \tfrac{t}{\sqrt{10}}\big) \hspace{2cm} 0 \le t \le \alpha\sqrt{10} where tan α = 10 \tan\alpha = \sqrt{10} . The the height of the particle at time t t is 0 t 10 10 tan ( α u 10 ) d u = 100 ln ( sec α sec ( α t 10 ) ) 0 t α 10 \int_0^t 10\sqrt{10}\tan\big(\alpha - \tfrac{u}{\sqrt{10}}\big)\,du \; = \; 100\ln\left(\frac{\sec\alpha}{\sec\big(\alpha - \tfrac{t}{\sqrt{10}}\big)}\right) \hspace{1cm} 0 \le t \le \alpha\sqrt{10} The particle reaches maximum height 100 sec α = 50 ln 11 120 100\sec\alpha = 50\ln11 \approx \boxed{120} when t = α 10 t = \alpha\sqrt{10} .

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...