Internal
problem
ID
[3342]
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
:
8
Date
solved
:
Tuesday, March 04, 2025 at 04:36:27 PM
CAS
classification
:
[`y=_G(x,y')`]
Using series method with expansion around
With initial conditions
Order:=4; ode:=diff(y(x),x) = (1+x*y(x))^(1/2); ic:=y(0) = 1; dsolve([ode,ic],y(x),type='series',x=0);
ode=D[y[x],x]==Sqrt[1+x*y[x]]; ic={y[0]==1}; AsymptoticDSolveValue[{ode,ic},y[x],{x,0,3}]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(-sqrt(x*y(x) + 1) + Derivative(y(x), x),0) ics = {y(0): 1} dsolve(ode,func=y(x),ics=ics,hint="1st_power_series",x0=0,n=4)