var fDesc=new Array(); fDesc[0] = "ThreeBody illustrates some solutions of the 3 bodies problem in celestial mechanic.
ThreeBody illustrate 3 cases in the situation where the 3 planets have the same mass. The two first cases are "classical" ones and very special in the sense that the trajectories are close and "stable": Case of Lagrange (18the century), Case of A. Chenciner & R. Montgomery (1999) and Arbitray case.

It's a scientific program for a general public: it's aim is to remain us a fundamental idea, i.e. that even in the case of a perfectly deterministic problem like the law of gravitation (le law in 1/r^2 from Isaac Newton), as soon as we have more than two bodies (planets), one cannot predict the asymtotic behavior (in the long range) of the system. So one may say that even in the case of a simple deterministic situation, the liberty is still alive."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }