Internal
problem
ID
[6361]
Book
:
Ordinary
differential
equations
and
their
solutions.
By
George
Moseley
Murphy.
1960
Section
:
Part
II.
Chapter
4.
THE
NONLINEAR
EQUATION
OF
SECOND
ORDER,
page
380
Problem
number
:
59
Date
solved
:
Friday, October 03, 2025 at 02:05:23 AM
CAS
classification
:
[[_2nd_order, _missing_y]]
ode:=g(x)*diff(y(x),x)+f(x)*diff(y(x),x)^k+diff(diff(y(x),x),x) = 0; dsolve(ode,y(x), singsol=all);
ode=g[x]*D[y[x],x] + f[x]*D[y[x],x]^k + D[y[x],{x,2}] == 0; ic={}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") k = symbols("k") y = Function("y") ode = Eq(f(x)*Derivative(y(x), x)**k + g(x)*Derivative(y(x), x) + Derivative(y(x), (x, 2)),0) ics = {} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : multiple generators [_X0, _X0**k] No algorithms are implemented to solve equat