Adding Entries in Matching Positions
Matrix addition combines entries in the same positions. It is defined only for matrices with the same number of rows and columns.
The result of the addition is a new matrix of the same order, where each element is the sum of the corresponding elements (elements in the same position) from the original matrices.
Formal Definition of Matrix Addition
Two matrices, say matrix and matrix , can be added if and only if both matrices have the same order.
Suppose matrix is of order with elements (element in the -th row and -th column), and matrix is also of order with elements .
Call their sum matrix and write . Matrix also has dimensions , with entries defined by:
For each position, the formula adds the entry from to the corresponding entry from .
In symbols, and imply . Every output entry therefore has one corresponding input entry in each matrix.
How to Perform Matrix Addition
To add two matrices, follow these steps:
- Ensure Same Order: Check if both matrices have the same number of rows and columns. If not, addition cannot be performed.
- Add Corresponding Elements: Add the elements that are in the same row and column position from both matrices.
- Form the Resultant Matrix: Arrange the sums of these elements into a new matrix of the same order.
Example of Matrix Addition
Suppose we have two matrices, and , as follows:
Both matrices are of order ( rows and columns), so they can be added.
Then, is:
The matrix above is the sum .
Matrices That Cannot Be Added
These two matrices have different orders:
Matrix has dimensions , while matrix has dimensions . Their column counts differ, so is not defined.
Properties of Matrix Addition
Matrix addition follows the same basic laws as addition of real numbers. Let , , and have the same dimensions, and let be the zero matrix of those dimensions.
-
Commutative Property: The order of matrix addition does not affect the result.
Adding matrix to produces the same matrix as adding matrix to .
-
Associative Property: The grouping in the addition of three or more matrices does not affect the result.
You can add and first, then add the result to , or add and first, then add to the result. The final outcome will be the same.
-
Existence of an Identity Element (Zero Matrix): The zero matrix is the identity element for addition.
Adding the zero matrix leaves unchanged.
This zero matrix plays a role similar to the number in the addition of numbers.
-
Existence of an Additive Inverse (Opposite of a Matrix): Every matrix has an additive inverse, denoted as , which when added to results in the zero matrix .
The matrix is a matrix where each element is the opposite (negative) of the corresponding elements of matrix .
For example, if is an element of , then is an element of .
Exercises
Problem 1
Given the following matrices:
Calculate and . Then, determine if can be calculated and provide your explanation.
Problem 2
Determine the values of and from the following matrix addition:
Problem 3
For the matrix below, determine (the additive inverse of ) and prove that . Here, is the zero matrix of the same order.
Worked Solutions
Problem 1
Given matrices:
Addition of matrix and ():
Adding a negative entry subtracts its opposite, so the corresponding sums become:
Addition of matrix and ():
(Commutative property proven: )
Addition of matrix and ():
Cannot be calculated. Matrix is of order , while matrix is of order . Since their orders are different, the addition cannot be performed.
Problem 2
Given the matrix addition:
Perform matrix addition on the left side:
Based on the equality of two matrices, corresponding elements must be equal:
For the element in row , column :
For the element in row , column : (already consistent).
For the element in row , column :
For the element in row , column :
The values are , , and .
Problem 3
The given matrix is:
The additive inverse of , which is , is:
Proof that :
The result is the zero matrix of order . Proven.