Internal
problem
ID
[10433]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
1,
linear
first
order
Problem
number
:
430
Date
solved
:
Wednesday, March 05, 2025 at 10:47:51 AM
CAS
classification
:
[_rational, _dAlembert]
ode:=(a2*x+c2)*diff(y(x),x)^2+(a1*x+b1*y(x)+c1)*diff(y(x),x)+a0*x+b0*y(x)+c0 = 0; dsolve(ode,y(x), singsol=all);
ode=c0 + a0*x + b0*y[x] + (c1 + a1*x + b1*y[x])*D[y[x],x] + (c2 + a2*x)*D[y[x],x]^2==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
Timed out
from sympy import * x = symbols("x") a0 = symbols("a0") a1 = symbols("a1") a2 = symbols("a2") b0 = symbols("b0") b1 = symbols("b1") c0 = symbols("c0") c1 = symbols("c1") c2 = symbols("c2") y = Function("y") ode = Eq(a0*x + b0*y(x) + c0 + (a2*x + c2)*Derivative(y(x), x)**2 + (a1*x + b1*y(x) + c1)*Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out