Internal
problem
ID
[10302]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
1,
linear
first
order
Problem
number
:
294
Date
solved
:
Sunday, March 30, 2025 at 03:53:51 PM
CAS
classification
:
[_rational, [_1st_order, `_with_symmetry_[F(x),G(x)*y+H(x)]`]]
ode:=x*(y(x)^2+x^2-a)*diff(y(x),x)-y(x)*(y(x)^2+x^2+a) = 0; dsolve(ode,y(x), singsol=all);
ode=x*(y[x]^2+x^2-a)*D[y[x],x]-y[x]*(y[x]^2+x^2+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(x*(-a + x**2 + y(x)**2)*Derivative(y(x), x) - (a + x**2 + y(x)**2)*y(x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out