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