Given square matrices $A$ and $B$ such that $AB = BA$, and the exponential of a matrix $M$ defined as
$$e^M := \sum_{k=0}^{\infty}\frac{M^k}{k!}$$
prove that $e^{A + B} = e^A e^B$.
I am lost as to how to proceed. I've never seen anything about matrix exponentials before.
$AB=BA$ so we may use the binomial theorem. Then, $e^{A+B} = \lim_{n\to \infty}\sum_{k=0}^n \frac{(A+B)^k}{k!}$. But: $$ \sum_{k=0}^n \frac{(A+B)^k}{k!}=\sum_{k=0}^n\frac{1}{k!}\sum_{i=0}^k \binom{k}{i} A^iB^{k-i}=\sum_{0\leq i\leq k \leq n}\frac{A^i}{i!}\frac{B^{k-i}}{(k-i)!} $$ Now notice how $k-i$ spans all of $\{0,\dots,n\}$. Try and finish the proof.