Internal
problem
ID
[13527]
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.8-2.
Equations
containing
arbitrary
functions
and
their
derivatives.
Problem
number
:
42
Date
solved
:
Wednesday, October 01, 2025 at 03:59:20 PM
CAS
classification
:
[_Riccati]
ode:=diff(y(x),x) = y(x)^2-diff(diff(f(x),x),x)/f(x); dsolve(ode,y(x), singsol=all);
ode=D[y[x],x]==y[x]^2-D[ f[x],{x,2}]/f[x]; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") f = Function("f") ode = Eq(-y(x)**2 + Derivative(y(x), x) + Derivative(f(x), (x, 2))/f(x),0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : The given ODE -y(x)**2 + Derivative(y(x), x) + Derivative(f(x), (x, 2))/f(x) cannot be solved by the lie group method