Class 12 Matrices: Key Notes & Formulas
Class 12 Matrices: Key Notes & Formulas
To find the inverse of a 2x2 matrix, consider a matrix A = [[1, 2], [3, 4]]. Step 1 is to calculate its determinant: |A| = 1*4 - 2*3 = -2. Step 2 involves finding the adjugate of A, adj(A) = [[4, -2], [-3, 1]]. Finally, the inverse is computed as A**-1 = (1/|A|) * adj(A) = (1/-2) * [[4, -2], [-3, 1]] = [[-2.0, 1.0], [1.5, -0.5]].
The commutative property of matrix addition states that A + B = B + A for matrices of the same order. This means the order of adding matrices does not affect the result . In contrast, matrix multiplication is generally not commutative, meaning AB does not necessarily equal BA, even if both products are defined .
The property (AB)**T = B**T A**T demonstrates that the transpose of a product of matrices is the product of their transposes, but taken in reverse order. This showcases how transposition affects multiplication, reversing the multiplication sequence while applying the transpose, highlighting non-commutative aspects of matrix operations . It requires attention to both the original multiplication sequence and the individual transposition of matrices.
Solving a system of linear equations represented as AX = B requires finding X by computing X = A**-1 * B, which necessitates that A be invertible. Without an invertible matrix A, A**-1 does not exist, making it impossible to uniquely solve for X using this method. The invertibility of A ensures that a unique solution can be computed .
Diagonal matrices are special because their non-diagonal elements are all zero, only the diagonal elements can be non-zero . Scalar matrices are a further special case where all the diagonal elements are equal, leading to a matrix that is a scalar multiple of the identity matrix . These properties simplify computing powers and multiplications and are pivotal in eigenvalue studies, where diagonalization simplifies many linear algebra problems.
The multiplication of two matrices, say A (of order m×n) and B (of order n×p), is only possible if the number of columns in the first matrix (A) equals the number of rows in the second matrix (B). This condition ensures that each element in the resulting matrix is calculated through the dot product of the corresponding row of A and column of B, influencing the resulting matrix to have the order m×p .
The determinant plays a crucial role in determining the invertibility of a matrix. A square matrix is invertible if and only if its determinant is non-zero. If |A| ≠ 0, the matrix has an inverse, calculated as A**-1 = 1/|A| * adj(A).
The transpose of a matrix A, denoted A**T, is formed by converting rows into columns and vice versa . A matrix is symmetric if A**T = A, indicating that it is identical to its transpose, which implies that corresponding elements are equal across the main diagonal . A matrix is skew-symmetric if A**T = -A, which means each element is the negative of its transpose counterpart, forcing all diagonal elements to be zero . These properties naturally define the structures of symmetric and skew-symmetric matrices.
Scalar multiplication distributes over matrix addition as follows: for matrices A and B of the same order and a scalar k, k(A + B) = kA + kB . This illustrates the distributive property, which is a fundamental principle in mathematics, showing how scalar factors distribute across sums, preserving structural consistency in scalar multiplications of matrices.
A zero matrix acts as an additive identity in matrix operations, meaning adding a zero matrix to any matrix A results in the same matrix A. In contrast, the identity matrix functions as a multiplicative identity. For any square matrix A of the same order as the identity matrix I, AI = IA = A. This highlights their distinct roles in addition and multiplication operations .