Matricu je moguće pomnožiti matricom u slučaju da je broj kolona matrice A jednak broju vrsta matrice B (tj. ako je ). Slično, matricu B je moguće pomnožiti matricom A samo ako je .
Proizvod matrica i je matrica i to se zapisuje čiji se elementi određuju na osnovu sledeće formule:
Tada se množi prvi element $i$-te vrsta matrice $A,$ tj. element $a_{i1}$ s prvim elementom $j$-te kolone matrice $B,$ tj. elementom $b_{1j},$ zatim se množi drugi element $i$-te vrsta matrice $A,$ tj. element $a_{i2}$ s drugim elementom $j$-te kolone matrice $B$ tj.elementom $b_{2j}$ i tako redom. Zbir svih ovih proizvoda predstavlja element $c_{ij}$ ($1 ≤ i ≤ m,$ $1 ≤ j ≤ q $), kao što je i dato u prethodnoj formuli.
$\textbf{Primer.}\,\,\,$ Neka su date matrice $$ A=\left[ \begin{array}{rrr} 1 & -1 & 0 \\ 0 & 3 & 2 \\ 4 & -3 & 1 \end{array}\right ] \text{ i } B=\left[ \begin{array}{rr} 1 & 4 \\ -1 & 2 \\ 3 & 6 \end{array}\right ]. $$ $\textbf{Rešenje.}\,\,\,$ Za date matrice moguće je izračunati proizvod matrica $A\cdot B,$ jer je broj kolona matrice $A$ jednak broju vrsta matrice $B.$ Množenje $B\cdot A$ nije moguće izvršiti jer broj kolona matrice $B$ nije jednak broju vrsta matrice $A.$ Tada imamo \begin{equation*} \begin{aligned} A\cdot B&=\left[ \begin{array}{rrr} 1 & -1 & 0 \\ 0 & 3 & 2 \\ 4 & -3 & 1 \end{array}\right ] \cdot\left[ \begin{array}{rr} 1 & 4 \\ -1 & 2 \\ 3 & 6 \end{array}\right ]=\\[2mm] &=\left[ \begin{array}{ll} 1\cdot 1 + (-1)\cdot (-1) + 0\cdot 3 & 1\cdot 4 + (-1)\cdot 2 + 0\cdot 6 \\ 0\cdot 1 + 3\cdot(-1) + 2\cdot 3 & 0\cdot 4 + 3\cdot 2 + 2\cdot 6 \\ 4\cdot 1 + (-3)\cdot (-1) + 1\cdot 3 & 4\cdot 4 + (-3)\cdot 2 +1\cdot 6 \end{array}\right ]=\\[2mm] &=\left[ \begin{array}{ll} 2 & 2 \\ 3 & 18 \\ 10 & 16 \end{array}\right ]. \end{aligned} \end{equation*}
$\textbf{Stav.}$ Za bilo koje dve kvadratne matrice $A$ i $B$ istog tipa važi $$ \det (A\cdot B)=\det (A)\cdot\det (B). $$ $\textbf{Dokaz.}$ Izvešćemo dokaz za slučaj $n=2.$ Neka je $$ A=\left[ \begin{array}{cc} a_{11} & a_{12} \\ a_{21} & a_{22} \end{array}\right ] \text{ i } B= \left[ \begin{array}{cccccc} b_{11} & b_{12} \\ b_{21} & b_{22} \end{array}\right]. $$ Tada je $$ A\cdot B=\left[ \begin{array}{cc} a_{11} b_{11}+a_{12}b_{21} & a_{11}b_{12}+ a_{12}b_{22}\\ a_{21}b_{11}+a_{22} b_{21}& a_{21}b_{12}+a_{22} b_{22} \end{array}\right ]. $$
Odavde dobijamo \begin{equation*} \begin{aligned} \det (A\cdot B)&=\left | \begin{array}{cc} a_{11} b_{11}+a_{12}b_{21} & a_{11}b_{12}+ a_{12}b_{22}\\ a_{21}b_{11}+a_{22} b_{21}& a_{21}b_{12}+a_{22} b_{22} \end{array}\right |=\\[2mm] &=(a_{11} b_{11}+a_{12}b_{21})(a_{21}b_{12}+a_{22} b_{22})-\\ &\quad-(a_{21}b_{11}+a_{22} b_{21})(a_{11}b_{12}+ a_{12}b_{22})=\\[2mm] &=a_{11} b_{11}a_{21}b_{12}+a_{11} b_{11}a_{22} b_{22}+a_{12}b_{21}a_{21}b_{12}+a_{12}b_{21}a_{22} b_{22}-\\ &\quad-a_{21}b_{11}a_{11}b_{12} -a_{21}b_{11}a_{12}b_{22} -a_{22} b_{21}a_{11}b_{12} -a_{22} b_{21}a_{12}b_{22}=\\[2mm] &=a_{11}a_{22}(b_{11}b_{22}-b_{21}b_{12})-a_{21}a_{12}(b_{11}b_{22}-b_{21}b_{12})=\\[2mm] &=(a_{11}a_{22}-a_{21}a_{12})(b_{11}b_{22}-b_{21}b_{12})=\\[2mm] &=\left| \begin{array}{cc} a_{11} & a_{12} \\ a_{21} & a_{22} \end{array}\right |\cdot\left| \begin{array}{cccccc} b_{11} & b_{12} \\ b_{21} & b_{22} \end{array}\right|=\\[2mm] &=\det (A)\cdot\det (B).\hfill\square \end{aligned} \end{equation*} Iz ovog stava proizilazi $\color{red}{\text{pravilo za množenje determinanti}}$.