Internal
problem
ID
[8897]
Book
:
An
introduction
to
Ordinary
Differential
Equations.
Earl
A.
Coddington.
Dover.
NY
1961
Section
:
Chapter
1.
Introduction–
Linear
equations
of
First
Order.
Page
45
Problem
number
:
14(b)
Date
solved
:
Tuesday, September 30, 2025 at 05:59:48 PM
CAS
classification
:
[_quadrature]
With initial conditions
ode:=diff(y(x),x) = 1+y(x)^2; ic:=[y(0) = 0]; dsolve([ode,op(ic)],y(x), singsol=all);
ode=D[y[x],x]==1+y[x]^2; ic={y[0]==0}; DSolve[{ode,ic},y[x],x,IncludeSingularSolutions->True]
{}
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-y(x)**2 + Derivative(y(x), x) - 1,0) ics = {y(0): 0} dsolve(ode,func=y(x),ics=ics)