如何通过补集或辅因子计算 4×4 矩阵的行列式

在本页中,我们将了解如何通过加法或辅因子求解行列式,以及如何计算 4×4 维矩阵的行列式。但是,要求解 4 阶矩阵的行列式,您必须首先知道如何使用行或列的伴随词来计算行列式。因此,我们将首先了解如何通过伴随或辅因子找到行列式,然后如何创建 4 阶行列式

如何通过加法或辅因子计算行列式?

可以通过将任意行或列中的元素与其各自的补数(或辅因子)的乘积相加来计算行列式。

这种方法称为通过伴随或辅因子求解行列式,甚至有数学家还告诉你拉普拉斯法则(或拉普拉斯定理)。

代表求解行列式的示例:

让我们看一个通过伴随函数求解3 × 3 矩阵行列式的实际示例。让我们做出以下行列式:

\begin{vmatrix} 2 & 3 & 1 \\[1.1ex] 0 & -2 & 5 \\[1.1ex] 3 & 7 & -4 \end{vmatrix}

首先,我们需要选择行列式的列或行。在本例中,我们选择第一列,因为它有 0,因此更容易求解。

现在我们必须将第一列的元素乘以它们各自的副值

\begin{vmatrix} 2 & 3 & 1 \\[1.1ex] 0 & -2 & 5 \\[1.1ex] 3 & 7 & -4 \end{vmatrix} \displaystyle = 2\bm{\cdot} \text{Adj(2)} + 0\bm{\cdot} \text{Adj(0)} + 3 \bm{\cdot} \text{Adj(3)}

0的补码不需要计算,因为乘以0就会取消它。因此我们可以简化:

\displaystyle  = 2\bm{\cdot} \text{Adj(2)} + \cancel{0\bm{\cdot} \text{Adj(0)}} + 3 \bm{\cdot} \text{Adj(3)}

\displaystyle = 2\bm{\cdot} \text{Adj(2)}  + 3 \bm{\cdot} \text{Adj(3)}

我们现在继续计算补数

\displaystyle = 2\cdot (-1)^{1+1} \cdot \begin{vmatrix} -2 & 5  \\[1.1ex] 7 & -4   \end{vmatrix}  + 3 \cdot (-1)^{3+1} \cdot \begin{vmatrix} 3 & 1  \\[1.1ex] -2 & 5   \end{vmatrix}

记住要计算

a_{ij}

,即行项目

i

和专栏

j

,必须应用以下公式:

\text{Adjunto de } a_{ij} = (-1)^{i+j} \bm{\cdot} \text{Menor complementario de } a_{ij}

其中互补小数

a_{ij}

是通过删除行来确定矩阵的行列式

i

和专栏

j

我们求解幂和行列式:

= 2 \cdot 1 \cdot (8-35) + 3 \cdot 1 \cdot \bigl(15-(-2)\bigr)

= 2 \cdot 1 \cdot (-27) + 3 \cdot 1 \cdot 17

我们用计算器来操作:

= -54 + 51

= \bm{-3}

因此,行列式的结果是-3。

请注意,如果我们用 Sarrus 规则计算行列式,我们会得到相同的结果:

\begin{aligned} \begin{vmatrix} 2 & 3 & 1 \\[1.1ex] 0 & -2 & 5 \\[1.1ex] 3 & 7 & -4   \end{vmatrix} & = 2 \cdot (-2) \cdot (-4) + 3 \cdot 5 \cdot  3 +  0 \cdot 7 \cdot 1  - 3 \cdot (-2) \cdot 1 - 7 \cdot 5 \cdot 2- 0 \cdot 3 \cdot (-4)  \\  & =  16 +45 + 0  +6 - 70 -0   \\[2ex] &  =  \bm{-3}   \end{aligned}

一旦我们知道了代表如何计算行列式,我们现在就可以看到如何找到 4 阶行列式的结果:

如何计算4×4行列式?

为了求解4 阶矩阵的行列式,我们必须应用我们刚刚为代表看到的过程。也就是说,我们选择任何行或列,然后将其元素的乘积与其各自的补集相加。

然而,使用此过程处理 4 × 4 行列式时,必须计算许多 3 × 3 行列式,并且这些行列式往往需要很长时间。因此,在计算伴随数 之前,需要对线 进行变换,类似于高斯方法。由于行列式的一行可以替换为同一行加上另一行乘以一个数字的总和。

因此,要计算代表的4阶行列式,必须选择包含最多零的列,因为这样有利于计算。然后我们对行进行内部操作,使得该列中除 1 之外的所有元素都为空。

让我们通过一个例子来看看如何制作 4×4 行列式:

求解 4×4 行列式的示例:

我们将求解以下 4×4 方阵的行列式:

