Let $$A =\begin{pmatrix}1&0\\1&1\end{pmatrix}$$
Using what you know about elementary matrices, determine $A^n$ for any natural number $n$.
I am trying to solve the above question but do not understand what it's asking for. What does $A^n$ mean in terms of matrices?
$A^n$ means multiplying $ A$ $n$ times by itself, just as normal power with natural numbers. The matrix you have there is the elementary operation of adding the first row to second one. So:
$$\begin{bmatrix} 1 & 0 \\ 1 & 1 \end{bmatrix}.\begin{bmatrix} a & b \\ c & d \end{bmatrix}=\begin{bmatrix} a & b \\ {c+a} & {d+b} \end{bmatrix}$$
This means:
$$\begin{bmatrix} 1 & 0 \\ 1 & 1 \end{bmatrix}.\begin{bmatrix} 1 & 0 \\ n & 1 \end{bmatrix}=\begin{bmatrix} 1 & 0 \\ n+1 & 1 \end{bmatrix}$$
Then: $$A^n=\begin{bmatrix} 1 & 0 \\ n & 1 \end{bmatrix}$$