Internal
problem
ID
[14580]
Book
:
Differential
Equations
by
Shepley
L.
Ross.
Third
edition.
John
Willey.
New
Delhi.
2004.
Section
:
Chapter
2,
section
2.2
(Separable
equations).
Exercises
page
47
Problem
number
:
10
Date
solved
:
Thursday, October 02, 2025 at 09:42:45 AM
CAS
classification
:
[[_homogeneous, `class A`], _rational, _dAlembert]
ode:=v(u)^3+(u^3-u*v(u)^2)*diff(v(u),u) = 0; dsolve(ode,v(u), singsol=all);
ode=v[u]^3+ (u^3-u*v[u]^2)*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**3 - u*v(u)**2)*Derivative(v(u), u) + v(u)**3,0) ics = {} dsolve(ode,func=v(u),ics=ics)