84.18.7 problem 10.15

Internal problem ID [22204]
Book : Schaums outline series. Differential Equations By Richard Bronson. 1973. McGraw-Hill Inc. ISBN 0-07-008009-7
Section : Chapter 10. Linear differential equations. General remarks. Supplementary problems
Problem number : 10.15
Date solved : Thursday, October 02, 2025 at 08:34:05 PM
CAS classification : [[_2nd_order, _exact, _nonlinear], [_2nd_order, _reducible, _mu_x_y1], [_2nd_order, _reducible, _mu_y_y1], [_2nd_order, _reducible, _mu_xy]]

\begin{align*} y^{\prime \prime }+y y^{\prime }&=x^{2} \end{align*}
Maple
ode:=diff(diff(y(x),x),x)+y(x)*diff(y(x),x) = x^2; 
dsolve(ode,y(x), singsol=all);
 
\[ \text {No solution found} \]
Mathematica
ode=D[y[x],{x,2}]+y[x]*D[y[x],{x,1}]==x^2; 
ic={}; 
DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
 

Not solved

Sympy
from sympy import * 
x = symbols("x") 
y = Function("y") 
ode = Eq(-x**2 + y(x)*Derivative(y(x), x) + Derivative(y(x), (x, 2)),0) 
ics = {} 
dsolve(ode,func=y(x),ics=ics)
 
NotImplementedError : The given ODE -(x**2 - Derivative(y(x), (x, 2)))/y(x) + Derivative(y(x), x) cannot be solved by the factorable group method