Gravitational field conceptual question

AI Thread Summary
In a theoretical scenario with two isolated masses that suddenly experience gravitational attraction, the discussion focuses on determining their positions over time due to this interaction. The gravitational force can be described using Newton's laws, leading to a second-order differential equation that is non-linear and complex to solve. While conservation of energy can simplify finding velocities at specific points, the overall solution may require numerical methods for practical applications. The conversation also touches on the reduction of the two-body problem to a one-body problem using Lagrangian mechanics, which can further aid in analyzing their motion. Ultimately, the complexities of gravitational interactions highlight the challenges in solving such equations analytically.
PrakashPhy
Messages
35
Reaction score
0
Suppose a case where two masses are essentially far away form all other bodies so that we can assume the two masses are not affected by any other interactions going on beside them and they do not have the property of gravitation until a time( they are perfectly isolated{in theory everything is possible}). If suddenly at t=0 the gravitational field starts how do we find the position of the two masses as a function of time due to gravitational interaction ( and nothing else)??
 
Physics news on Phys.org
PrakashPhy said:
Suppose a case where two masses are essentially far away form all other bodies so that we can assume the two masses are not affected by any other interactions going on beside them
For the sake of the thought experiment, we can imagine a universe with only two masses in it.
and they do not have the property of gravitation until a time( they are perfectly isolated{in theory everything is possible}).
In theory, not everything is possible, that is why we have theories. However, we can imagine that the objects have particular positions at time t=0 when
If suddenly at t=0 the gravitational field starts how do we find the position of the two masses as a function of time due to gravitational interaction ( and nothing else)??

You mean apart from finding their mutual acceleration by Newton's gravitation?
 
Unless I am missing something in the question, this is a textbook example of a classical mechanics problem. You simply apply Newton's laws, F = m a where the force is given by Newton's law of gravitational. Break vectors into components and integrate the acceleration, which is the second derivative of position with respect to time, to get equations of motion, being careful to remember that the force of gravity depends on position as well. This is all pretty basic stuff you could find in any textbook. Which part don't you understand?
 
chrisbaird said:
You simply apply Newton's laws, F = m a where the force is given by Newton's law of gravitational. Break vectors into components and integrate the acceleration..

You don't even need to decompose vectors, since there are only two masses in this universe and I assume gravity attracts them "toward" each other.
 
The resulting differential equation d^2x/dt^2 = K/x^2 (where K is some constant) is not trivial to solve though since it's a non-linear ODE. Unless I'm forgetting something basic.

One can use conservation of energy to get the velocity at any point in the trajectory, but I forget if this greatly simplifies the solution for the full equation of motion.
 
\ddot{x} = \frac{K}{x^2}

multiply both sides by \dot{x}
\dot{x}\ddot{x} = \frac{K\dot{x}}{x^2}

Now you can integrate both sides, rearrange to get:

\dot{x} = \sqrt{ \frac{2K}{x} +C }

which you can do. It's not pretty.

t = \frac{\dot{x}}{C} - \frac{K\ln|2K + 2C\dot{x}|}{C^{3/2}} + D

More generally:
http://www.berkeleyscience.com/pm.htm
 
Matterwave said:
The resulting differential equation d^2x/dt^2 = K/x^2 (where K is some constant) is not trivial to solve though since it's a non-linear ODE. Unless I'm forgetting something basic.

I meant setting up the problem is straight-forward. Solving the differential equation is not always doable analytically. When not, you an always solve differential equations numerically, either by using per-packaged software or writing your own code.
 
Oh boy - IRL: differential equations can get very nasty very fast. Real life is messy.

The nice quadratic ballistic equations we learn in school only work under special conditions ... linear gravity and no other forces.

Actual accurate satellite orbits are determined numerically and cannot be expressed analytically like this.
OTOH: the 2-body problem described was worked out quite a while ago.
 
Can't the two body problem be reduced to a similar one body problem? Taking the Lagrangian of the system, assuming the origin to be the COM (r_1m_1 = -r_2m_2) and defining r = r_1 - r_2you have
L = \frac{1}{2}m_1\dot{r_1}^2 + \frac{1}{2}m_2\dot{r_2}^2 - U(r)
We can express the position vectors as r_1 = \frac{m_2r}{m_1+m_2} and r_2 = \frac{m_1r}{m_1+m_2}, then define m = \frac{m_1m_2}{m_1+m_2} which then reduces the Lagrangian to
L = \frac{1}{2}m\dot{r}^2 - U(r)
Where
U(r) = -\frac{m_1m_2 G}{r}

I guess this would be more of a question than an answer though? :)
 
Last edited:
Back
Top