Evaluate coefficients of complex power series

complex-analysispower series

Evaluate the coefficients of this power series $$\frac{e^{tz}}{1-z}= \sum_{n=0}^{\infty} c_n (t) z^n$$

I rewrote it as $e^{tz} = (1-z) \sum_{n=0}^{\infty} c_n z^n = \sum_{n=0}^{\infty} (c_n – c_{n-1}) z^n$, with some manipulation of the index of summation.

By comparison to the power series of exponential I find the recursion $$c_n – c_{n-1} = \frac{t^n}{n!}$$

How to find now the value of $c_1$ and $c_0$ (or $c_0$ and $c_{-1}$)?

Best Answer

By plugging $z=0$ into $f(z)$ we can find $c_0$ and so $$c_0=\frac{e^{t\cdot0}}{1-0}=1$$ $$c_n=c_{n-1}+\frac{t^n}{n!}$$ $$\therefore c_n=\sum_{k=0}^n \frac{t^k}{k!}$$