Internal
problem
ID
[10079]
Book
:
Differential
Gleichungen,
E.
Kamke,
3rd
ed.
Chelsea
Pub.
NY,
1948
Section
:
Chapter
1,
linear
first
order
Problem
number
:
66
Date
solved
:
Wednesday, March 05, 2025 at 08:26:56 AM
CAS
classification
:
[_separable]
ode:=diff(y(x),x)-abs(y(x)*(-1+y(x))*(-1+a*y(x)))^(1/2)/abs(x*(x-1)*(a*x-1))^(1/2) = 0; dsolve(ode,y(x), singsol=all);
ode=D[y[x],x] - Sqrt[Abs[y[x]*(1-y[x])*(1-a*y[x])]]/Sqrt[Abs[x*(1-x)*(1-a*x)]]==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a = symbols("a") y = Function("y") ode = Eq(Derivative(y(x), x) - sqrt(Abs((a*y(x) - 1)*(y(x) - 1)*y(x)))/sqrt(Abs(x*(x - 1)*(a*x - 1))),0) ics = {} dsolve(ode,func=y(x),ics=ics)