I've been trying to solve the following system of linear differential equations
$$\begin{aligned} \dot x_1(t) &= 10 x_1(t) + 5 x_2(t) − 5 x_3(t)\\ \dot x_2(t) &= −5 x_1(t) − x_2(t) + 6 x_3(t)\\ \dot x_3(t) &= −5 x_1(t) − 6 x_2(t) + 11 x_3(t)\\ \end{aligned}$$
with initial state $x (0) = (1,0,1)$, and I found out that the solution should be $x(t) = e^{tA}x_0$, where
$$A = \begin{pmatrix} 10 & 5 & -5 \\\ -5 & -1 & 6 \\\ -5 & -6 & 11 \end{pmatrix}$$
How do I calculate the matrix exponential $e^{tA}$?
I found that $f(A) = C f(J) C^{-1}$ but that still leaves me with the question of how to calculate $f(J)$?