行列 $A = \begin{pmatrix} 8 & -10 \\ 5 & -7 \end{pmatrix}$、 $P = \begin{pmatrix} 2 & 1 \\ 1 & 1 \end{pmatrix}$、 $B = P^{-1}AP$ が与えられたとき、以下の問題を解く。 (1) $B$ を求めよ。 (2) $B^n$ ($n$ は0以上の整数)を求めよ。 (3) $A^n$ ($n$ は0以上の整数)を求めよ。

代数学行列行列の対角化行列の累乗
2025/5/31

1. 問題の内容

行列 A=(81057)A = \begin{pmatrix} 8 & -10 \\ 5 & -7 \end{pmatrix}P=(2111)P = \begin{pmatrix} 2 & 1 \\ 1 & 1 \end{pmatrix}B=P1APB = P^{-1}AP が与えられたとき、以下の問題を解く。
(1) BB を求めよ。
(2) BnB^nnn は0以上の整数)を求めよ。
(3) AnA^nnn は0以上の整数)を求めよ。

2. 解き方の手順

(1) BB を求める。
まず、PP の逆行列 P1P^{-1} を求める。
P=(abcd)P = \begin{pmatrix} a & b \\ c & d \end{pmatrix} のとき、P1=1adbc(dbca)P^{-1} = \frac{1}{ad-bc}\begin{pmatrix} d & -b \\ -c & a \end{pmatrix} である。
P=(2111)P = \begin{pmatrix} 2 & 1 \\ 1 & 1 \end{pmatrix} より、adbc=2111=1ad-bc = 2*1 - 1*1 = 1 であるから、
P1=11(1112)=(1112)P^{-1} = \frac{1}{1}\begin{pmatrix} 1 & -1 \\ -1 & 2 \end{pmatrix} = \begin{pmatrix} 1 & -1 \\ -1 & 2 \end{pmatrix}
したがって、B=P1APB = P^{-1}AP を計算する。
AP=(81057)(2111)=(161081010757)=(6232)AP = \begin{pmatrix} 8 & -10 \\ 5 & -7 \end{pmatrix} \begin{pmatrix} 2 & 1 \\ 1 & 1 \end{pmatrix} = \begin{pmatrix} 16-10 & 8-10 \\ 10-7 & 5-7 \end{pmatrix} = \begin{pmatrix} 6 & -2 \\ 3 & -2 \end{pmatrix}
B=P1AP=(1112)(6232)=(632+26+624)=(3002)B = P^{-1}AP = \begin{pmatrix} 1 & -1 \\ -1 & 2 \end{pmatrix} \begin{pmatrix} 6 & -2 \\ 3 & -2 \end{pmatrix} = \begin{pmatrix} 6-3 & -2+2 \\ -6+6 & 2-4 \end{pmatrix} = \begin{pmatrix} 3 & 0 \\ 0 & -2 \end{pmatrix}
(2) BnB^n を求める。
B=(3002)B = \begin{pmatrix} 3 & 0 \\ 0 & -2 \end{pmatrix} は対角行列なので、Bn=(3n00(2)n)B^n = \begin{pmatrix} 3^n & 0 \\ 0 & (-2)^n \end{pmatrix}
(3) AnA^n を求める。
B=P1APB = P^{-1}AP より、A=PBP1A = PBP^{-1}
よって、An=(PBP1)n=(PBP1)(PBP1)...(PBP1)=PBnP1A^n = (PBP^{-1})^n = (PBP^{-1})(PBP^{-1})...(PBP^{-1}) = PB^nP^{-1}
したがって、An=PBnP1=(2111)(3n00(2)n)(1112)=(23n(2)n3n(2)n)(1112)A^n = PB^nP^{-1} = \begin{pmatrix} 2 & 1 \\ 1 & 1 \end{pmatrix} \begin{pmatrix} 3^n & 0 \\ 0 & (-2)^n \end{pmatrix} \begin{pmatrix} 1 & -1 \\ -1 & 2 \end{pmatrix} = \begin{pmatrix} 2*3^n & (-2)^n \\ 3^n & (-2)^n \end{pmatrix} \begin{pmatrix} 1 & -1 \\ -1 & 2 \end{pmatrix}
=(23n(2)n23n+2(2)n3n(2)n3n+2(2)n)= \begin{pmatrix} 2*3^n - (-2)^n & -2*3^n + 2*(-2)^n \\ 3^n - (-2)^n & -3^n + 2*(-2)^n \end{pmatrix}

3. 最終的な答え

(1) B=(3002)B = \begin{pmatrix} 3 & 0 \\ 0 & -2 \end{pmatrix}
(2) Bn=(3n00(2)n)B^n = \begin{pmatrix} 3^n & 0 \\ 0 & (-2)^n \end{pmatrix}
(3) An=(23n(2)n23n+2(2)n3n(2)n3n+2(2)n)A^n = \begin{pmatrix} 2*3^n - (-2)^n & -2*3^n + 2*(-2)^n \\ 3^n - (-2)^n & -3^n + 2*(-2)^n \end{pmatrix}