Internal
problem
ID
[13373]
Book
:
Handbook
of
exact
solutions
for
ordinary
differential
equations.
By
Polyanin
and
Zaitsev.
Second
edition
Section
:
Chapter
1,
section
1.2.
Riccati
Equation.
subsection
1.2.5-1.
Equations
Containing
Logarithmic
Functions
Problem
number
:
2
Date
solved
:
Wednesday, October 01, 2025 at 08:58:30 AM
CAS
classification
:
[_Riccati]
ode:=x*diff(y(x),x) = a*y(x)^2+b*ln(x)+c; dsolve(ode,y(x), singsol=all);
ode=x*D[y[x],x]==a*y[x]^2+b*Log[x]+c; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a = symbols("a") b = symbols("b") c = symbols("c") y = Function("y") ode = Eq(-a*y(x)**2 - b*log(x) - c + x*Derivative(y(x), x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : The given ODE Derivative(y(x), x) - (a*y(x)**2 + b*log(x) + c)/x cannot be solved by the factorable group method