Internal
problem
ID
[11597]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
1,
linear
first
order
Problem
number
:
289
Date
solved
:
Tuesday, September 30, 2025 at 09:36:18 PM
CAS
classification
:
[_exact, _rational, [_1st_order, `_with_symmetry_[F(x),G(x)]`]]
ode:=(6*y(x)-x)^2*diff(y(x),x)-6*y(x)^2+2*x*y(x)+a = 0; dsolve(ode,y(x), singsol=all);
ode=(6*y[x]-x)^2*D[y[x],x]-6*y[x]^2+2*x*y[x]+a==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a = symbols("a") y = Function("y") ode = Eq(a + 2*x*y(x) + (-x + 6*y(x))**2*Derivative(y(x), x) - 6*y(x)**2,0) ics = {} dsolve(ode,func=y(x),ics=ics)