Perform 2×2 matrix operations: addition, subtraction, multiplication, determinant, inverse, and transpose. Shows full working.
Required for A+B, A−B, A×B
Enter values above to see results
det(A) = a₁₁a₂₂ − a₁₂a₂₁ | A⁻¹ = (1/det) × adj(A)detDeterminant: ad − bc for [[a,b],[c,d]]adjAdjugate: [[d,−b],[−c,a]]A⁻¹Inverse: (1/det) × adjugateA 2×2 matrix A = [[a,b],[c,d]] has determinant ad−bc. The inverse exists only when det ≠ 0, and equals (1/det)×[[d,−b],[−c,a]]. Matrix multiplication is not commutative: AB ≠ BA in general.
Matrix algebra is a cornerstone of mathematics, physics, computer science, and engineering. From solving simultaneous equations to powering 3D computer graphics and machine learning algorithms, matrix operations are ubiquitous in modern science and technology.
Enter the elements of your 2×2 matrix (and a second matrix for binary operations), select the operation, and the calculator instantly computes the result with full step-by-step working showing the formula applied.
This calculator handles the most common 2×2 matrix operations — determinant, inverse, transpose, addition, subtraction, and multiplication — covering the fundamental operations needed for linear algebra coursework and practical applications.
Matrix multiplication is not commutative: A×B ≠ B×A in general. Always check which order the multiplication is specified. Also, remember that the inverse only exists when the determinant is non-zero — check this first before attempting inversion.
Calculate mean, median, mode, standard deviation, variance, and more from a dataset. Ideal for students and data analysts.
Solve quadratic equations ax² + bx + c = 0 using the quadratic formula. Find real and complex roots with full working.