Matrix Calculator
Calculate 2×2 matrix operations.
행렬 A
행렬 B
결과 행렬
행렬식 (Determinant)
Overview
The Matrix Calculator performs addition, subtraction, multiplication, determinant, and inverse calculations for 2×2 and 3×3 matrices. It is useful for linear algebra studies and solving systems of linear equations.
Formula
Matrix addition: (A + B)ᵢⱼ = Aᵢⱼ + Bᵢⱼ Matrix multiplication: (AB)ᵢⱼ = Σₖ Aᵢₖ × Bₖⱼ 2×2 determinant: det[a b; c d] = ad - bc 2×2 inverse: A⁻¹ = (1/det(A)) × [d -b; -c a] 3×3 determinant: det(A) = a(ei-fh) - b(di-fg) + c(dh-eg) (cofactor expansion)
How to Use
- 1Select the matrix size (2×2 or 3×3).
- 2Enter each element of the matrix.
- 3Select the desired operation (addition, multiplication, determinant, inverse, etc.).
- 4The resulting matrix or scalar value is displayed.
Tips
- ✔Matrix multiplication is NOT commutative: AB ≠ BA in general.
- ✔If the determinant is 0, the inverse does not exist (singular matrix).
- ✔Multiplying by the identity matrix I returns the original matrix: AI = IA = A.
FAQ
Q. What does the determinant represent?
The determinant is a scalar value that indicates how much a linear transformation scales area (2D) or volume (3D). A determinant of 0 means dimension collapse (no inverse); a negative value means orientation is reversed.
Q. When is the inverse matrix used?
To solve systems of equations Ax = b as x = A⁻¹b. It is also used in computer graphics for reversing transformations, cryptography, and many engineering applications.
Q. Why is matrix multiplication not commutative?
Matrix multiplication represents composition of linear transformations. Since the order of transformations matters (e.g., rotating then translating differs from translating then rotating), AB ≠ BA in general.
Related Calculators
Percentage Calculator
Calculate percentages, discounts, and rate of change.
Ratio Calculator
Simplify ratios and solve proportions.
Quadratic Equation Solver
Solve quadratic equations in the form ax² + bx + c = 0.
Fraction Calculator
Calculate fraction arithmetic and simplification.
GCD/LCM Calculator
Calculate greatest common divisor and least common multiple.
Standard Deviation Calculator
Calculate mean, variance, and standard deviation of data.