Internal
problem
ID
[13226]
Book
:
Handbook
of
exact
solutions
for
ordinary
differential
equations.
By
Polyanin
and
Zaitsev.
Second
edition
Section
:
Chapter
1,
First-Order
differential
equations
Problem
number
:
1.1.6
Date
solved
:
Wednesday, October 01, 2025 at 03:37:19 AM
CAS
classification
:
[[_homogeneous, `class A`], _dAlembert]
ode:=diff(y(x),x) = f(y(x)/x); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]==f[y[x]/x]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") f = Function("f") ode = Eq(-f(y(x)/x) + Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)