Internal
problem
ID
[1065]
Book
:
Differential
equations
and
linear
algebra,
4th
ed.,
Edwards
and
Penney
Section
:
Chapter
11
Power
series
methods.
Section
11.1
Introduction
and
Review
of
power
series.
Page
615
Problem
number
:
problem
26(a)
Date
solved
:
Tuesday, March 04, 2025 at 12:08:19 PM
CAS
classification
:
[_quadrature]
With initial conditions
ode:=diff(y(x),x) = 1+y(x)^2; ic:=y(0) = 0; dsolve([ode,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)