Add two 2×2 matrices
Matrix addition combines matching positions from both matrices when their dimensions are the same.
[[1, 2], [3, 4]] + [[5, 6], [7, 8]]
Result: [[6, 8], [10, 12]]
Perform various matrix operations with our easy-to-use matrix calculator. Add, subtract, multiply matrices or find transpose, determinant, and inverse with just a few clicks.
A matrix is a rectangular array of numbers, symbols, or expressions arranged in rows and columns. Matrices are used in various fields of mathematics, science, and engineering to represent linear transformations, solve systems of linear equations, and model real-world problems.
Our calculator supports the following matrix operations:
Addition and subtraction require both matrices to have the same dimensions. Multiplication needs the number of columns in Matrix A to match the number of rows in Matrix B.
Matrices are used in various applications including:
Matrix addition combines matching positions from both matrices when their dimensions are the same.
[[1, 2], [3, 4]] + [[5, 6], [7, 8]]
Result: [[6, 8], [10, 12]]
Matrix multiplication uses row-by-column products and only works when the inner dimensions match.
[[1, 2], [3, 4]] × [[2, 0], [1, 2]]
Result: [[4, 4], [10, 8]]
The determinant summarizes key properties of a square matrix and helps decide whether an inverse exists.
det([[4, 7], [2, 6]])
Result: 10
Two matrices can be added or subtracted only when they have exactly the same number of rows and columns.
Matrix multiplication is possible when the number of columns in the first matrix equals the number of rows in the second matrix.
Determinants and inverses are defined for square matrices. A non-square matrix does not have a determinant, and it cannot have a standard inverse.
A zero determinant means the matrix is singular, so it does not have an inverse and its rows or columns are linearly dependent.