\begin{vmatrix} 1 & 4 & 2 & 1 \\[1.1ex] -1 & -1 & 3 & 2 \\[1.1ex] 0 & 5 & 7 & -4 \\[1.1ex] 2 & 1 & -3 & 2 \end{vmatrix}

在这种情况下,具有最多零的列是第一列。因此,我们选择第一列。

利用这一列中有一个 1 的事实,我们将把第一列的所有其他元素转换为 0。因为使用有 1 的行进行计算更容易。

因此,为了将该列中的所有其他元素变为 0,我们将第一行添加到第二行,然后从第四行减去第一行乘以 2 。第三行不需要更改,因为第一列中已经有 0。

\begin{vmatrix} 1 & 4 & 2 & 1 \\[1.1ex] -1 & -1 & 3 & 2 \\[1.1ex] 0 & 5 & 7 & -4 \\[1.1ex] 2 & 1 & -3 & 2 \end{vmatrix} \begin{matrix} \\[1.1ex] \xrightarrow{f_2 + f_1}  \\[1.1ex]  \\[1.1ex] \xrightarrow{f_4 - 2f_1} \end{matrix}   \begin{vmatrix} 1 & 4 & 2 & 1 \\[1.1ex] 0 & 3 & 5 & 3 \\[1.1ex] 0 & 5 & 7 & -4 \\[1.1ex] 0 & -7 & -7 & 0 \end{vmatrix}

一旦我们将所选列中除一个元素之外的所有元素都转换为 0,我们就可以计算代表的行列式。也就是说,我们将列中元素各自的副乘积相加:

\begin{vmatrix} 1 & 4 & 2 & 1 \\[1.1ex] 0 & 3 & 5 & 3 \\[1.1ex] 0 & 5 & 7 & -4 \\[1.1ex] 0 & -7 & -7 & 0 \end{vmatrix} \displaystyle = 1\bm{\cdot} \text{Adj(1)} + 0\bm{\cdot} \text{Adj(0)} +0\bm{\cdot} \text{Adj(0)} + 0\bm{\cdot} \text{Adj(0)}

项乘以 0 就取消了,所以我们简化它们:

=1\bm{\cdot} \text{Adj(1)} + \cancel{0\bm{\cdot} \text{Adj(0)}} +\cancel{0\bm{\cdot} \text{Adj(0)}} + \cancel{0\bm{\cdot} \text{Adj(0)}}

=1\bm{\cdot} \text{Adj(1)}

=\text{Adj(1)}

因此计算 1 的伴随就足够了:

\displaystyle = (-1)^{1+1} \cdot \begin{vmatrix}  3 & 5 & 3 \\[1.1ex] 5 & 7 & -4 \\[1.1ex] -7 & -7 & 0   \end{vmatrix}

我们用 Sarrus 规则和幂计算行列式:

\inlinestyle = 1 \cdot \bigl[  3 \cdot 7 \cdot 0 + 5 \cdot (-4) \cdot (-7) + 5 \cdot (-7)  \cdot 3 - (-7)\cdot 7 \cdot 3 - (-7) \cdot (-4) \cdot 3 - 5 \cdot 5 \cdot 0 \bigr]

=3 \cdot 7 \cdot 0 + 5 \cdot (-4) \cdot (-7) + 5 \cdot (-7)  \cdot 3 - (-7)\cdot 7 \cdot 3 - (-7) \cdot (-4) \cdot 3 - 5 \cdot 5 \cdot 0

最后我们用计算器求解运算:

\displaystyle =0+140-105 +147 - 84 - 0

\displaystyle =\bm{98}

解决了 4×4 行列式的练习

练习1

求解以下 4 阶行列式:

\displaystyle \begin{pmatrix} 2 & 3 & -1 & 0 \\[1.1ex] 0 & 1 & 1 & 1 \\[1.1ex] 2 & 3 & 1 & -1 \\[1.1ex] 4 & 1 & 2 & 0 \end{pmatrix}

我们用辅因子法求出4×4行列式的结果。但首先我们对行进行操作,将列中除 1 之外的所有元素设置为零:

\begin{vmatrix} 2 & 3 & -1 & 0 \\[1.1ex] 0 & 1 & 1 & 1 \\[1.1ex] 2 & 3 & 1 & -1 \\[1.1ex] 4 & 1 & 2 & 0 \end{vmatrix} \begin{matrix} \\[1.1ex] \\[1.1ex] \xrightarrow{f_3 + f_2}  \\[1.1ex] \  \end{matrix} \begin{vmatrix} 2 & 3 & -1 & 0 \\[1.1ex] 0 & 1 & 1 & 1 \\[1.1ex] 2 & 4 & 2 & 0 \\[1.1ex] 4 & 1 & 2 & 0 \end{vmatrix}

现在我们通过与最后一列的伴随来求解行列式 4×4:

