Internal
problem
ID
[22644]
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
:
21
Date
solved
:
Thursday, October 02, 2025 at 08:57:24 PM
CAS
classification
:
[[_homogeneous, `class A`], _rational, _dAlembert]
ode:=u^2*v(u)-(u^3+v(u)^3)*diff(v(u),u) = 0; dsolve(ode,v(u), singsol=all);
ode=u^2*v[u]-(u^3+v[u]^3)*D[v[u],u]==0; ic={}; DSolve[{ode,ic},v[u],u,IncludeSingularSolutions->True]
from sympy import * u = symbols("u") v = Function("v") ode = Eq(u**2*v(u) - (u**3 + v(u)**3)*Derivative(v(u), u),0) ics = {} dsolve(ode,func=v(u),ics=ics)