DevoBoy
- 8
- 0
I'm trying to solve the differential equation:
x^2y''+2xy'+(x^2-2)y=0
using the Fröbenius method.
So I want a solution on the form
y=\sum_{n=0}^\infty a_{n}x^{n+s}
After finding derivatives of y, inserting into my ODE, and after some rearranging:
\sum_{n=0}^\infty ((n+s)(n+s-1)+2(n+s)-2)a_{n}x^{n+s} + \sum_{n=2}^\infty a_{n-2}x^{n+s}
Looking at n=0, assuming a_{0} different from zero, I get two possible values for s:
s_{1}=1
s_{2}=-2
Both giving a_{1}=0
Choosing s=1, I get
a_{n}=\frac{-a_{n-2}}{(n+s)(n+s-1)+2(n+s)-2}=\frac{-a_{n-2}}{n(n+3)}
I know a_{n}=0 for odd n, so I'm interrested in finding a_{n} for even n, expressed by a_{0}. Best thing I can come up with is
a_{n}=\sum_{n=2,4,6,..}^\infty \frac{3(-1)^{n/2}a_{0}}{(n+1)!(n+3)}
which seems overly complicated given the simple recursive formula. Any ideas?
Second problem; I want to find another linear independent solution, but not quite sure where to start given my ugly expression for a_{n}.
x^2y''+2xy'+(x^2-2)y=0
using the Fröbenius method.
So I want a solution on the form
y=\sum_{n=0}^\infty a_{n}x^{n+s}
After finding derivatives of y, inserting into my ODE, and after some rearranging:
\sum_{n=0}^\infty ((n+s)(n+s-1)+2(n+s)-2)a_{n}x^{n+s} + \sum_{n=2}^\infty a_{n-2}x^{n+s}
Looking at n=0, assuming a_{0} different from zero, I get two possible values for s:
s_{1}=1
s_{2}=-2
Both giving a_{1}=0
Choosing s=1, I get
a_{n}=\frac{-a_{n-2}}{(n+s)(n+s-1)+2(n+s)-2}=\frac{-a_{n-2}}{n(n+3)}
I know a_{n}=0 for odd n, so I'm interrested in finding a_{n} for even n, expressed by a_{0}. Best thing I can come up with is
a_{n}=\sum_{n=2,4,6,..}^\infty \frac{3(-1)^{n/2}a_{0}}{(n+1)!(n+3)}
which seems overly complicated given the simple recursive formula. Any ideas?
Second problem; I want to find another linear independent solution, but not quite sure where to start given my ugly expression for a_{n}.
Last edited: