🔴
入学要求
💯
能力测试
🛣️
课程安排
🕹️
研究资源

第3讲 矩阵II(Matrices II)

💡

查看全集:🏸线性代数/Linear Algebra

一、行列式的三种定义

1.1 拉普拉斯展开式(Laplace Expansion)

定义:设 A=(aij)A = (a_{ij})n×nn \times n 矩阵,MijM_{ij} 表示删除第i i行第 jj 列后的 (n1)×(n1)(n-1) \times (n-1) 子矩阵。

余因子 (Cofactor)

Aij=(1)i+jdet(Mij)A_{ij} = (-1)^{i+j} \det(M_{ij})

行列式定义

det(A)={a11若 n=1j=1na1jA1j若 n2\det(A) = \begin{cases} a_{11} & \text{若 } n=1 \\ \sum_{j=1}^n a_{1j} A_{1j} & \text{若 } n \geq 2 \end{cases}

:计算 A=(2134)A = \begin{pmatrix} 2 & 1 \\ 3 & 4 \end{pmatrix} 的行列式:



det(A)=2(1)1+1det(4)1(1)1+2det(3)=2413=5\det(A) = 2 \cdot (-1)^{1+1} \det(4) - 1 \cdot (-1)^{1+2} \det(3) = 2 \cdot 4 - 1 \cdot 3 = 5 


1.2 莱布尼茨公式(Leibniz Formula)

排列与符号 (Permutations and Signatures)

行列式定义

det(A)=σSnsgn(σ)i=1nai,σ(i) \det(A) = \sum_{\sigma \in S_n} \operatorname{sgn}(\sigma) \prod_{i=1}^n a_{i,\sigma(i)} 

n=2n=2 时,所有排列为 σ1=(1,2)\sigma_1 = (1,2)(偶排列,符号+1)和 σ2=(2,1)\sigma_2 = (2,1)(奇排列,符号-1):

det(A)=a11a22a12a21\det(A) = a_{11}a_{22} - a_{12}a_{21}

1.3 公理化定义(Axiomatic Definition)

D:Rn×nRD: \mathbb{R}^{n \times n} \to \mathbb{R} 满足:

  1. n-线性性 (n-Linearity):对任意一行都是线性的
  1. 交替性 (Alternating):若交换两行,则D(A)=D(A)D(A') = -D(A)
  1. 归一性 (Normalization)D(In)=1D(I_n) = 1

定理:满足上述条件的函数唯一存在,即为行列式。


二、行列式的性质(Properties of Determinants)

2.1 基本性质

  1. det(A)=det(AT)\det(A) = \det(A^T)
  1. 若矩阵有两行相同,则 det(A)=0\det(A) = 0
  1. 行操作(倍乘、交换、倍加)对行列式的影响:
    • 行倍乘:det(B)=kdet(A)\det(B) = k \det(A)
    • 行交换:det(B)=det(A)\det(B) = -\det(A)
    • 行倍加:det(B)=det(A)\det(B) = \det(A)

2.2 可逆性与行列式

:判断 A=(1234)A = \begin{pmatrix} 1 & 2 \\ 3 & 4 \end{pmatrix} 是否可逆:

det(A)=20    \det(A) = -2 \neq 0 \implies 可逆。


三、伴随矩阵与克拉默法则(Adjoint Matrix and Cramer's Rule)

3.1 伴随矩阵

定义:设Aij A_{ij}为余因子,伴随矩阵为:

adj(A)=(A11A21An1A1nA2nAnn) \operatorname{adj}(A) = \begin{pmatrix} A_{11} & A_{21} & \cdots & A_{n1} \\ \vdots & \vdots & \ddots & \vdots \\ A_{1n} & A_{2n} & \cdots & A_{nn} \end{pmatrix} 

关键公式Aadj(A)=det(A)InA \cdot \operatorname{adj}(A) = \det(A) I_n

逆矩阵表达式:若 AA 可逆,则 A1=1det(A)adj(A)A^{-1} = \frac{1}{\det(A)} \operatorname{adj}(A)


3.2 克拉默法则(Cramer's Rule)

对线性方程组 Ax=bA\mathbf{x} = \mathbf{b},若 AA 可逆,则解为:

xi=det(Ai)det(A)x_i = \frac{\det(A_i)}{\det(A)}

其中 AiA_i 是将 AA 的第 ii 列替换为 b\mathbf{b}后的矩阵。

:解方程组 {2x+y=53x+4y=6\begin{cases} 2x + y = 5 \\ 3x + 4y = 6 \end{cases}

计算 A1=(5164)A_1 = \begin{pmatrix} 5 & 1 \\ 6 & 4 \end{pmatrix},得 x=det(A1)det(A)=145x = \frac{\det(A_1)}{\det(A)} = \frac{14}{5}


四、习题与解答(Exercises and Solutions)

4.1 练习建议

  1. 初阶:计算 3×33 \times 3 矩阵的行列式(使用拉普拉斯展开)
  1. 中阶:验证行列式的交替性(交换两行后符号变化)
  1. 高阶:利用莱布尼茨公式证明 det(AB)=det(A)det(B)\det(AB) = \det(A)\det(B)

4.2 范例解答

习题:证明若 AA 可逆,则 det(A1)=1/det(A)\det(A^{-1}) = 1/\det(A)

解答

AA1=IA A^{-1} = I,两边取行列式得:

det(A)det(A1)=det(I)=1    det(A1)=1/det(A)\det(A) \det(A^{-1}) = \det(I) = 1 \implies \det(A^{-1}) = 1/\det(A)


五、关键术语对照表

中文英文
行列式Determinant
余因子Cofactor
伴随矩阵Adjoint Matrix
克拉默法则Cramer's Rule
排列Permutation
奇偶性Parity

附:练习合集