与えられた行列の等式を満たす正方行列 $A$ を求める問題です。等式は次の通りです。 $\begin{pmatrix} 4 & 5 \\ 3 & 4 \end{pmatrix} A \begin{pmatrix} 0 & 1 \\ 1 & -2 \end{pmatrix} = \begin{pmatrix} 2 & -4 \\ 1 & 0 \end{pmatrix}$

代数学線形代数行列逆行列行列の積
2025/7/17

1. 問題の内容

与えられた行列の等式を満たす正方行列 AA を求める問題です。等式は次の通りです。
(4534)A(0112)=(2410)\begin{pmatrix} 4 & 5 \\ 3 & 4 \end{pmatrix} A \begin{pmatrix} 0 & 1 \\ 1 & -2 \end{pmatrix} = \begin{pmatrix} 2 & -4 \\ 1 & 0 \end{pmatrix}

2. 解き方の手順

まず、与えられた等式を PAQ=BPAQ = B とおきます。ここで、
P=(4534)P = \begin{pmatrix} 4 & 5 \\ 3 & 4 \end{pmatrix}, A=AA = A, Q=(0112)Q = \begin{pmatrix} 0 & 1 \\ 1 & -2 \end{pmatrix}, B=(2410)B = \begin{pmatrix} 2 & -4 \\ 1 & 0 \end{pmatrix}
行列 PPQQ の逆行列をそれぞれ計算します。
PP の行列式は 4453=1615=14 \cdot 4 - 5 \cdot 3 = 16 - 15 = 1 なので、P1P^{-1} は存在し、
P1=(4534)P^{-1} = \begin{pmatrix} 4 & -5 \\ -3 & 4 \end{pmatrix}
QQ の行列式は 0(2)11=10 \cdot (-2) - 1 \cdot 1 = -1 なので、Q1Q^{-1} は存在し、
Q1=11(2110)=(2110)Q^{-1} = \frac{1}{-1} \begin{pmatrix} -2 & -1 \\ -1 & 0 \end{pmatrix} = \begin{pmatrix} 2 & 1 \\ 1 & 0 \end{pmatrix}
PAQ=BPAQ = B の両辺に左から P1P^{-1} を、右から Q1Q^{-1} をかけると、
P1(PAQ)Q1=P1BQ1P^{-1} (PAQ) Q^{-1} = P^{-1} B Q^{-1}
(P1P)A(QQ1)=P1BQ1(P^{-1}P) A (QQ^{-1}) = P^{-1} B Q^{-1}
IAI=P1BQ1IAI = P^{-1} B Q^{-1}
A=P1BQ1A = P^{-1} B Q^{-1}
したがって、求める行列 AA
A=(4534)(2410)(2110)A = \begin{pmatrix} 4 & -5 \\ -3 & 4 \end{pmatrix} \begin{pmatrix} 2 & -4 \\ 1 & 0 \end{pmatrix} \begin{pmatrix} 2 & 1 \\ 1 & 0 \end{pmatrix}
まず、(4534)(2410)\begin{pmatrix} 4 & -5 \\ -3 & 4 \end{pmatrix} \begin{pmatrix} 2 & -4 \\ 1 & 0 \end{pmatrix} を計算します。
(4534)(2410)=(42+(5)14(4)+(5)0(3)2+41(3)(4)+40)=(8516+06+412+0)=(316212)\begin{pmatrix} 4 & -5 \\ -3 & 4 \end{pmatrix} \begin{pmatrix} 2 & -4 \\ 1 & 0 \end{pmatrix} = \begin{pmatrix} 4\cdot2 + (-5)\cdot1 & 4\cdot(-4) + (-5)\cdot0 \\ (-3)\cdot2 + 4\cdot1 & (-3)\cdot(-4) + 4\cdot0 \end{pmatrix} = \begin{pmatrix} 8-5 & -16+0 \\ -6+4 & 12+0 \end{pmatrix} = \begin{pmatrix} 3 & -16 \\ -2 & 12 \end{pmatrix}
次に、(316212)(2110)\begin{pmatrix} 3 & -16 \\ -2 & 12 \end{pmatrix} \begin{pmatrix} 2 & 1 \\ 1 & 0 \end{pmatrix} を計算します。
(316212)(2110)=(32+(16)131+(16)0(2)2+121(2)1+120)=(6163+04+122+0)=(10382)\begin{pmatrix} 3 & -16 \\ -2 & 12 \end{pmatrix} \begin{pmatrix} 2 & 1 \\ 1 & 0 \end{pmatrix} = \begin{pmatrix} 3\cdot2 + (-16)\cdot1 & 3\cdot1 + (-16)\cdot0 \\ (-2)\cdot2 + 12\cdot1 & (-2)\cdot1 + 12\cdot0 \end{pmatrix} = \begin{pmatrix} 6-16 & 3+0 \\ -4+12 & -2+0 \end{pmatrix} = \begin{pmatrix} -10 & 3 \\ 8 & -2 \end{pmatrix}

3. 最終的な答え

A=(10382)A = \begin{pmatrix} -10 & 3 \\ 8 & -2 \end{pmatrix}