luckis11
- 272
- 2
My question is the title of the thread.
Sorry, and this one too:
f’’(t)=GM/((Α-f(t))^2
Sorry, and this one too:
f’’(t)=GM/((Α-f(t))^2
Last edited:
Mark44 said:Integrate twice with respect to t to get r(t).
Why? Knowing an answer without knowing how to get it is useless.luckis11 said:I want the answer, not the method to solve it. Thanks though.
That's not how this forum works. Instead, you show that you have made an effort and we help you with it.luckis11 said:I want the answer, not the method to solve it. Thanks though.
Mark44 said:That's not how this forum works. Instead, you show that you have made an effort and we help you with it.
mysol = NDSolve[{Derivative[2][y][x] == -2/y[x]^2, y[0] == 2,
Derivative[1][y][0] == 0}, y, {x, 0, 2}]
lowy = N[y[1] /. mysol]
mytable = Table[
{(Sqrt[-1 + 2/y]*y + ArcTan[(Sqrt[-1 + 2/y]*(-1 + y))/
(-2 + y)])/Sqrt[2] + Pi/(2*Sqrt[2]), y},
{y, lowy[[1]], 2, 0.01}]
lp1 = ListPlot[mytable]
pp1 = Plot[y[x] /. mysol, {x, 0, 2}]
Show[{pp1, lp1}]