Differential equation simplification

teplotaxl
Messages
3
Reaction score
0
Hi guys! It's my first post here... I'm in a Computer Science degree, where courses dealing with differential equations are not mandatory (and I have therefore not completed any), and was asked to solve the following problem using the fourth-order Runge-Kutta method, coded in FORTRAN. I obviously have no difficulties with the latter, but I'm COMPLETELY CLUELESS about the mathematical juggling necessary to simplify the equation I will describe below. Any help will be greatly appreciated! :D

Homework Statement


It is known that all small bodies are attracted towards Earth due to gravitation. To solve the problem, you must simplify the following differential equation and obtain two first-order differential equations. Apply the formulas given by fourth-order Runge-Kutta to find speed y'(t) and position y(t). How long does it take the object to fall?

Homework Equations



The equation that describes the movement of an object falling towards Earth is

\ddot{y}(t)=-g \frac{R^2}{y^2},

where g is gravitational acceleration, and R is the radius of the Earth.

Take g=\frac{32}{5280}, R=4000 and H=200000 (H is the height from which the object will be dropped).

The Attempt at a Solution


I've tried to integrate both sides of the equation, but cannot obtain a polynomial expression needed to apply RK4.

Cheers!
 
Physics news on Phys.org
If you need to split it into two first degree equations to apply a numerical method, then let w(t)=y'(t). Your two equations become w'(t)=-g*R^2/y^2 and, uh, y'(t)=w(t).
 
Last edited:
Hahaha I can't believe the simplicity! I had been trying some exponential stuff... with no result. Thank you very much. I'll try this and post back.
 
Now that you have two first order equations, run two Runge-Kutta solvers simultaneously, using the values from both at each step.
 
Prove $$\int\limits_0^{\sqrt2/4}\frac{1}{\sqrt{x-x^2}}\arcsin\sqrt{\frac{(x-1)\left(x-1+x\sqrt{9-16x}\right)}{1-2x}} \, \mathrm dx = \frac{\pi^2}{8}.$$ Let $$I = \int\limits_0^{\sqrt 2 / 4}\frac{1}{\sqrt{x-x^2}}\arcsin\sqrt{\frac{(x-1)\left(x-1+x\sqrt{9-16x}\right)}{1-2x}} \, \mathrm dx. \tag{1}$$ The representation integral of ##\arcsin## is $$\arcsin u = \int\limits_{0}^{1} \frac{\mathrm dt}{\sqrt{1-t^2}}, \qquad 0 \leqslant u \leqslant 1.$$ Plugging identity above into ##(1)## with ##u...
Back
Top