Internal
problem
ID
[8970]
Book
:
Own
collection
of
miscellaneous
problems
Section
:
section
5.0
Problem
number
:
9
Date
solved
:
Sunday, March 30, 2025 at 01:57:35 PM
CAS
classification
:
[_separable]
Solve
Using series expansion around
Let the solution be represented as Frobenius power series of the form
Then
Substituting the above back into the ode gives
Which simplifies to
The next step is to make all powers of
The indicial equation is obtained from
When
Since
Since the above is true for all
Solving for
Replacing
From the above we see that there is no recurrence relation since there is only one summation term. Therefore all
At
Order:=6; ode:=diff(y(x),x)*x+y(x) = 0; dsolve(ode,y(x),type='series',x=0);
Maple trace
Methods for first order ODEs: --- Trying classification methods --- trying a quadrature trying 1st order linear <- 1st order linear successful
Maple step by step
ode=x*D[y[x],x]+y[x]==0; ic={}; AsymptoticDSolveValue[{ode,ic},y[x],{x,0,5}]
from sympy import * x = symbols("x") y = Function("y") ode = Eq(x*Derivative(y(x), x) + y(x),0) ics = {} dsolve(ode,func=y(x),ics=ics,hint="1st_power_series",x0=0,n=6)
ValueError : ODE x*Derivative(y(x), x) + y(x) does not match hint 1st_power_series