77.1.153 problem 180 (page 297)

Internal problem ID [17972]
Book : V.V. Stepanov, A course of differential equations (in Russian), GIFML. Moscow (1958)
Section : All content
Problem number : 180 (page 297)
Date solved : Monday, March 31, 2025 at 04:52:52 PM
CAS classification : [NONE]

\begin{align*} y^{\prime \prime }&=y^{2}+x \end{align*}

With initial conditions

\begin{align*} y \left (0\right )&=0\\ y^{\prime }\left (0\right )&=1 \end{align*}

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

Not solved

Sympy
from sympy import * 
x = symbols("x") 
y = Function("y") 
ode = Eq(-x - y(x)**2 + Derivative(y(x), (x, 2)),0) 
ics = {y(0): 0, Subs(Derivative(y(x), x), x, 0): 1} 
dsolve(ode,func=y(x),ics=ics)
 
NotImplementedError : solve: Cannot solve -x - y(x)**2 + Derivative(y(x), (x, 2))