Internal
problem
ID
[24284]
Book
:
A
short
course
in
Differential
Equations.
Earl
D.
Rainville.
Second
edition.
1958.
Macmillan
Publisher,
NY.
CAT
58-5010
Section
:
Chapter
2.
Equations
of
the
first
order
and
first
degree.
Exercises
at
page
27
Problem
number
:
19
Date
solved
:
Thursday, October 02, 2025 at 10:07:08 PM
CAS
classification
:
[[_homogeneous, `class A`], _rational, _dAlembert]
ode:=t*(s(t)^2+t^2)*diff(s(t),t)-s(t)*(s(t)^2-t^2) = 0; dsolve(ode,s(t), singsol=all);
ode=t*(s[t]^2+t^2)*D[s[t],t]-s[t]*(s[t]^2-t^2)==0; ic={}; DSolve[{ode,ic},s[t],t,IncludeSingularSolutions->True]
from sympy import * t = symbols("t") s = Function("s") ode = Eq(t*(t**2 + s(t)**2)*Derivative(s(t), t) - (-t**2 + s(t)**2)*s(t),0) ics = {} dsolve(ode,func=s(t),ics=ics)
RecursionError : maximum recursion depth exceeded