Internal
problem
ID
[6883]
Book
:
Differential
Equations,
By
George
Boole
F.R.S.
1865
Section
:
Chapter
6
Problem
number
:
5
Date
solved
:
Tuesday, September 30, 2025 at 03:59:56 PM
CAS
classification
:
[_rational, [_Riccati, _special]]
ode:=diff(u(x),x)-u(x)^2 = 2/x^(8/3); dsolve(ode,u(x), singsol=all);
ode=D[u[x],x]-u[x]^2==x^(-8/3); ic={}; DSolve[{ode,ic},u[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") u = Function("u") ode = Eq(-u(x)**2 + Derivative(u(x), x) - 2/x**(8/3),0) ics = {} dsolve(ode,func=u(x),ics=ics)
NotImplementedError : The given ODE -u(x)**2 + Derivative(u(x), x) - 2/x**(8/3) cannot be solved by the lie group method