逆矩阵问题及其解决方案 (Inverse Matrix Problems and Solutions)

教程包括示例和问题,以及有关如何求平方的倒数的详细解决方案 矩阵 采用行梯形法和辅因子法。 讨论了逆矩阵的性质,并包含与逆矩阵相关的各种问题,包括一些具有挑战性的问题及其详细解决方案。

页面内容


定义 单位矩阵 (Identity Matrix)

单位矩阵 I n 是阶数为 n x n 的方阵,主对角线中的元素由 1 组成,所有其他元素都等于 0 。
单位矩阵的示例
identity matrices


矩阵的逆矩阵的定义 (Definition of The Inverse of a Matrix)

A 为阶 n x n 的方阵。 如果存在同阶矩阵 B 使得
A B = I n = B A
其中 I n 是阶 n x n 的单位矩阵,则 B 称为 A 的逆矩阵,矩阵 A 是 B 的逆矩阵。
示例1
验证下面给出的矩阵 A 和 B 互为逆矩阵。
2 by 2 Matrix for Example 1

解决办法
让我们找到产品AB和BA
Product of 2 by 2 Matrice for Example 1

AB = BA = I 2 因此 A 和 B 互为逆。
方阵 A 的逆矩阵表示为 A -1 并且是唯一的。


使用行缩减方法求方阵的逆 (Find the Inverse of a Square Matrix Using the Row Reduction Method)

这种方法也称为高斯-乔丹消去法。
我们首先写出增广矩阵 \( \) \( \) \( \) \( \) \[ [ A | I ] \] 其中 I 是与矩阵A同阶的单位矩阵,然后使用行初等运算将其重写为 \[ [ I | A^{-1} ] \] 其中 \( A^{-1} \) 是矩阵 A 的逆矩阵。
一个在线计算器 包括使用行缩减找到矩阵的逆

示例2
求矩阵 A 的逆矩阵: \[ A = \begin{bmatrix} 1&1 \\ 2&4 \end{bmatrix} \] 如果它存在。
解决办法
写出增广矩阵 \( [ A | I )\) \[ \begin{bmatrix} 1&1&|&1&0\\2&4&|&0&1 \end{bmatrix} \] 步骤1 \[ \color{red}{\begin{matrix} \\ R_2 - 2 \times R_1 \end{matrix} } \begin{bmatrix} 1&1&|&1&0\\0&2&|&-2&1 \end{bmatrix} \] 步骤 2 \[ \color{red}{\begin{matrix} \\ (1/2)R_2 \end{matrix} } \begin{bmatrix} 1&1&|&1&0\\0&1&|&-1&1/2 \end{bmatrix} \] 步骤 3 \[ \color{red}{\begin{matrix} R_1 - R_2 \\ \\ \end{matrix} } \begin{bmatrix} 1&0&|&2&-1/2\\0&1&|&-1&1/2 \end{bmatrix} \] A 的倒数是 2×2 右边的矩阵由下式给出 \[ A^{-1} = \begin{bmatrix} 2&-1/2\\-1&1/2 \end{bmatrix} \]

示例3
求矩阵 A 的逆矩阵,由下式给出
\[ A = \begin{bmatrix}-2&2&0 \\ 2&1&3\\ -2&4&-2\end{bmatrix} \] 如果它存在。
解决办法
写出增广矩阵 \( [ A | I )\) \[ \begin{bmatrix} -2&2&0&|&1&0&0\\ 2&1&3&|&0&1&0 \\ -2 & 4 & -2 &|& 0 & 0 & 1 \end{bmatrix} \] 步骤 1 \[ \color{red}{ \begin{matrix} \\ R_2 + R_1 \\ R_3 - R_1 \end{matrix} } \begin{bmatrix} -2&2&0&|&1&0&0\\ 0&3&3&|&1&1&0 \\ 0 & 2 & -2 &|& -1 & 0 & 1 \end{bmatrix} \] 步骤 2 \[ \color{red}{ \begin{matrix} \\ \\ R_3 - (2/3) R_2 \\ \end{matrix} } \begin{bmatrix} -2&2&0&|&1&0&0\\ 0&3&3&|&1&1&0 \\ 0 & 0 & - 4&|& -5/3 & -2/3 & 1 \end{bmatrix} \] 步骤 3 \[ \color{red}{ \begin{matrix} \\ \\ (-1/4)R_3 \\ \end{matrix}} \begin{bmatrix} -2&2&0&|&1&0&0\\ 0&3&3&|&1&1&0 \\ 0 & 0 & 1&|& 5/12 & 1/6 & -1/4 \end{bmatrix} \] 步骤 4 \[ \color{red}{ \begin{matrix} \\ R_2 - 3\times R_3 \\ \\ \end{matrix} } \begin{bmatrix} -2&2&0&|&1&0&0\\ 0&3&0&|&-1/4&1/2&3/4 \\ 0 & 0 & 1&|& 5/12 & 1/6 & -1/4 \end{bmatrix} \] 步骤 5 \[ \color{red}{ \begin{matrix} \\ (1/3) R_2 \\ \\ \end{matrix}} \begin{bmatrix} -2&2&0&|&1&0&0\\ 0&1&0&|&-1/12&1/6&1/4 \\ 0 & 0 & 1&|& 5/12 & 1/6 & -1/4 \end{bmatrix} \] 步骤 6 \[ \color{red}{ \begin{matrix} R_1- 2\times R_2 \\ \\ \\ \end{matrix} } \begin{bmatrix} -2&0&0&|&7/6&-1/3&-1/2\\ 0&1&0&|&-1/12&1/6&1/4 \\ 0 & 0 & 1&|& 5/12 & 1/6 & -1/4 \end{bmatrix} \] 步骤 7 \[ \color{red}{ \begin{matrix} (-1/2) R_1 \\ \\ \\ \end{matrix} } \begin{bmatrix} 1&0&0&|&-7/12&1/6&1/4\\ 0&1&0&|&-1/12&1/6&1/4 \\ 0 & 0 & 1&|& 5/12 & 1/6 & -1/4 \end{bmatrix} \] Hence \[ A^{-1} = \begin{bmatrix} -7/12&1/6&1/4\\ -1/12&1/6&1/4 \\ 5/12 & 1/6 & -1/4 \end{bmatrix} \]
有关如何使用行运算查找矩阵逆的更多示例 包括在内。


使用辅因子和佐数求方阵的逆

使用数值示例来解释该方法。 矩阵A如下所示。
\[ A = \begin{bmatrix} -1&0&1\\ 2&-1&2 \\ -1 & 2 & 1 \end{bmatrix} \] a) 求 A 的次要矩阵、辅因子矩阵、佐词矩阵和逆矩阵。
未成年人矩阵 (Matrix of Minors)
矩阵 A 的次数矩阵的条目 \( M_{i,j} \) 由删除 \( i^{th}\) 行和 \( j^{th}\) 所获得的行列式给出 柱子。

要找到 \( M_{1,1} \),请从矩阵 A 中删除第 1 行和第 1 列,然后找到剩余 2 x 2 矩阵的行列式,如下所示: \( M_{1,1} = Det \begin{bmatrix} .&.&.\\ .&-1&2 \\ .& 2 & 1 \end{bmatrix} = -1 - 4 = -5\)

要找到 \( M_{1,2} \),请从矩阵 A 中删除第 1 行和第 2 列,然后找到剩余 2 x 2 矩阵的行列式,如下所示: \( M_{1,2} = Det \begin{bmatrix} .&.&.\\ 2&.&2 \\ -1 & . & 1 \end{bmatrix} = 2 -(-2) = 4 \)

要找到 \( M_{1,3} \),请从矩阵 A 中删除第 1 行和第 3 列,然后找到剩余 2 x 2 矩阵的行列式,如下所示: \( M_{1,3} = Det \begin{bmatrix} .&.&.\\ 2&-1&. \\ -1 & 2 & . \end{bmatrix} = 4 - 1 = 3 \)

