Pointers and help - solving an equation
I want to solve a differential equation, the exercise being, find two different independent solutions. (I don't know the proper English terms for this.)
w' + (z+1)w = 0)
I start out with
. Differentiate to match each term in the equation and shove it in.
(n+m-1)a_n z^{n+m} - \sum_0^\infty (n+m)a_n z^{n+m+1}-\sum_0^\infty (n+m)a_n z^{n+m} + \sum_0^\infty a_n z^{n+m+1} + \sum_0^\infty a_n z^{n+m} = 0)
![\displaystyle \sum_0^\infty [(n+m)(n+m-1) -(n+m) - 1]a_n z^{n+m} = \sum_0^\infty [(n+m) -1]a_n z^{n+m+1}](http://latex.codecogs.com/png.latex?\displaystyle \sum_0^\infty [(n+m)(n+m-1) -(n+m) - 1]a_n z^{n+m} = \sum_0^\infty [(n+m) -1]a_n z^{n+m+1})
Recursive series.
^2 a_n = (n+m -2)a_{n-1} )
Now I'm starting to get wobbly legs. I set
to see if I can pinpoint
. ^2 = 0 \implies m = \pm 1 )
results in a series
. Can I render a solution from that even if it diverges?
results in a series
that would imply that one solution is w = z. Or..?
Now I've sort of played all my cards here. What if I state a solution w = zu and solve the equation..? Or is there a simpler way to render an other solution here?