Internal
problem
ID
[24308]
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
34
Problem
number
:
10
Date
solved
:
Thursday, October 02, 2025 at 10:12:57 PM
CAS
classification
:
[_exact, _rational]
ode:=w^3+w*z(w)^2-z(w)+(z(w)^3+w^2*z(w)-w)*diff(z(w),w) = 0; dsolve(ode,z(w), singsol=all);
ode=( w^3+w*z[w]^2-z[w] )+( z[w]^3+w^2*z[w] -w )*D[z[w],w]==0; ic={}; DSolve[{ode,ic},z[w],w,IncludeSingularSolutions->True]
Too large to display
from sympy import * w = symbols("w") z = Function("z") ode = Eq(w**3 + w*z(w)**2 + (w**2*z(w) - w + z(w)**3)*Derivative(z(w), w) - z(w),0) ics = {} dsolve(ode,func=z(w),ics=ics)
Timed Out