8

This is a problem that has bothered me for a couple of weeks now, and I can't seem to wrap my head around it and understand it.

Let's say we have a planet with a mass of $m$. We also have an object of relatively small mass (so small that its gravitational field would not affect the planet), and we know that at time 0 it is at position $h$.

If we know the acceleration due to gravity $g$, we can calculate the position $y$ at time $t$:

$$y = h - { g \; t^2 \over 2 }. $$

And we know that the acceleration due to gravity could be calculated:

$$g = G { m \over y^2 }.$$

But since the acceleration depends on the position of the object relative to the planet, and the position of the object is dependent on the acceleration, this would obviously mean that the first formula won't work when we are working with displacement so large that it would change the acceleration significantly.

So, in essence, my question is, what formula can we use to calculate the position of an object, taking into consideration the change in acceleration due to gravity?

Qmechanic
  • 220,844
Freyja
  • 174

3 Answers3

8

I think that your paradox results from the first equation assuming constant acceleration, which won't be the case if you calculate gravity using the inverse-square law of Universal Gravitation as opposed to just assuming a constant g.

As for what formula you could use to calculate the position of your object when taking into account Universal Gravitation...let's just say the calculations I tried out weren't too pretty.

Here's the problem: since you can't use the formulas for kinematics that assume constant acceleration anymore, you have to go back to Newton's Second Law and plug in the law of Universal Gravitation directly (NOTE: in the equations below I call the distance between the two bodies r instead of y, and I write that your "little" mass has mass M...no worries though, as it will indeed get cancelled out!): $$ -GmM/r^2 = Ma_r $$

This gives you the following second-order nonlinear ordinary differential equation:

$$ \ddot{r} + Gm/r^2 = 0 $$ Wolfram Alpha found an analytical solution to this, but it is cumbersome to the point of uselessness. So I guess that's the formula you are looking for (minus needing to include the necessary constants)...like I said, though, it isn't too pretty!

Steven D.
  • 281
7

You are correct that the "normal" formula $y = h - gt^2/2$ doesn't work when the gravitational acceleration changes, so you need a different formula. The mathematical expressions are a little ugly, though. Steven laid the groundwork for this, but I'm going to point you to an earlier answer of mine where I did the calculation. The result comes out to be

$$t_f - t_i = \frac{1}{\sqrt{2G(m_1 + m_2)}}\biggl(\sqrt{r_i r_f(r_i - r_f)} + r_i^{3/2}\cos^{-1}\sqrt{\frac{r_f}{r_i}}\biggr)$$

$r_i$ and $t_i$ are the initial position (height) and time, respectively, and $r_f$ and $t_f$ are the corresponding final values. This equation is a little "backwards" in the sense that instead of expressing position as a function of time, it expresses time as a function of position. You can invert it to express position as a function of time, but you won't find a single nice function for it. You would have to do the inversion numerically, by plugging it into a computer, or by computing a power series or something like that.

David Z
  • 77,804
1

Wikipedia has a formula for the distance fallen by an object in a certain amount of time, or the inverse (time taken to fall a specified distance): https://en.wikipedia.org/wiki/Free_fall#Inverse-square_law_gravitational_field

tim_hutton
  • 201
  • 2
  • 4