In this article, we will do a matrix addition. Addition between two matrixes is feasible if and only if they have the same order or the dimensions that is they must have the same number of rows and columns. Addition if the matrix is feasible by adding the element of another matrix if they have the same order.
Suppose Mohan has two shops at places A and B. Each shop sells shoes for men and women in three different price categories. The quantities sell by each shop are represented as matrices given below:
Shop 1:
Shop 2:
Suppose Mohan wants to know the total sales of shoes in each price categories. So, this can be represented in the matrix form as
This new matrix is the sum of the above two matrices. So, the sum of two matrices is obtained by adding the corresponding elements of the given matrices.
Thus if is a 2*2 matrix and is another 2*2 matrix. Then, we define
In general, if matrix and matrix are the two matrices of the same order, say m*n.
Thus, the sum of two matrices of A and B is defined as a matrix where for all the values of i and j.
Properties of addition of matrices
1. Commutative Law
It means that if , are matrices of the same order, say m*n, then A+B=B+A
Thus, A+B=
B+A=
2. Associative Law
It means that 3 matrices that is , , are matrices of same order, say m*n then (A+B) +C=A+ (B+C).
Thus, (A+B) +C= +
=+ = A+ (B+C)
Conditions for Addition of matrices
- Two matrices should be of same order (number of rows=number of columns).
- Add the corresponding element of other matrices.
Addition of matrix of order 2*2
Example 1: Given and Find A+B.
Solution:
Addition of matrix of order 3*3
Example 2: and Find A+B.
Solution:
Exercise
- Let and Find A+b.
- Let and Find A+B.
- Let and Find A+B.
- Let and and Show that A+B=B+A.
- Let , and Show that (A+B) +C=A+ (B+C).
Leave a Reply