Chapter Summary: Matrices
Matrix: A rectangular array of numbers or functions. A matrix with 'm' rows and 'n' columns has an order of m x n.
Types of Matrices: Key types include Row, Column, Square, Diagonal, Scalar, Identity (I), and Zero (O) matrices.
Matrix Operations:
- Addition/Subtraction: Possible only for matrices of the same order. Operations are performed element-wise. Addition is commutative and associative.
- Scalar Multiplication: Multiply every element by the scalar.
- Matrix Multiplication: The product AB is defined if columns of A = rows of B. If A is m x n and B is n x p, then AB is m x p. Multiplication is associative but not commutative in general ().
Transpose (): The matrix obtained by interchanging rows and columns. Key properties include and the reversal law .
Symmetric & Skew-Symmetric Matrices:
- Symmetric: A square matrix where (i.e., ).
- Skew-Symmetric: A square matrix where (i.e., ). Diagonal elements are always zero.
- Any square matrix can be expressed as the sum of a symmetric and a skew-symmetric matrix: .
Invertible Matrix: A square matrix A is invertible if there exists a matrix such that . A matrix has an inverse if and only if its determinant is non-zero (covered in the next chapter).
🎯 Strategic Tips for JEE Main & Advanced
Matrix Multiplication is Not Commutative: This is the single most important property to remember. Many mistakes and tricky questions are based on the fact that . Always be careful with the order of multiplication.
Check Dimensions Before Multiplying: Before you start a matrix multiplication, quickly check the orders of the matrices to ensure the product is defined and to know the order of the resulting matrix. This can save you from lengthy incorrect calculations.
Use Properties of Transpose and Inverse: Problems are often simplified by using properties like and instead of calculating the products directly.
Master Symmetric and Skew-Symmetric Properties: Questions involving the decomposition of a matrix into symmetric and skew-symmetric parts are common. Also, remember that the diagonal of a skew-symmetric matrix is always all zeros.
Matrix Polynomials: For questions involving powers of a matrix (like finding ), don't start multiplying repeatedly. Instead, calculate , and look for a pattern or a repeating cycle. Often, you will find that simplifies to something like or a relation like , which can be used to find higher powers.