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]
With initial conditions
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);
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
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))