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:
The discussion revolves around solving a specific second-order differential equation, f’’(t)=GM/((Α-f(t))^2, and the general methods for approaching second-order differential equations. Participants explore various methods of integration, express their preferences for answers versus methods, and share experiences with computational tools like Wolfram Alpha and Mathematica.
Participants express differing views on the necessity of understanding the method of solution versus simply obtaining an answer. There is no consensus on the best approach to solving the differential equation, and multiple competing views remain regarding the expressibility of the solution.
Some participants mention specific initial conditions and transformations, but there are unresolved mathematical steps and assumptions that may affect the overall understanding of the solutions discussed.
This discussion may be useful for individuals interested in differential equations, mathematical modeling, and the use of computational tools in solving complex mathematical problems.
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}]