Matrix multiplication takes the values in $A$ going across in each row and multiplying them by the values in $B$ going down the corresponding column
$a_{11}\\ ×\\ b_{11},\\ a_{12}\\ ×\\ b_{21}$
These values are added together to get the value in matrix $C$
$A$ has dimensions $m\\ ×\\ n$ and $B$ has dimensions $p\\ ×\\ q$, if $n = p$ they can be multiplied
The resultant matrix is $m\\ ×\\ q$ in size
e.g. a matrix of size $2\\ ×\\ 3$ multiplied by a matrix $3\\ ×\\ 4$ will have a size of $2\\ ×\\ 4$, the like terms are removed similar to vector addition
Matrices can only be multiplied if the number or rows for $A$ = the number of columns for $B$
The order is very important for matrix multiplication
$A\\ ×\\ B \neq B\\ ×\\ A$
e.g. let $A$ be size $2\\ ×\\ 3$ and $B$ be size $3\\ ×\\ 2$, $A\\ ×\\ B$ will be size $2\\ ×\\ 2$ but $B\\ ×\\ A$ will be size $3\\ ×\\ 3$
We can find any value of any term in the resulting matrix using this formula:
Earlier we discussed the existence of identities, however, each square matrix also has an inverse matrix which when they are multiplied together, give the identity matrix
The inverse of a matrix $A$ is denoted as the unique matrix $A^{-1}$ with the property that $AA^{-1} = I$
Inverse matrices are unique, there is only one for a given matrix and it also is the inverse for only one matrix
The order for inverse multiplication always gives the same result,
When the determinant for the given matrix is not $0$, than the equation can be solved by isolating the matrix with unknown variables by multiplying both sides by the inverse of the given matrix
If the determinant $= 0$ than the simultaneous equations have no solution
e.g. $x = 2y = 3, \\ -2x - 4y = 6$ has no solution as the discriminant of the matrix $[{1 \atop -2}{2 \atop -4}]$ is equal to 0 and so the matrix has no inverse