Internal
problem
ID
[6005]
Book
:
Ordinary
Differential
Equations,
By
Tenenbaum
and
Pollard.
Dover,
NY
1963
Section
:
Chapter
8.
Special
second
order
equations.
Lesson
35.
Independent
variable
x
absent
Problem
number
:
Exercise
35.11,
page
504
Date
solved
:
Wednesday, March 05, 2025 at 12:03:44 AM
CAS
classification
:
[[_2nd_order, _missing_x], [_2nd_order, _reducible, _mu_x_y1]]
ode:=diff(diff(r(t),t),t) = h^2/r(t)^3-k/r(t)^2; dsolve(ode,r(t), singsol=all);
ode=D[r[t],{t,2}]==h^2/r[t]^3-k/r[t]^2; ic={}; DSolve[{ode,ic},r[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") h = symbols("h") k = symbols("k") r = Function("r") ode = Eq(-h**2/r(t)**3 + k/r(t)**2 + Derivative(r(t), (t, 2)),0) ics = {} dsolve(ode,func=r(t),ics=ics)