Solving an ODE with power series

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
4 replies · 2K views
Kaguro
Messages
221
Reaction score
57
TL;DR
In power series method, after putting in the summations in the DE and simplifying, I found three powers of x.. how do I solve it?
I have an ODE:
(x-1)y'' + (3x-1)y' + y = 0
I need to find the solution about x=0. Since this is an ordinary point, I can use the regular power series solution.

Let y = ## \sum_{r=0}^\infty a_r x^r ##
after finding the derivatives and putting in the ODE, I have:
## \sum_{r=0}^\infty a_r (r)(r-1) x^{r-1} - \sum_{r=0}^\infty a_r (r)(r-1) x^{r-2} + 3 \sum_{r=0}^\infty a_r (r) x^{r} - \sum_{r=0}^\infty a_r (r) x^{r-1} + \sum_{r=0}^\infty a_r x^{r}=0 ##

Now I have three powers of x, so If I transform the index I'll still end up with a recurrence relation relating three coefficients.
I don't know how to proceed in that case.
Please help.
 
Last edited:
on Phys.org
I edited. Please help me now.
 
Kaguro said:
Summary:: In power series method, after putting in the summations in the DE and simplifying, I found three powers of x.. how do I solve it?

I have an ODE:
(x-1)y'' + (3x-1)y' + y = 0
I need to find the solution about x=0. Since this is an ordinary point, I can use the regular power series solution.

Let y = ## \sum_{r=0}^\infty a_r x^r ##
after finding the derivatives and putting in the ODE, I have:
## \sum_{r=0}^\infty a_r (r)(r-1) x^{r-1} - \sum_{r=0}^\infty a_r (r)(r-1) x^{r-2} + 3 \sum_{r=0}^\infty a_r (r) x^{r} - \sum_{r=0}^\infty a_r (r) x^{r-1} + \sum_{r=0}^\infty a_r x^{r}=0 ##

Now I have three powers of x, so If I transform the index I'll still end up with a recurrence relation relating three coefficients.
I don't know how to proceed in that case.
Please help.
Actually you have a many powers of x hidden in each sum. Also, though all your sums start at r= 0, in the first sum you have coefficients r and r- 1 so the first two terms are 0, It would be better to write it as [itex]\sum_{r= 2}^\infty a_r r(r-1)x^{r- 2}[/itex]. In order to get [itex]x^i[/itex], let i= r- 2 so that r= i+ 2 and the sum becomes [itex]\sum_{i= 0}^\infty a_{i+2}(i+2)(i+1)x^{i}[/itex]. Do the same with each of the other sums so that you have [itex]x^i[/itex] in each sum and can combine coefficients of "like powers".