要找到 \( M_{2,1} \),请从矩阵 A 中删除第 2 行和第 1 列,然后找到剩余 2 x 2 矩阵的行列式,如下所示: \( M_{2,1} = Det \begin{bmatrix} .&0&1\\ .&.&. \\ . & 2 & 1 \end{bmatrix} = 0 - 2 = - 2 \)
...
...
其余条目由下式给出: \( M_{2,2} = 0 \) , \( M_{2,3} = -2 \) , \( M_{3,1} = 1\) , \( M_{3,2} = -4\) , \( M_{3,3} = 1\).
未成年人 M 的矩阵由下式给出
\( M = \begin{bmatrix} -5&4&3\\ -2&0&-2\\ 1&-4&1 \end{bmatrix} \)
辅因子矩阵 (Matrix of Cofactors)
矩阵 A 的辅因子 C 矩阵的项 \( C_{i,j} \) 由下式给出 \( C_{i,j} = (-1)^{i+j}M{i,j} \)

对条目 \( C_{i,j} \) 的评估给出:
\( C_{1,1} = (-1)^{1+1} M_{1,1} = -5 \)
\( C_{1,2} = (-1)^{1+2} M_{1,2} = - 4 \)
\( C_{1,3} = (-1)^{1+3} M_{1,3} = 3 \)
\( C_{2,1} = (-1)^{2+1} M_{2,1} = 2 \)
\( C_{2,2} = (-1)^{2+2} M_{2,2} = 0 \)
\( C_{3,1} = (-1)^{3+1} M_{3,1} = 1 \)
\( C_{3,2} = (-1)^{3+2} M_{3,2} = 4 \)
\( C_{3,3} = (-1)^{3+3} M_{3,1} = 1 \)
因此,辅因子矩阵 C 由下式给出 \( C = \begin{bmatrix} -5&-4&3\\ 2&0&2\\ 1&4&1 \end{bmatrix} \)
矩阵的伴随(和伴随) (Adjugate (or adjunct) of a Matrix)
矩阵 A 的辅助(或辅助)是其辅因子 C 矩阵的转置
\( Adjugate(A) = C^T = \begin{bmatrix} -5&2&1\\ -4&0&4\\ 3&2&1 \end{bmatrix} \)
逆矩阵
我们现在需要找到矩阵 A 的行列式 D。
使用矩阵 A 的第一行和已找到的相应次要数,D 由下式给出:
\( D = det\begin{bmatrix} -1&0&1\\ 2&-1&2 \\ -1 & 2 & 1 \end{bmatrix} = A_{11}M_{1,1} - A_{1,2}M_{1,2} + A_{1,3}M_{1,3} = 8\)
矩阵 \( A \) 的逆矩阵由下式给出 \( A^{-1} = \dfrac{1}{D} C^T = \dfrac{1}{8} \begin{bmatrix} -5&2&1\\ -4&0&4\\ 3&2&1 \end{bmatrix} = \begin{bmatrix} -\dfrac{5}{8}&\dfrac{1}{4}&\dfrac{1}{8}\\ -\dfrac{1}{2}&0&\dfrac{1}{2}\\ \dfrac{3}{8}&\dfrac{1}{4}&\dfrac{1}{8}\end{bmatrix}\)


2 × 2 矩阵的逆矩阵公式 (Formula for the Inverse of a 2 by 2 Matrix)

使用上述两种方法中的任何一种,都可以证明矩阵 A 的逆矩阵由下式给出: \[ A = \begin{bmatrix} a & b\\ c & d \\ \end{bmatrix} \] is given by \[ A^{-1} = \dfrac{1}{ad - bc}\begin{bmatrix} d & -b\\ -c & a \\ \end{bmatrix} \]


逆矩阵的性质 (Properties of Inverse Matrices)

具有逆矩阵的矩阵称为可逆矩阵。

  1. 如果 A 是可逆矩阵,则其逆矩阵唯一。
  2. \( A A^{-1} = A^{-1} A = I \)
  3. 如果矩阵 A 和 B 可逆,则: \( (AB)^{-1} = B^{-1}A^{-1} \)
  4. 当且仅当其行列式不等于零时,矩阵才是可逆的。
  5. 行列式不等于零的矩阵称为非奇异矩阵。
  6. \( (A^T)^{-1} = (A^{-1})^T \)
  7. \( Det(A^{-1}) = \dfrac{1}{Det(A)} \)
  8. \( (A^{-1})^{-1} = A \)


关于逆矩阵的问题 (Questions on Inverse Matrices)



上述问题的解答


更多矩阵参考和链接