Internal
problem
ID
[3341]
Book
:
Differential
Equations
by
Alfred
L.
Nelson,
Karl
W.
Folley,
Max
Coral.
3rd
ed.
DC
heath.
Boston.
1964
Section
:
Exercise
40,
page
186
Problem
number
:
7
Date
solved
:
Sunday, March 30, 2025 at 01:37:26 AM
CAS
classification
:
[[_Riccati, _special]]
Using series method with expansion around
With initial conditions
Order:=6; ode:=diff(y(x),x) = x^2+y(x)^2; ic:=y(2) = 0; dsolve([ode,ic],y(x),type='series',x=2);
ode=D[y[x],x]==x^2+y[x]^2; ic={y[2]==0}; AsymptoticDSolveValue[{ode,ic},y[x],{x,2,5}]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-x**2 - y(x)**2 + Derivative(y(x), x),0) ics = {y(2): 0} dsolve(ode,func=y(x),ics=ics,hint="1st_power_series",x0=2,n=6)