Suppose $ M= \begin{pmatrix} 5 & -1 \\ 4 & 1 \end{pmatrix} $. Prove that $\forall n\in \mathbb N $ the following equation holds :
$M^n = 3^{n-1} \begin{pmatrix} 2n+3 & -n\\ 4n & 3- 2n \end{pmatrix}$
I've already proven this as follows:
$\underline{n=0:}$ is trivial just as ${n=1}$ which is given.
$\underline{I.H.:}$ (n=k) Suppose the above statement is true $\forall n \in \mathbb N. $
$\underline{n=k+1:}$
$\begin{align}M^{k+1}& =^{I.H.} 3^{k-1}\begin{pmatrix}2k+3 & -k\\ 4k&3-2k \end{pmatrix} \cdot 3 \begin{pmatrix}5 & -1 \\ 4 & 1 \end{pmatrix}\\ &= 3^{k-1} \begin{pmatrix} 6k+15 & -3k-3\\ 12k+12 & -6k+3 \end{pmatrix}\\ & = 3^k \begin{pmatrix} 2k+5 & -k-1\\ 4k+4 & -2k+1 \end{pmatrix}\\ & = 3^n \begin{pmatrix} 2n+3 & -n\\ 4n & -2n+3 \end{pmatrix} \end{align} $
My question now is how do I determine a matrix $P^2= M$?
What I've tried is the following:
$\begin{pmatrix} a_{11} & a_{12}\\ a_{21} & a_{22}\end{pmatrix} \cdot \begin{pmatrix} a_{11} & a_{12}\\ a_{21} & a_{22}\end{pmatrix} = \begin{pmatrix} 5 & -1\\ 4 & 1\end{pmatrix} $
Now I got stuck on this system of equations. I tried using other variables such as x, y, z and u to make it clearer for me but nevertheless I still didn't solve this problem. Would someone help me with this problem please? And maybe check my proof above?
Your proof is somewhat confused. First of all the induction hypothesis in not that the statement is true for all $n$, nothing good can come from such an assumption. Instead you assume that it's true for a specific $n$ and show that it's true for the next integer $n+1$.
Then the next question about finding $P$ such that $P^2=M$ the identity that you've shown is a clue here. Insert $n=1/2$ into the formula. Of course your proof has not shown it to work for non-integers, but let's give it a try:
$$\left(3^{1/2-1}\begin{pmatrix} 2 (1/2) + 3 & -(1/2) \\ 4(1/2) & 3 -2(1/2) \\ \end{pmatrix}\right)^2 \\= {1\over3}\begin{pmatrix} 4 & -1 \\ 2 & 2 \end{pmatrix}^2\\ = \begin{pmatrix} 5 & -1 \\ 4 & 1\end{pmatrix} = M$$
Well it worked out - and that's all you need for an answer (no reason to justify a "lucky" guess).