So recently I started looking into the relationship between differential equations and recurrence relations, and came across the following thread:
I couldn't comment, neither could I find @Giorgio Mossa's email, so I had to open a thread. I have a few questions regarding his solution, as follows:
- What is meant by $(a_n)_n$?
- How am I supposed to use the isomorphism backward?
- What does he mean by endowing the space of sequences with a product and derivation operator?
- Could someone give me the first few steps on how to use the given isomorphism to convert the given recurrence into a differential equation?
$(a_n)$ or $\{a_n\}$ or $(a_n)_n$ or $(a_n)_{n\in\Bbb N}$ denote a sequence with running index $n$, usually over the natural integers. How much detail is given often depends on how obvious the default is.
If the forward transformation is to construct a power series from a sequence, then the reverse transformation is to read off the coefficient sequence from a power series.
These operations are well-defined on the side of (converging) power series, thus one can explore their effect on the coefficient sequences directly $$ \sum\frac{a_k}{k!}\sum\frac{b_l}{l!}x^l=\sum_{k+l=n}\frac{x^n}{n!}\sum\binom{n}{k}a_kb_{n-k} $$ so the product formula in the cited article is missing the binomial factor.
You multiply with $\frac{x^n}{n!}$ and sum up, using $$ a(x)=\sum\frac{a_n x^n}{n!},~~~a'(x)=\sum\frac{a_n nx^{n-1}}{n!}=\sum\frac{a_{n+1} x^{n}}{n!},~~~a''(x)=\sum\frac{a_{n+2} x^{n}}{n!} $$ This gives directly $$ a''(x)-5a'(x)+6a(x)=\sum_{n=0}^\infty\frac{x^n}{n!}2^n(4n-2) \\=\sum_{n=1}^\infty\frac{4(2x)^n}{(n-1)!}-\sum_{n=0}^\infty\frac{2(2x)^n}{n!} =(8x-2)e^{2x} $$