Internal
problem
ID
[5747]
Book
:
Differential
Equations,
By
George
Boole
F.R.S.
1865
Section
:
Chapter
6
Problem
number
:
4
Date
solved
:
Sunday, March 30, 2025 at 10:07:26 AM
CAS
classification
:
[_rational, [_Riccati, _special]]
ode:=diff(u(x),x)+b*u(x)^2 = c/x^4; dsolve(ode,u(x), singsol=all);
ode=D[u[x],x]+b*u[x]^2==x^(-4); ic={}; DSolve[{ode,ic},u[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") b = symbols("b") c = symbols("c") u = Function("u") ode = Eq(b*u(x)**2 - c/x**4 + Derivative(u(x), x),0) ics = {} dsolve(ode,func=u(x),ics=ics)