\begin{vmatrix} 2 & 3 & -1 & 0 \\[1.1ex] 0 & 1 & 1 & 1 \\[1.1ex] 2 & 4 & 2 & 0 \\[1.1ex] 4 & 1 & 2 & 0 \end{vmatrix} = 0\bm{\cdot} \text{Adj(0)} +1\bm{\cdot} \text{Adj(1)} +0\bm{\cdot} \text{Adj(0)} + 0\bm{\cdot} \text{Adj(0)}

我们简化一下术语:

= \cancel{0\bm{\cdot} \text{Adj(0)}} +1\bm{\cdot} \text{Adj(1)} +\cancel{0\bm{\cdot} \text{Adj(0)}} + \cancel{0\bm{\cdot} \text{Adj(0)}}

= \text{Adj(1)}

我们计算 1 的伴随:

\displaystyle = (-1)^{2+4} \cdot \begin{vmatrix} 2 & 3 & -1 \\[1.1ex] 2 & 4 & 2 \\[1.1ex]4 & 1 & 2 \end{vmatrix}

最后,我们用 Sarrus 规则计算 3×3 行列式:

\displaystyle = (-1)^{6} \cdot \bigl[16+24-2+16-4-12 \bigr]

\displaystyle = 1 \cdot \bigl[38 \bigr]

\displaystyle = \bm{38}

练习2

计算以下 4 阶行列式:

\displaystyle \begin{pmatrix} 1 & 3 & -2 & 2 \\[1.1ex] 2 & 0 & 1 & 4 \\[1.1ex] 1 & 1 & 2 & 3 \\[1.1ex] 5 & -1 & 3 & 1 \end{pmatrix}

我们将通过辅因子计算 4×4 行列式。但要做到这一点,我们首先对行执行操作,将列中除 1 之外的所有元素设置为零:

\begin{vmatrix} 1 & 3 & -2 & 2 \\[1.1ex] 2 & 0 & 1 & 4 \\[1.1ex] 1 & 1 & 2 & 3 \\[1.1ex] 5 & -1 & 3 & 1 \end{vmatrix} \begin{matrix} \xrightarrow{f_1 - 3f_3} \\[1.1ex] \\[1.1ex] \\[1.1ex] \xrightarrow{f_4 + f_3}  \end{matrix} \begin{vmatrix}-2 & 0 & -8 & -7 \\[1.1ex] 2 & 0 & 1 & 4 \\[1.1ex] 1 & 1 & 2 & 3 \\[1.1ex] 6 & 0 & 5 & 4 \end{vmatrix}

现在我们通过与第二列的伴随来求解行列式 4×4:

\begin{vmatrix} -2 & 0 & -8 & -7 \\[1.1ex] 2 & 0 & 1 & 4 \\[1.1ex] 1 & 1 & 2 & 3 \\[1.1ex] 6 & 0 & 5 & 4\end{vmatrix} = 0\bm{\cdot} \text{Adj(0)} +0\bm{\cdot} \text{Adj(0)} +1\bm{\cdot} \text{Adj(1)}+ 0\bm{\cdot} \text{Adj(0)}

我们简化一下术语:

= \cancel{0\bm{\cdot} \text{Adj(0)}} +\cancel{0\bm{\cdot} \text{Adj(0)}} +1\bm{\cdot} \text{Adj(1)}+\cancel{0\bm{\cdot} \text{Adj(0)}}

= \text{Adj(1)}

我们计算 1 的伴随:

\displaystyle = (-1)^{3+2} \begin{vmatrix}-2 & -8 & -7 \\[1.1ex] 2 & 1 & 4 \\[1.1ex] 6 & 5 & 4\end{vmatrix}

最后,我们用 Sarrus 规则和计算器计算 3×3 行列式:

\displaystyle = (-1)^{5} \cdot \bigl[-8-192-70+42+40+64 \bigr]

\displaystyle = -1 \cdot \bigl[-124 \bigr]

\displaystyle = \bm{124}

练习3

求以下 4 阶行列式的结果:

\displaystyle \begin{pmatrix} 2 & -2 & -1 & 3 \\[1.1ex] 4 & 3 & 1 & -2 \\[1.1ex] -1 & 2 & 1 & -1 \\[1.1ex] 3 & -2 & -4 & 5 \end{pmatrix}

我们将由代表们来解决4×4行列式。尽管我们首先对行进行操作,将列中除一个元素之外的所有元素转换为零:

\begin{vmatrix}2 & -2 & -1 & 3 \\[1.1ex] 4 & 3 & 1 & -2 \\[1.1ex] -1 & 2 & 1 & -1 \\[1.1ex] 3 & -2 & -4 & 5 \end{vmatrix} \begin{matrix} \xrightarrow{f_1 + f_2} \\[1.1ex] \\[1.1ex]\xrightarrow{f_3 - f_2} \\[1.1ex] \xrightarrow{f_4 + 4f_2}  \end{matrix} \begin{vmatrix}6 & 1 & 0 & 1 \\[1.1ex] 4 & 3 & 1 & -2 \\[1.1ex] -5 & -1 & 0 & 1 \\[1.1ex] 19 & 10 & 0 & -3 \end{vmatrix}

