Internal
problem
ID
[10606]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
1,
Additional
non-linear
first
order
Problem
number
:
608
Date
solved
:
Sunday, March 30, 2025 at 06:10:00 PM
CAS
classification
:
[[_1st_order, _with_linear_symmetries]]
ode:=diff(y(x),x) = y(x)^(1/2)/(y(x)^(1/2)+F((x-y(x))/y(x)^(1/2))); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x] == Sqrt[y[x]]/(F[(x - y[x])/Sqrt[y[x]]] + Sqrt[y[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) - sqrt(y(x))/(F((x - y(x))/sqrt(y(x))) + sqrt(y(x))),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out