Matrix Algebra Tutorial for B.Tech 2024-25
Matrix Algebra Tutorial for B.Tech 2024-25
The determinant of a block upper triangular matrix is the product of the determinants of the diagonal blocks. For a block matrix with diagonal blocks A and D, det([A B; 0 D]) = det(A) * det(D), as the other blocks do not affect the determinant .
For a 2x2 matrix A = [a b; c d], the inverse exists if ad - bc ≠ 0 and is given by 1/(ad-bc) * [d -b; -c a]. To verify, multiply A by its inverse; if the product yields the identity matrix, the inverse is correctly computed .
Matrix multiplication is not commutative generally because for matrices A and B, AB may not equal BA. Consider A = [2 0; 0 -3] and B = [-5 0; 0 4]. Here, AB = [-10 0; 0 -12], but BA = [-10 0; 0 -12] is different from AB's result, demonstrating the non-commutative nature except in specific cases, such as when the matrices are diagonal in form .
The rotation matrix [cos θ -sin θ; sin θ cos θ] represents a coordinate rotation by angle θ. To prove the sum and difference identities, use rotation matrices for angles a and b. The product yields a rotation by a±b, allowing derivation of formulas like cos(a±b) = cos a cos b ∓ sin a sin b and sin(a±b) = sin a cos b ± cos a sin b .
The sum of two singular matrices may result in a non-singular matrix if the matrices nullify each other's determinant condition. Consider singular matrices A and B such that a linear combination yields an invertible matrix, which is possible if their rank increases, thus beyond having zero determinant each singly .
For the product AB to be symmetric, matrices A and B must be symmetric themselves and commute, meaning AB = BA. If A and B are symmetric, AB^T = B^TA^T = BA by the properties of transpose and symmetry, ensuring AB = AB^T if AB = BA .
For a matrix A such that A^2 = O, the geometric series suggests an inverse for (I - A) can be derived as I + A, since (I - A)(I + A) = I. This relationship holds because O entries confirm that each power of A greater than one vanishes, enabling the inverse construction .
Cramer's rule is applicable to a 3x3 system with a non-zero determinant. For equations 4x1 − x2 − x3 = 1, 2x1 + 2x2 + 3x3 = 10, 5x1 − 2x2 − 2x3 = −1, calculate the determinant of the coefficient matrix. Then, replace each column with the constant terms vector, solve for xi using determinants of these new matrices divided by the original determinant .
To decompose a square matrix A into a symmetric matrix S and a skew-symmetric matrix K, note that any square matrix can be written as A = S + K, where S = (A + A^T)/2 and K = (A - A^T)/2. The matrix S is symmetric because S^T = S, and K is skew-symmetric because K^T = -K. Hence, the decomposition is achieved by these definitions .
The product of two invertible matrices is invertible because if A and B are invertible, then their product AB has an inverse given by (AB)^-1 = B^-1A^-1. This follows from the associative property of matrix multiplication and the definition of matrix inverse, which requires that AB(AB)^-1 = I = (AB)^-1AB, where I is the identity matrix .