The Matrix Calculator performs common matrix operations including addition, subtraction, multiplication, determinant calculation, transpose, and row reduction to RREF. Supports 2x2, 3x3, and 4x4 matrices.
Enter your matrix values and select an operation to get instant results with step-by-step working shown in mathematical notation.
Your calculations will appear here
Matrices are rectangular arrays of numbers arranged in rows and columns. They are fundamental to linear algebra and used extensively in physics, engineering, computer graphics, and data science.
Matrix addition and subtraction require matrices of the same dimensions and operate element-wise. Matrix multiplication requires the number of columns in the first matrix to equal the number of rows in the second.
The determinant is a scalar value computed from a square matrix that indicates whether the matrix is invertible. A zero determinant means the matrix is singular (not invertible).
Row Echelon Form (RREF) is achieved through Gaussian elimination and is used to solve systems of linear equations, find matrix rank, and determine linear independence.
Aufgabe: Add [[1,2],[3,4]] + [[5,6],[7,8]]
Loesung: [[1+5, 2+6], [3+7, 4+8]]
Antwort: [[6, 8], [10, 12]]
Aufgabe: Find det([[3,1],[2,5]])
Loesung: det = (3)(5) - (1)(2) = 15 - 2
Antwort: 13
Aufgabe: Transpose [[1,2,3],[4,5,6]]
Loesung: Swap rows and columns
Antwort: [[1,4],[2,5],[3,6]]
Aufgabe: [[1,2],[3,4]] x [[5,6],[7,8]]
Loesung: [[1*5+2*7, 1*6+2*8], [3*5+4*7, 3*6+4*8]]
Antwort: [[19, 22], [43, 50]]
Calculate eigenvalues and eigenvectors of matrices. Supports 2x2 and 3x3 matrices. Free online eigenvalue calculator.
Calculate percentages instantly. Find what percent of a number, percentage change, and percentage difference. Free, fast, no signup.
Add, subtract, multiply, and divide fractions. Simplify fractions and convert to mixed numbers. Free online fraction calculator.
Simplify ratios and find missing values in proportions. Free online ratio calculator with step-by-step results.
Calculate powers and exponents instantly. Compute base raised to any power including negative and fractional exponents. Free online tool.
Calculate logarithms with any base. Find natural log (ln), log base 10, and custom base logarithms. Free online log calculator.