Internal
problem
ID
[10300]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
1,
linear
first
order
Problem
number
:
292
Date
solved
:
Sunday, March 30, 2025 at 03:53:42 PM
CAS
classification
:
[[_homogeneous, `class C`], _rational]
ode:=(a*y(x)+b*x+c)^2*diff(y(x),x)+(alpha*y(x)+beta*x+gamma)^2 = 0; dsolve(ode,y(x), singsol=all);
ode=(a*y[x]+b*x+c)^2*D[y[x],x]+(\[Alpha]*y[x]+\[Beta]*x+\[Gamma])^2==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
Too large to display
from sympy import * x = symbols("x") Alpha = symbols("Alpha") BETA = symbols("BETA") Gamma = symbols("Gamma") a = symbols("a") b = symbols("b") c = symbols("c") y = Function("y") ode = Eq((Alpha*y(x) + BETA*x + Gamma)**2 + (a*y(x) + b*x + c)**2*Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out