2x2Matrix
2x2Matrix refers to a matrix with two rows and two columns. It is commonly denoted by A or M when described as A = [ [a, b], [c, d] ]. In mathematics, entries are taken from a field F (often the real numbers R or complex numbers C). The determinant is det(A) = ad − bc. If det(A) ≠ 0, A is invertible, and its inverse is A^{-1} = (1/(ad − bc)) [ [d, −b], [−c, a] ]. If det(A) = 0, A is singular and has no inverse.
The trace is tr(A) = a + d. The characteristic polynomial is λ^2 − tr(A) λ + det(A) = 0; eigenvalues λ = (tr(A)
2x2 matrices represent linear transformations of the plane. They can perform scaling, rotation, reflection, shear, and
Applications include solving systems of linear equations, computer graphics, and coordinate changes. The set of all
Example: Consider A = [ [2, 1], [0, 3] ]. Its determinant is 6, inverse is (1/6) [ [3, −1],
---