Freefall in a Newtonian gravitational field

AI Thread Summary
The discussion focuses on solving a differential equation related to an object in free fall within a Newtonian gravitational field. The equation a(p) = (G*M)/(p^2) leads to the second-order differential equation y'' = k/(y^2), where k = G*M. The user progresses through integration steps and realizes that the position as a function of time cannot be expressed in elementary functions, resulting in an implicit relationship instead. The conversation highlights the challenges of solving such equations and emphasizes the reliance on computational methods in engineering to approximate complex motions. Ultimately, the discussion underscores the limitations of analytical solutions in practical applications.
Medd
Messages
5
Reaction score
0
1) The problem statement :

For this problem, We use Newtonian Mechanics. We are placed in a geocentric frame of reference. An object (of which the mass is irrelevant for this problem) is released into the Earth's gravitational field at an altitude p(0) with no velocity whatsoever.
The question is how do you describe the motion of this object ? In other words, how to find the function p(t) which associates position p to any instant t of the free fall considering that the acceleration is given as a function of position a(p) = (G*M)/(p^2) where G is the gravitational constant and M the mass of the earth.


2) Relevant equations :


a(p) = (G*M)/(p^2)

3) Attempted solution :

I realized i was confronted with a differential equation and that its solution would be the function I'm looking for. However, I'm new to differential equations and I could only go this far :

a(p) = (G*M)/(p^2) means that p''(t) = (G*M)/(p(t))^2

So I would have to solve this :

y'' = k/(y)^2 ( with k = G*M )

This where I need your help.

Many thanks for considering my request.
 
Physics news on Phys.org
a = dv/dt.

Hint: What happens when i multiply the RHS numerator and denominator by dx.
 
Integration difficulties

Hi !

Thanks to your hint, I was able to make some good progress towards the solution of my differential equation.

If we assume an initial height "h" (y(0) = h) , and a initial speed of zero (v = dy/dt (0) = 0), we can start solving it :

\frac{d^{2}y}{dt^{2}} = \frac{dv}{dt}

We then apply the chain rule as you suggested in order to get :

\frac{d^{2}y}{dt^{2}} = \frac{dv}{dy} * v

\frac{dv}{dy} * v = \frac{- k}{y^{2}}

We integrate both sides with respect to dy, and get :

∫ \frac{dv}{dy} * v dy = ∫ \frac{- k}{y^{2}} dy

So :

\frac{v^{2}}{2} = \frac{k}{y} + C (C is a constant).

Which means that :

v = \sqrt{\frac{2k}{y} + 2C}

We know that v(0) = 0 and y(0) = h, so we can write :

0 = \sqrt{\frac{2k}{h} + 2C}

Which gives us C = - \frac{k}{h}

Thus, we get :

v = \sqrt{2k} * \sqrt{\frac{1}{y} - \frac{k}{h}}

\frac{dy}{dt} = \sqrt{2k} * \sqrt{\frac{1}{y} - \frac{k}{h}}

We rearrange the above equation to get :

\frac{dy}{\sqrt{\frac{1}{y} - \frac{k}{h}}} = \sqrt{2k} dt

We integrate both sides :

∫ \frac{dy}{\sqrt{\frac{1}{y} - \frac{k}{h}}} = \sqrt{2k} * ∫ dt

∫ \frac{dy}{\sqrt{\frac{1}{y} - \frac{k}{h}}} = \sqrt{2k} * ( t + C' )

C' is a constant.

So solving the problem comes down to being able to integrate the LHS and then writing y as a function of t. I am not able to do that. I used Wolfram and got a function that gives a complex output, I don't know how to interpret that or use it in my equation.
The link to the Wolfram integration I did : http://integrals.wolfram.com/index.jsp?expr=1%2FSqrt[1%2Fx+-+k%2Fh]&random=false

Thank you.
 
Medd said:
So :

\frac{v^{2}}{2} = \frac{k}{y} + C (C is a constant).

Which means that :

v = \sqrt{\frac{2k}{y} + 2C}

By taking the square root, you are implicitly assuming velocity is positive.

The object is released at time t=0 with zero velocity. It falls downward. Since positive y is upward, the velocity will be negative up to the point where the object impacts the Earth.

You should be using the additive inverse, v=-\sqrt{2k/y + 2C}.
 
Oops ! My bad. Thanks for spotting that !

So that gives us :

∫ \frac{dy}{\sqrt{\frac{1}{y} - \frac{1}{h}}} = - \sqrt{2k} * (t + C')

And I have the LHS integration problem again.
 
Try ## \cos u = \sqrt {y/h} ##.
 
And try solving for t as a function of y rather than y as a function of t.
 
Equation

So I finally came up with this, pfew :smile: :

t = \frac{\sqrt{h^{3}}(arccos\sqrt{\frac{y}{h}} + \sqrt{\frac{y}{h} - \frac{y^{2}}{h^{2}}} ) }{\sqrt{2k}}

This is good but isn't the whole point of studying motion to be able to write the position as a function of time ?
 
Being able to find an explicit formula for position as a function of time is an exception rather than the rule. In most cases, you cannot even solve the differential equation in any way.

In this case, the position is an implicit function of time, which still much better than the differential equation you started from. You can plot the function.

You could simplify your equation somewhat by defining ## x = ct, \ z = y/h ##, and the plot of x(z) will work for any such problem, it just needs scaling.
 
  • #10
Medd said:
This is good but isn't the whole point of studying motion to be able to write the position as a function of time ?
That's a transcendental equation. You aren't going to be able to find the inverse of that equation, one that gives position as a function of time, in the elementary functions.
 
  • #11
Many thanks !

Okay !

Thank you very much for all the help ! :biggrin:

I hope I'm not getting too off topic here but, since in most cases you can't even solve the equation (this is news for me, I'm shocked), what would an engineer do to predict complicated motion described by complicated DEs ? (Computational methods, which are only approximations of reality ?)

Again, thank you so much, I've been stuck with this problem for longer than I can confess. :wink:
 
  • #12
Medd said:
.
I hope I'm not getting too off topic here but, since in most cases you can't even solve the equation (this is news for me, I'm shocked), what would an engineer do to predict complicated motion described by complicated DEs ? (Computational methods, which are only approximations of reality ?)

This is the reality of engineering. This is why we invented computers to begin with.
 
Back
Top