Internal
problem
ID
[22699]
Book
:
Applied
Differential
Equations.
By
Murray
R.
Spiegel.
3rd
edition.
1980.
Pearson.
ISBN
978-0130400970
Section
:
Chapter
two.
First
order
and
simple
higher
order
ordinary
differential
equations.
A
Exercises
at
page
65
Problem
number
:
77
Date
solved
:
Thursday, October 02, 2025 at 09:11:00 PM
CAS
classification
:
[_quadrature]
ode:=r(t)^3*diff(r(t),t) = (a^8-r(t)^8)^(1/2); dsolve(ode,r(t), singsol=all);
ode=r[t]^3*D[r[t],t]==Sqrt[a^8-r[t]^8]; ic={}; DSolve[{ode,ic},r[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") a = symbols("a") r = Function("r") ode = Eq(-sqrt(a**8 - r(t)**8) + r(t)**3*Derivative(r(t), t),0) ics = {} dsolve(ode,func=r(t),ics=ics)