Internal
problem
ID
[11875]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
1,
Additional
non-linear
first
order
Problem
number
:
577
Date
solved
:
Tuesday, September 30, 2025 at 11:38:23 PM
CAS
classification
:
[[_homogeneous, `class C`], _dAlembert]
ode:=diff(y(x),x) = F(y(x)/(x+a)); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x] == F[y[x]/(a + x)]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a = symbols("a") y = Function("y") F = Function("F") ode = Eq(-F(y(x)/(a + x)) + Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
TypeError : argument of type Mul is not iterable