Internal
problem
ID
[11890]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
1,
Additional
non-linear
first
order
Problem
number
:
592
Date
solved
:
Sunday, October 12, 2025 at 02:02:17 AM
CAS
classification
:
[[_1st_order, `_with_symmetry_[F(x),G(x)]`]]
ode:=diff(y(x),x) = 1/5*(6*x^3+5*x^(1/2)+5*F(y(x)-2/5*x^3-2*x^(1/2)))/x; dsolve(ode,y(x), singsol=all);
ode=D[y[x],x] == (Sqrt[x] + (6*x^3)/5 + F[-2*Sqrt[x] - (2*x^3)/5 + y[x]])/x; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") F = Function("F") ode = Eq(Derivative(y(x), x) - (5*sqrt(x) + 6*x**3 + 5*F(-2*sqrt(x) - 2*x**3/5 + y(x)))/(5*x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : The given ODE -6*x**2/5 + Derivative(y(x), x) - F(-2*sqrt(x) - 2*x**3/5 + y(x))/x - 1/sqrt(x) cannot be solved by the factorable group method