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