Matrices
This chapter systematically studies the basic concepts, operations, properties, elementary transformations, inverse matrices, adjugate matrices, and rank of matrices.
Definition and Types of Matrices
- m×n matrix: A=(aij)m×n
- Square matrix, zero matrix, identity matrix, diagonal matrix, symmetric matrix, skew-symmetric matrix
Matrix Operations
- Addition, scalar multiplication: add corresponding elements of matrices of the same type, scalar multiplication multiplies each element
- Multiplication: Am×nBn×p, Cij=∑k=1naikbkj
- Transpose: AT
Properties of Matrices
- Addition and scalar multiplication satisfy commutative, associative, and distributive laws
- Multiplication satisfies associative and distributive laws, but not commutative law
- (AB)T=BTAT
- (AT)T=A
Inverse and Adjugate Matrices
- Inverse matrix: AA−1=A−1A=I
- Invertibility condition: ∣A∣=0
- Adjugate matrix: A∗=(Aji), A−1=∣A∣1A∗
- Elementary row (column) transformations: swap, add multiple, scalar multiplication
- Elementary matrix: obtained by performing an elementary transformation on the identity matrix
- One-to-one correspondence between elementary matrices and elementary transformations
Rank and Equivalence of Matrices
- Rank: the maximum number of linearly independent rows (or columns)
- Equivalence: can be transformed into each other by a finite number of elementary transformations
- Block matrices and their operations
Exercises
- Determine the types of the following matrices: A=(1001), B=(0220).
- Compute A+B, where A=(1324), B=(4231).
- Compute AB, A=(1021), B=(2103).
- Determine whether A=(1324) is invertible. If so, find A−1.
- Find the adjugate matrix of A=(1324).
- Write the elementary matrix that swaps the first and second rows of A=(1324).
- Find the rank of A=(122436).
Reference Answers
1. Determine the types of the following matrices
A: 2×2 identity matrix, symmetric matrix; B: 2×2 symmetric matrix
2. Compute A+B
(1+43+22+34+1)=(5555)
3. Compute AB
(1021)(2103)=(1×2+2×10×2+1×11×0+2×30×0+1×3)=(4163)
4. Determine whether A is invertible. If so, find A−1
∣A∣=1×4−2×3=4−6=−2=0, so it is invertible.
A−1=−21(4−3−21)=(−21.51−0.5)
5. Find the adjugate matrix of A
A∗=(4−2−31)
6. Write the elementary matrix that swaps the first and second rows of A
E=(0110)
7. Find the rank of A
The two rows are proportional, so the rank is 1.