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