2x2matrices
A 2x2 matrix is a square matrix with two rows and two columns, commonly written as A = [ [a, b], [c, d] ] with a, b, c, d from a field such as the real numbers. Key properties include the determinant det(A) = ad − bc and the trace tr(A) = a + d. The determinant indicates the area scaling of the associated linear transformation; det(A) = 0 means A is singular.
If det(A) ≠ 0, A is invertible, and its inverse is A^{-1} = (1/(ad − bc)) [ [d, −b], [−c,
Matrix operations: addition and subtraction are performed elementwise, while multiplication uses the dot-product rule. In general
Common forms include diagonal matrices with b = c = 0, and triangular matrices with one off-diagonal zero.