Matrix Summary
1. Definition:
A matrix is a rectangular array of numbers arranged in rows and columns.
2. Types of Matrices:
- Row Matrix: Only one row.
- Column Matrix: Only one column.
- Square Matrix: Same number of rows and columns.
- Diagonal Matrix: All off-diagonal elements are zero.
- Scalar Matrix: Diagonal matrix with equal diagonal elements.
- Identity Matrix: Diagonal matrix with 1s on the diagonal.
- Zero Matrix: All elements are zero.
- Transpose Matrix: Rows and columns are interchanged.
3. Operations on Matrices:
- Addition/Subtraction: Only possible for matrices of the same order.
- Scalar Multiplication: Multiply each element by the scalar.
- Matrix Multiplication: Only possible when the number of columns in the first equals the number of
rows in the second.
4. Determinant:
Defined only for square matrices. Used to check invertibility.
5. Inverse of a Matrix:
If A is a square matrix, its inverse A-¹ exists if |A| != 0. A * A-¹ = I.
6. Rank of a Matrix:
The maximum number of linearly independent rows or columns.
7. Solving Linear Equations:
- Matrix method: AX = B => X = A-¹B (if A-¹ exists)
- Row reduction (Gauss-Jordan method)
8. Eigenvalues and Eigenvectors:
For a square matrix A, if Av = lambdav, then lambda is an eigenvalue and v is an eigenvector.