1. Matrix Addition, Matrix Subtraction example ( Enter your problem )
  1. Definition and Examples
  2. Example-2
Other related methods
  1. Addition of two matrix
  2. Multiplication of two matrix
  3. Division of two matrix
  4. Power of a matrix
  5. Transpose of a matrix
  6. Determinant of a matrix
  7. Adjoint of a matrix
  8. Inverse of a matrix
  9. Prove that any two matrix expression is equal or not
  10. Minor of a matrix
  11. Cofactor of a matrix
  12. Trace of a matrix

2. Example-2
(Next example)

1. Definition and Examples





1. Addition of matrices

If `A=[[a_11,a_12,a_13],[a_21,a_22,a_23]]` and `B=[[b_11,b_12,b_13],[b_21,b_22,b_23]]` then

`A + B = [[a_11,a_12,a_13],[a_21,a_22,a_23]]+[[b_11,b_12,b_13],[b_21,b_22,b_23]]`

`= [[a_11+b_11,a_12+b_12,a_13+b_13],[a_21+b_21,a_22+b_22,a_23+b_23]]`

2. Substraction of matrices

If `A=[[a_11,a_12,a_13],[a_21,a_22,a_23]]` and `B=[[b_11,b_12,b_13],[b_21,b_22,b_23]]` then

`A - B = [[a_11,a_12,a_13],[a_21,a_22,a_23]]-[[b_11,b_12,b_13],[b_21,b_22,b_23]]`

`= [[a_11-b_11,a_12-b_12,a_13-b_13],[a_21-b_21,a_22-b_22,a_23-b_23]]`

3. Properties of Matrix Addition

1. Matrix Addition is Commutative
`A+B = B+A`

2. Matrix Addition is Associative
`A+(B+C) = (A+B)+C`

3. `A+O=O+A=A`

5. `A+B=O` if and only if `B=-A`
Examples
1. Find `A + B` ...
`A=[[3,1,1],[-1,2,1],[1,1,1]]`,`B=[[5,0,-2],[7,-6,0],[1,1,2]]`


Solution:
`A + B` = 
`3``1``1`
`-1``2``1`
`1``1``1`
 + 
`5``0``-2`
`7``-6``0`
`1``1``2`
 = 
`8``1``-1`
`6``-4``1`
`2``2``3`



2. Find `A - B` ...
`A=[[2,3,1],[0,5,6],[1,1,2]]`,`B=[[2,1,1],[-1,2,1],[1,1,1]]`


Solution:
`A - B` = 
`2``3``1`
`0``5``6`
`1``1``2`
 - 
`2``1``1`
`-1``2``1`
`1``1``1`
 = 
`0``2``0`
`1``3``5`
`0``0``1`





This material is intended as a summary. Use your textbook for detail explanation.
Any bug, improvement, feedback then Submit Here



2. Example-2
(Next example)





Share this solution or page with your friends.


 
Copyright © 2023. All rights reserved. Terms, Privacy
 
 

.