Internal
problem
ID
[12081]
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
:
9
Date
solved
:
Sunday, March 30, 2025 at 10:39:17 PM
CAS
classification
:
[_Riccati]
ode:=x^2*ln(a*x)*(diff(y(x),x)-y(x)^2) = 1; dsolve(ode,y(x), singsol=all);
ode=x^2*Log[a*x]*(D[y[x],x]-y[x]^2)==1; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") a = symbols("a") y = Function("y") ode = Eq(x**2*(-y(x)**2 + Derivative(y(x), x))*log(a*x) - 1,0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : The given ODE -y(x)**2 + Derivative(y(x), x) - 1/(x**2*log(a*x)) cannot be solved by the factorable group method