Find a formula for $\left(\begin{smallmatrix} -4 & -15 \\ 2 & 7 \end{smallmatrix}\right)^n$

493 Views Asked by At

We're going to consider the matrix $\begin{pmatrix} -4 & -15 \\ 2 & 7 \end{pmatrix}.$

(a) Let $\mathbf{P} = \begin{pmatrix} 2 & 5 \\ 1 & 3 \end{pmatrix}$. Find the $2 \times 2$ matrix $\mathbf{D}$ such that $\mathbf{P}^{-1} \mathbf{D} \mathbf{P} = \begin{pmatrix} -4 & -15 \\ 2 & 7 \end{pmatrix}.$

(b) Find a formula for $\mathbf{D}^n,$ where $\mathbf{D}$ is the matrix you found in part (a). (You don't need to prove your answer, but explain how you found it.)

(c) Using parts (a) and (b), find a formula for $\begin{pmatrix} -4 & -15 \\ 2 & 7 \end{pmatrix}^n.$

I have completed part a (thanks for the helpful hints), but I am confused on part b. I solved for a few powers of $\mathbf{D}$ to find a pattern. So far I have if $\mathbf{D} = \begin{pmatrix} a & b \\ c & d \end{pmatrix}$ then $\mathbf{D}^{n} = \begin{pmatrix} -4^n & ? \\ 0 & -19^n \end{pmatrix}.$ I don't know if I'm solving for this correctly and as you can see, I'm not sure how to find the $b$ part of $\mathbf{D}^{n}.$ Thanks again!

3

There are 3 best solutions below

0
On

Let consider

$$\begin{pmatrix} 3 & -5 \\ -1 & 2 \end{pmatrix}\begin{pmatrix} x & y \\ z & w \end{pmatrix}\begin{pmatrix} 2 & 5 \\ 1 & 3 \end{pmatrix}=\begin{pmatrix} -4 & -15 \\ 2 & 7 \end{pmatrix}\\$$ $$\iff D=\begin{pmatrix} x & y \\ z & w \end{pmatrix}=\begin{pmatrix} 2 & 5 \\ 1 & 3 \end{pmatrix}\begin{pmatrix} -4 & -15 \\ 2 & 7 \end{pmatrix}\begin{pmatrix} 3 & -5 \\ -1 & 2 \end{pmatrix}=$$

$$=\begin{pmatrix} 2 & 5 \\ 1 & 3 \end{pmatrix}\begin{pmatrix} 3 & -10 \\-1 & -3 \end{pmatrix}=\begin{pmatrix} -4 & -5 \\ 0 & -19 \end{pmatrix}$$

0
On

$$A^5 = PDP^{-1}PDP^{-1}PDP^{-1}PDP^{-1}PDP^{-1}$$

Can you simplify this expression?

0
On

This is a computer aided proof, sage:

It is good to know that sage provides directly the answer symbolically.

sage: A = matrix(QQ, 2, [-4, -15, 2, 7])
sage: A
[ -4 -15]
[  2   7]
sage: var("n");
sage: A^n
[  -5*2^n + 6 -15*2^n + 15]
[   2*2^n - 2    6*2^n - 5]

To get this answer, the best way to proceed is to diagonalize the matrix. (We can also triangularize, but let us compare the shape from the $D$ in the OP, some $T$ instead would have been a better notation, and the truly diagonal form below...) Sage diagonalizes for us.

sage: A.jordan_form(transformation=True)
(
[2|0]             
[-+-]  [   1    1]
[0|1], [-2/5 -1/3]
)
sage: Lam, T = A.jordan_form(transformation=True)
sage: T * Lam * T.inverse()
[ -4 -15]
[  2   7]

The diagonal matrix $\Lambda=\begin{bmatrix}2 &\\& 1\end{bmatrix}$, Lam above, has an obvious power, which has to be conjugated with the $T$ above to get the answer...