Matrix addition is a fundamental operation in matrix algebra where two or more matrices are combined to produce a new matrix. This operation can only be performed if the matrices being added have the same size or order.
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.
Two matrices, let's say matrix A and matrix B, can be added if and only if both matrices have the same order.
Suppose matrix A is of order m×n with elements aij (element in the i-th row and j-th column), and matrix B is also of order m×n with elements bij.
Then, the sum of matrix A and matrix B, which we call matrix C, is written as C=A+B. Matrix C will also be of order m×n, with elements cij defined as:
cij=aij+bij
This means that each element in the resulting matrix is obtained by adding the elements that are in the same position from the two matrices being added.
Matrix addition has several important properties, similar to the properties of addition for real numbers. Let A, B, and C be matrices of the same order, and O be the zero matrix (a matrix where all elements are zero) of the same order as A, B, and C.
Commutative Property: The order of matrix addition does not affect the result.
A+B=B+A
This means that adding matrix A to B will produce the same matrix as adding matrix B to A.
Associative Property: The grouping in the addition of three or more matrices does not affect the result.
(A+B)+C=A+(B+C)
This means you can add A 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): There exists a zero matrix O that acts as the identity element in addition.
A+O=O+A=A
This means that if a matrix is added to a zero matrix (of the same order), the result
is the matrix itself.
This zero matrix plays a role similar to the number 0 in the addition of numbers.
Existence of an Additive Inverse (Opposite of a Matrix): Every matrix A has an additive inverse, denoted as −A, which when added to A results in the zero matrix O.
Cannot be calculated. Matrix A is of order 2×3, while matrix C is of order 2×2. Since their orders are different, the addition A+C cannot be performed.
Problem2
Given the matrix addition:
[2x−153y]+[4z−27]=[10631]
Perform matrix addition on the left side:
[2x+4−1+z5+(−2)3y+7]=[10631]
[2x+4−1+z33y+7]=[10631]
Based on the equality of two matrices, corresponding elements must be equal:
For the element in row 1, column 1: 2x+4=10
2x=10−4
2x=6
x=3
For the element in row 1, column 2: 3=3 (already consistent).
For the element in row 2, column 1: −1+z=6
z=6+1
z=7
For the element in row 2, column 2: 3y+7=1
3y=1−7
3y=−6
y=−2
Thus, the values are x=3, y=−2, and z=7.
Problem3
Given matrix P=[13−20].
The additive inverse of P, which is −P, is:
−P=[−1−3−(−2)−0]=[−1−320]
Proof that P+(−P)=O:
P+(−P)=[13−20]+[−1−320]
=[1+(−1)3+(−3)−2+20+0]
=[0000]
The result is the zero matrix O of order 2×2. Proven.