现在我们用第三列代表来求解行列式 4×4:

\begin{vmatrix}6 & 1 & 0 & 1 \\[1.1ex] 4 & 3 & 1 & -2 \\[1.1ex] -5 & -1 & 0 & 1 \\[1.1ex] 19 & 10 & 0 & -3 \end{vmatrix}  = 0\bm{\cdot} \text{Adj(0)} +1\bm{\cdot} \text{Adj(1)} +0\bm{\cdot} \text{Adj(0)}+ 0\bm{\cdot} \text{Adj(0)}

我们简化一下术语:

= \cancel{0\bm{\cdot}+ \text{Adj(0)}} +1\bm{\cdot} \text{Adj(1)}+\cancel{0\bm{\cdot} \text{Adj(0)}} +\cancel{0\bm{\cdot} \text{Adj(0)}}

= \text{Adj(1)}

我们计算 1 的伴随:

\displaystyle = (-1)^{2+3} \begin{vmatrix}6 & 1 & 1 \\[1.1ex] -5 & -1 & 1 \\[1.1ex] 19 & 10 & -3\end{vmatrix}

最后,我们用 Sarrus 规则和计算器求解 3×3 行列式:

\displaystyle = (-1)^{5} \cdot \bigl[18+19-50+19-60-15\bigr]

\displaystyle = -1 \cdot \bigl[-69 \bigr]

\displaystyle = \bm{69}

练习4

计算以下 4 阶行列式的结果:

\displaystyle \begin{pmatrix} 3 & 4 & -2 & -1 \\[1.1ex] 2 & -2 & 5 & -5 \\[1.1ex] -3 & 5 & 2 & 6 \\[1.1ex] -1 & -2 & -1 & 3 \end{pmatrix}

我们将使用拉普拉斯法则求解行列式 4×4。但您必须首先对行进行运算,将列中除 1 之外的所有元素设置为零:

\begin{vmatrix}3 & 4 & -2 & -1 \\[1.1ex] 2 & -2 & 5 & -5 \\[1.1ex] -3 & 5 & 2 & 6 \\[1.1ex] -1 & -2 & -1 & 3\end{vmatrix} \begin{matrix} \xrightarrow{f_1 + 3f_4} \\[1.1ex] \xrightarrow{f_2 +2f_4} \\[1.1ex]\xrightarrow{f_3 - 3f_4} \\[1.1ex] \  \end{matrix} \begin{vmatrix}0 & -2 & -5 & 8 \\[1.1ex]0 & -6 & 3 & 1 \\[1.1ex] 0 & 11 & 5 & -3 \\[1.1ex] -1 & -2 & -1 & 3\end{vmatrix}

现在我们由代表求解第一列的行列式 4×4:

\begin{vmatrix}0 & -2 & -5 & 8 \\[1.1ex]0 & -6 & 3 & 1 \\[1.1ex] 0 & 11 & 5 & -3 \\[1.1ex] -1 & -2 & -1 & 3 \end{vmatrix}  = 0\bm{\cdot} \text{Adj(0)} +0\bm{\cdot} \text{Adj(0)} + 0\bm{\cdot} \text{Adj(0)}-1\bm{\cdot} \text{Adj(-1)}

我们简化一下术语:

= \cancel{0\bm{\cdot} \text{Adj(0)}} +\cancel{0\bm{\cdot} \text{Adj(0)}} +\cancel{0\bm{\cdot} \text{Adj(0)}}-1\bm{\cdot} \text{Adj(-1)}

=- \text{Adj(-1)}

我们计算-1的伴随:

\displaystyle =- (-1)^{4+1} \begin{vmatrix} -2 & -5 & 8 \\[1.1ex]-6 & 3 & 1 \\[1.1ex] 11 & 5 & -3 \end{vmatrix}

最后,我们用 Sarrus 规则和计算器求解 3×3 行列式:

\displaystyle = -(-1)^{5} \cdot \bigl[18-55-240-264+10+90\bigr]

\displaystyle = -(-1) \cdot \bigl[-441 \bigr]

\displaystyle = - \bigl[+441 \bigr]

\displaystyle = \bm{-441}

通过所有这些练习,您可能已经知道如何求解 4×4 行列式。极好的!我们希望通过所有这些练习,您现在能够计算出4×4 维矩阵的范围,这需要花费很多人。

发表评论

您的电子邮箱地址不会被公开。 必填项已用 * 标注

Scroll to Top