Particle 1 has mass m 1 = 1 and is fixed in place at position ( x 1 , y 1 ) = ( 0 , 0 ) . Particle 2 has mass m 2 = 1 and is fixed in place at position ( x 2 , y 2 ) = ( 3 0 , 0 ) . Particle 3 has mass m 3 = 1 and is free to move under the influence of the gravitational forces from the other two particles.
At time t = 0 , the position and velocity of Particle 3 are as follows:
( x 3 , y 3 ) = ( 1 , 0 ) ( x ˙ 3 , y ˙ 3 ) = ( 0 , 1 )
Note that in the absence of Particle 2 , Particle 3 would undergo uniform circular motion about the origin. Let r m a x be the largest distance of Particle 3 from the origin between t = 0 and t = 5 0 .
What is ( r m a x − 1 ) ?
Bonus: Make an x y scatter plot of the trajectory of Particle 3 . Are you surprised by the extent of the orbital deviation, given that the force from Particle 2 is only about one thousandth the strength of the force from Particle 1 ?
Details and Assumptions:
1)
Universal gravitational constant
G
=
1
2)
All quantities are in standard
S
I
units
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.
I was also wondering about the stability of the solar system. Do the gravitational interactions between planets make the orbits unstable, over a very long period of time?
Log in to reply
The question is difficult for me to answer. The way I would rigorously attempt this is by creating a simulation model of multiple planets based on Netwon's law of gravitation and simulate that for very long periods of time, to get some preliminary insights. Instead of doing that, I asked Google and ran into the following article. It gives a semi-analytical, numerical and historical perspective on the problem of orbital stability. Interesting first read.
http://www.scholarpedia.org/article/Stability of the solar system
@Steven Chase haha Newton had the same question. He, however, believed that the solar system needed divine intervention to keep from propelling into disaster.
Laplace actually wrote a treatise about the same issue. Mécanique Céleste is regarded one of the most important books in physics. He proved that planets would make only very small deviations from their orbit, and this was a huge finding in terms of answering the stability of the solar system question.
It will probably be very stable for the next few billion years.
Log in to reply
Indeed, it sounds like the sun's transformation into a red giant will be the more pressing issue.
Log in to reply
@Steven Chase – By then, I have full confidence that we would have become a type 3 civilisation. Or, we could have stayed on Earth and some other natural disaster would have wiped us out, just like the dinosaurs.
I just realised that you mention that G = 1 and then mention that the unit system followed is SI. I think this is a contradiction. If the gravitational constant is scaled, then effectively, the unit system changes. The magnitude of G in SI units is ≈ 6 . 6 7 × 1 0 − 1 1 .
Log in to reply
I would really like to disregard units altogether. They are nothing but an inconvenience. But people complain when I do that.
Log in to reply
Oh, I understand the intent of you doing so, and I agree with it. I did the same in my simple relativity problems when I scaled the speed of light to unity. I am just saying that it would be adequate to mention that 'The unit system in consideration is one where the gravitational constant is normalized to 1, for numerical convenience'. Or simply stating that G = 1 should suffice. Just a suggestion.
Log in to reply
@Karan Chatrath – Indeed, I think I'll just go back to having numbers without specifying any particular unit system. The implied instruction is to assume that the equations take their "standard forms".
Nice problem. At first, I tried to animate to see what would happen, but I couldn't really see anything visually. However, when I zoomed through and traced the orbit, it became more apparent.
I had to compress and optimize the file a lot for it to appear on this solution.
As you can see in the animation, the orbit deviates at the top and the bottom. This is much more apparent as time progresses. If you want to see the other particle on the right, just change the figure dimensions.
It is kind of surprising that a body that far away impacts the orbit like that. Here's some code; if you have matlab, please run it; you can see the animation of the perturbed orbit. It looks pretty cool.
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 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 |
|
Nice job. The animations are pretty cool too
Log in to reply
Yeah, I kept the radii of the circles 0.5 so that I could see them from afar with the particle on the right too. I initially thought the result would be more dramatic, like the particle spiraling off and shooting into infinity.
See the solution by @Karan Chatrath for a detailed explanation. Below is a picture of the trajectory with equal scaling on the x and y axes. I solved for the trajectory using Newtonian mechanics and numerical integration, which turned out to be pretty straightforward. The presence of Particle 2 has a fairly significant effect on the trajectory, even though its force is about three orders of magnitude weaker than that from Particle 1 . Without Particle 2 present, the orbit would just be a unit circle centered on the origin.
Problem Loading...
Note Loading...
Set Loading...
Continuing my effort to avoid derivative crunching by hand.
Position of particle 3 at a general time is r 3 = ( x , y ) and velocity is v 3 = ( x ˙ , y ˙ ) . Potential energy of the system is:
V = − G m 2 ( ∣ r 3 − r 1 ∣ 1 + ∣ r 3 − r 2 ∣ 1 + ∣ r 2 − r 1 ∣ 1 )
The third term can be ignored as well as that is a constant. Kinetic energy of the system is:
T = 2 m ( x ˙ 2 + y ˙ 2 )
Applying Lagrangian mechanics:
x ¨ = − ∂ x ∂ V y ¨ = − ∂ y ∂ V
The trajectory of the particle is:
If the particle 2 was absent, the trajectory would have been the expected elliptical closed orbit. The presence of mass 2 causes the mass 3 to deviate from this original trajectory. In general, the three body problem yields more complicated motions than the two-body problem.