Internal
problem
ID
[21106]
Book
:
Ordinary
Differential
Equations.
By
Wolfgang
Walter.
Graduate
texts
in
Mathematics.
Springer.
NY.
QA372.W224
1998
Section
:
Chapter
2.
Theory
of
First
order
differential
equations.
Excercises
XII
at
page
98
Problem
number
:
(b)
Date
solved
:
Thursday, October 02, 2025 at 07:08:24 PM
CAS
classification
:
[`y=_G(x,y')`]
With initial conditions
ode:=diff(y(x),x) = x+(1+y(x)^2)^(1/2); ic:=[y(0) = 1]; dsolve([ode,op(ic)],y(x), singsol=all);
ode=D[y[x],x]==x+Sqrt[1+y[x]]; ic={y[0]==1}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-x - sqrt(y(x) + 1) + Derivative(y(x), x),0) ics = {y(0): 1} dsolve(ode,func=y(x),ics=ics)
NotImplementedError : The given ODE -x - sqrt(y(x) + 1) + Derivative(y(x), x) cannot be solved by the lie group method