矩阵以矩形阵列的形式表示元素。矩阵由行和列组成。水平线称为行,垂直线称为列。矩阵的顺序定义为行数×列数。如果矩阵中的行数为“ m”且列数为“ n”,则矩阵的顺序表示为“ m×n”。
矩阵的逆
假设“ A”是一个正方形矩阵,那么现在,如果“ A”矩阵存在相同维数的另一个矩阵“ B”,则该A矩阵只有在一个条件下才是可逆的,从而AB = BA = I n ,其中I n是已知的作为相同阶的单位矩阵和矩阵“ B”被称为矩阵“ A”的逆。矩阵的逆可以表示为A -1 。也称为非奇异矩阵或非简并矩阵。
例如:
A =
and B =
On multiplying A and B you get,
AB =
AB =
AB =
AB = I ………. (1)
Similarly, you can get BA by multiplying matrix B and matrix A.
BA =
BA =
BA =
BA = I………… (2)
From (1) and (2), you can see that AB = BA = In
Hence, A is an invertible matrix and inverse of matrix A is matrix B. This can be written as A-1 = B.
If B is inverse matrix for A then also, A is inverse matrix for B. So, you can write B-1 = A.
注意:方矩阵A拥有逆矩阵的必要和充分条件是矩阵不应该是奇异的。如果矩阵的行列式为零,即| A |,则称该矩阵为奇异矩阵=0。所以| A |对于可逆矩阵A≠0。
可逆矩阵的应用:
可逆矩阵的应用是:
- 最小二乘或回归
- 模拟
- MIMO无线通讯
矩阵求逆方法:
使用以下方法,您可以找到另一个矩阵,例如“ B”矩阵,它是矩阵“ A”的逆矩阵:
- 高斯消除
- 牛顿法
- Cayley-Hamilton方法
- 本征分解法
示例:检查矩阵A = 是可逆的还是不可逆的。如果A是可逆的,则检查矩阵B是否= 是否为矩阵A的逆。
解决方案:
First we check whether matrix A is invertible or not.
|A| = 0×(2-3) – 1×(1-2) + 3×(3-4)
|A| = 0+1-3
|A| = -2 ≠0
Hence. matrix A is invertible.
Now, check whether AB=BA=In or not
AB =
AB =
AB =
AB =
AB =
AB = I
BA =
BA =
BA =
BA =
BA =
BA = I
You can see, AB = BA = I
Hence, matrix B is inverse of matrix A.
可逆矩阵定理
定理1:每个可逆矩阵都具有唯一的逆。
证明:
Let ‘A’ be an n×n invertible matrix.
Let us considered B and C be two inverse of A.
Then, AB = BA = I …….(1)
and AC = CA = I …….. (2)
From (1) you have
C(AB) = C(In) = C ……..(3)
From (2) you have
(CA)B = In(B) = B ……. (4)
Since, C(AB) = (CA)B [Associativity Law]
So, C = B
Hence, it is proved.
例子:
Let A = , B = , and C =
If both matrices B and C are inverse of matrix A then,
AB = BA = I and
AC = CA = I
Taking AB = I
From above, you get 4 equations
2 b1 + 9 b3 = 1 ………. (1)
b1 + 7 b3 = 0 …………….(2)
2 b2 + 9 b4 = 0 …………..(3)
b2 + 7 b4 = 1 ……………….(4)
after solving these 4 equations, you will get
b1 = 7/5
b2 = -9/5
b3 = -1/5
b4 = 2/5
So matrix B = ………… (5)
Now, consider AC = I
From above, you get 4 equations
2 b1 + 9 b3 = 1 ………. (6)
b1 + 7 b3 = 0 …………….(7)
2 b2 + 9 b4 = 0 …………..(8)
b2 + 7 b4 = 1 ……………….(9)
After solving these 4 equations, you will get
b1 = 7/5
b2 = -9/5
b3 = -1/5
b4 = 2/5
So matrix B = ………..(10)
From (9) and (10) you can see that matrix B and C are equal.
Hence, it is proved that any invertible matrix posses unique inverse.
定理2:如果A,B是两个n行非奇异矩阵,则AB也是非奇异的(AB) -1 = B -1 A -1
证明:
|A| ≠0, |B| ≠0
So, |AB| ≠0
Let a matrix C = B-1A-1
(AB)C = (AB)B-1A-1
(AB)C = A(BB-1)A-1
(AB)C = AInA-1
(AB)C = AA-1
(AB)C = In
C(AB) = B-1A-1(AB)
C(AB) = B-1A-1AB
C(AB) = B-1B
C(AB) = In
Since (AB)C = C(AB) = In
Hence, C is inverse of (AB)
So (AB)-1 = B-1A-1
例子:
Let A = and B =
AB =
AB =
AB =
(AB)-1 = \frac{-1}{48}\begin{bmatrix} 0 &-8 \\ -6& 7 \end{bmatrix} ………. (1)
Inverse of a matrix can be obtained by the given formula
A-1 = adjoint of matrix A/ |A|
B =
B-1 =
A =
A-1 =
B-1A-1 =
B-1A-1 =
B-1A-1 = …….. (2)
From (1) and (2), you can see that (AB)-1 = B-1A-1
Hence, it is proved that (AB)-1 = B-1A-1
方阵逆矩阵的性质
1.(A -1 ) -1 = A
证明:
If A is an invertible matrix then
AA-1 = I
Taking inverse on both sides
(AA-1)-1 = I-1
(A-1)-1A-1 = I [from theorem 2 (AB)-1 = B-1A-1]
Multiplying by A on both sides
(A-1)-1A-1A = IA
(A-1)-1I = A
(A-1)-1 = A
Hence, it is proved that (A-1)-1 = A
例子:
Let A =
|A| = 12 – 2 = 10
adj A =
A-1 = adj A /|A|
A-1 =
(A-1)-1 = adj (A-1) / |A-1|
adj(A-1) =
|A-1| = (12 – 10)/100
|A-1| = 1/10
(A-1)-1 =
(A-1)-1 =
From above you can see that (A-1)-1 = A
2. (A 1 A 2 A 3 ………..A n ) -1 = A n -1 A n-1 -1 ……….A 2 -1 A 1 -1
您还可以编写它:
(AB) -1 = A -1 B -1
(ABC) -1 = A -1 B -1 C -1
证明:
This can be proved by mathematical induction
for n = 2
(A1A2)-1 = A2-1A1-1 ……….(1)
This statement is true. [by theorem 2]
Let this is true for n = k
(A1A2A3……….Ak)-1 = Ak-1…………A2-1A1-1……..(2)
For n = k+1, you have to prove this.
(A1A2A3……….AkAk+1)-1
=((A1A2A3………Ak)Ak+1)-1
=((Ak-1…………A2-1A1-1)Ak+1)-1
=(Ak+1)-1 (Ak-1…………A2-1A1-1) [using theorem 2]
= Ak+1-1Ak-1………….A2-1A1-1
Hence, it is proved.
例子:
Suppose there are two matrices A and B,
Let A =
and B =
AB =
AB =
AB =
(AB)-1 = ………. (1)
Inverse of a matrix can be obtained by the given formula
A-1 = adjoint of matrix A/ |A|
B =
B-1 =
A =
A-1 =
B-1A-1 =
B-1A-1 =
B-1A-1 = …….. (2)
From (1) and (2), you can see that (AB)-1 = B-1A-1
Hence, it is proved that (AB)-1 = B-1A-1
3. AA -1 = A -1 A = I n
证明:
A matrix is invertible if AA-1 = I
Multiply by A on both sides
AAA-1 = AI
AI = A
Multiplying by A-1 on both sides
A-1AI = A-1A
I = A-1A
Hence, it is proved that AA-1 = I = A-1A
例子:
Let A =
|A| = 3 + 2 = 5
adj A =
A-1= adj A \|A|
A-1 =
Now to prove AA-1 = A-1A = I
Taking left hand side
AA-1
The above matrix is equal to the identity matrix.
Now taking right side
A-1A
The above matrix is equal to the identity matrix.
Hence, it is proved that AA-1 = A-1A = I
更多属性:
- (A T ) -1 =(A -1 ) T
- (kA) -1 =(1 / k)A -1
- AB = I n ,其中A和B彼此相反。
- 如果A是其中n> 0的方阵,则(A -1 ) n = A -n