Internal
problem
ID
[10334]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
1,
linear
first
order
Problem
number
:
326
Date
solved
:
Sunday, March 30, 2025 at 04:12:04 PM
CAS
classification
:
[[_homogeneous, `class A`], _rational, _dAlembert]
ode:=y(x)*((b*x+a*y(x))^3+b*x^3)*diff(y(x),x)+x*((b*x+a*y(x))^3+a*y(x)^3) = 0; dsolve(ode,y(x), singsol=all);
ode=x*(a*y[x]^3 + (b*x + a*y[x])^3) + y[x]*(b*x^3 + (b*x + a*y[x])^3)*D[y[x],x]==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a = symbols("a") b = symbols("b") y = Function("y") ode = Eq(x*(a*y(x)**3 + (a*y(x) + b*x)**3) + (b*x**3 + (a*y(x) + b*x)**3)*y(x)*Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out