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