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