Internal
problem
ID
[5730]
Book
:
Differential
Equations,
By
George
Boole
F.R.S.
1865
Section
:
Chapter
3
Problem
number
:
10
Date
solved
:
Sunday, March 30, 2025 at 10:06:23 AM
CAS
classification
:
[_Riccati]
ode:=x^n/(b*y(x)^2-c*x^(2*a))*diff(y(x),x)-a*y(x)*x^(a-1)/(b*y(x)^2-c*x^(2*a))+x^(a-1) = 0; dsolve(ode,y(x), singsol=all);
ode=x^n/(b*y[x]^2-c*x^(2*a))*D[y[x],x] - a*y[x]*x^(a-1)/(b*y[x]^2-c*x^(2*a)) + x^(a-1)==0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
Not solved
from sympy import * x = symbols("x") a = symbols("a") b = symbols("b") c = symbols("c") n = symbols("n") y = Function("y") ode = Eq(-a*x**(a - 1)*y(x)/(b*y(x)**2 - c*x**(2*a)) + x**n*Derivative(y(x), x)/(b*y(x)**2 - c*x**(2*a)) + x**(a - 1),0) ics = {} dsolve(ode,func=y(x),ics=ics)
Timed Out