Element Wise Matrix Addition/Subtraction and NULL Matrix
Element Wise Matrix Addition/Subtraction between any number of Matrices can be done if all the Matrices have Same Number of Rows and Same Number of Columns. The Resultant Matrix also has the Same Number of Rows and Columns as the input Matrices.
Given 2 \(M \times N\) Matrix \(A\) having elements \(a_{ij}\) and Matrix \(B\) having elements \(b_{ij}\) as following
NULL Matrices can be/are also represented by a Numerical Value 0.
Adding any Matrix to a NULL Matrix or Subtracting a NULL Matrix from any Matrix gives back the Original Matrix.
Subtracting a Matrix from a NULL Matrix gives Negative of the Matrix. For example, given a \(M \times N\) Matrix \(A\), following are the results of performing Addition/Subtraction operations on Matrix \(A\) with a \(M \times N\) NULL Matrix.