I know how determine whether or not a matrix is diagonalizable, but after that the question will usually ask me to find an invertible matrix P and a diagonal matrix D such that $$ D= P^{-1} AP$$.
I was hoping someone would be able to explain what this means, why it's important, and maybe a very simple example.
A linear transformation is diagonal if there is some basis where the matrix representation of that transformation is a diagonal matrix. A matrix is diagonalizable if it represents a diagonal linear transformation.
So $P$ is a change-of-basis matrix that takes us from the basis that $A$ is described in (say the standard basis) to whatever basis makes the linear transformation instead represented by the diagonal matrix $D$. The columns of $P$ will be eigenvectors of $A$ (described in the standard basis), and the entries of $D$ will be the corresponding eigenvalues in the same order.
Really, I'm more used to seeing $$A=PDP^{-1}$$ than the other way around. The most immediate use of this is how much easier it is to calculate high powers of the right-hand side than of the left-hand side: you just calculate the corresponding powers of the diagonal elements.
As an example, consider $$A=\begin{bmatrix}2&1\\1&2\end{bmatrix}$$(Symmetric matrices are always nice and diagonalizable, so it's a good place to look for examples.) Doing the rote calculations, we get $$ \begin{bmatrix}2&1\\1&2\end{bmatrix}=\begin{bmatrix}1&1\\1&-1\end{bmatrix}\begin{bmatrix}3&0\\0&1\end{bmatrix}\begin{bmatrix}\frac12&\frac12\\\frac12&-\frac12\end{bmatrix} $$ as, for instance, $\left[\begin{smallmatrix}1\\1\end{smallmatrix}\right]$ is an eigenvector of $A$ with eigenvalue $3$, so it's the first column of $P$ and the first entry of $D$.
Now consider trying to calculate $A^{500}$. Not a task I would at all enjoy doing by hand. But using the powers of diagonalization, we get $$ A^{500}=\left(PDP^{-1}\right)^{500}\\ =PD^{500}P^{-1} $$ And calculating $D^{500}$ is comparatively easy, assuming you know your powers of $3$.