Set matrices' orders and write down their entities to find the product (if possible) up to a 10x10 order through this matrix multiplication calculator.
Related
Use this free matrix multiplication calculator to quickly compute the product of two matrices, whether they contain integers, decimals, or complex numbers. This guide also explains the fundamentals, rules, and properties of matrix multiplication.
A matrix is a rectangular arrangement of numbers organized in rows and columns, enclosed in brackets [ ]. For example:
$$ \begin{bmatrix} 2 & 4 & 6 \\ 1 & 3 & 5 \end{bmatrix} $$
Other examples include:
$$ \begin{bmatrix} 7 & 8 \\ 9 & 10 \end{bmatrix}, \begin{bmatrix} 5 \\ 2 \end{bmatrix}, \begin{bmatrix} 12 \end{bmatrix} $$
Consider two matrices, A and B, where we want to multiply them to get a new matrix C. Each element of the product is calculated as:
$$ A = \begin{bmatrix} a_{11} & \cdots & a_{1n} \\ \vdots & \ddots & \vdots \\ a_{m1} & \cdots & a_{mn} \end{bmatrix}, \quad B = \begin{bmatrix} b_{11} & \cdots & b_{1p} \\ \vdots & \ddots & \vdots \\ b_{n1} & \cdots & b_{np} \end{bmatrix} $$
$$ C = A \cdot B = \begin{bmatrix} \sum_{k=1}^{n} a_{1k}b_{k1} & \cdots & \sum_{k=1}^{n} a_{1k}b_{kp} \\ \vdots & \ddots & \vdots \\ \sum_{k=1}^{n} a_{mk}b_{k1} & \cdots & \sum_{k=1}^{n} a_{mk}b_{kp} \end{bmatrix} $$
Example:
$$ \begin{bmatrix} 3 & 2 \\ 1 & 4 \end{bmatrix} \cdot \begin{bmatrix} 5 \\ 6 \end{bmatrix} = \begin{bmatrix} 27 \\ 29 \end{bmatrix} $$
Given:
$$ \begin{bmatrix} 7 \\ 3 \end{bmatrix}, \quad I = \begin{bmatrix} 1 & 0 \end{bmatrix} $$
Multiplication:
$$ \begin{bmatrix} 7 \\ 3 \end{bmatrix} \cdot \begin{bmatrix} 1 & 0 \end{bmatrix} = \begin{bmatrix} 7 & 0 \\ 3 & 0 \end{bmatrix} $$
Simply enter the matrices into our free online calculator for instant results.
No. The number of columns in the first matrix must equal the number of rows in the second matrix.
The product matrix has rows equal to the first matrix and columns equal to the second matrix.
Multiply each element of the matrix by a single scalar value.
Matrix multiplication is a core concept in linear algebra. Using this calculator, you can quickly compute products of any compatible matrices with step-by-step guidance.
Wikipedia: Matrix Multiplication – General Properties
Khan Academy: Matrix Transformations
Lumen Learning: Introduction to Matrices
Related
Links
Home Conversion Calculator About Calculator Online Blog Hire Us Knowledge Base Sitemap Sitemap TwoEmail us at
Contact Us© Copyrights 2026 by Calculator-Online.net