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