Matrix Addition and Subtraction
First, two matrices are identical if they have the same order (dimensions) and bij=aij. Intuitively, if the matrices have the same shape, and all of the elements in A are the same as all of the elemtns in B the matrices are equal.
If two matrices have the same order, it is possible to apply element-wise additional and subtraction operations. For example:
A=⎣⎡1041269⎦⎤
and
B=⎣⎡528413⎦⎤
then
A+B=⎣⎡10+54+21+82+46+19+3⎦⎤=⎣⎡15696712⎦⎤
A−B=⎣⎡10−54−21−82−46−19−3⎦⎤=⎣⎡52−7−256⎦⎤
Also implicit in the above: A+B=B+A.
We can also identify a special matrix - the zero matrix.
C=⎣⎡000000⎦⎤
Using the zero matrix, it is also possible to define:
A+C=A, assuming that \textbf{A} and textbf{C} are the same order.
Supplemental Video

Multiplication by a scalar
It is possible to multiple a scalar with a matrix. For any scalar λ1,
λ1A⎣⎡λ1a11λ1a12λ1a13λ1a21λ1a22λ1a23⎦⎤
and
λ1A=Aλ1
For example:
3A=⎣⎡3(10)3(4)3(1)3(2)3(6)3(9)⎦⎤=⎣⎡3012361827⎦⎤
The final example illustrates the element-wise multiplication of a matrix with a scalar. This is not matrix multiplication.