Chapter 3
Chapter 3
1. Introduction to Matrices
2. Types of Matrices
3. Matrix Operations
1. Addition of Matrices:
o Only possible if matrices have the same order.
o Add corresponding elements: A+B=[a11+b11a12+b12a21+b21a22+b22]A +
B = \begin{bmatrix} a_{11} + b_{11} & a_{12} + b_{12} \\ a_{21} +
b_{21} & a_{22} + b_{22} \end{bmatrix}A+B=[a11+b11a21+b21a12+b12
a22+b22]
2. Scalar Multiplication:
o Multiply every element of the matrix by a scalar kkk:
kA=[k⋅a11k⋅a12k⋅a21k⋅a22]kA = \begin{bmatrix} k \cdot a_{11} & k \cdot
a_{12} \\ k \cdot a_{21} & k \cdot a_{22} \end{bmatrix}kA=[k⋅a11k⋅a21
k⋅a12k⋅a22]
3. Matrix Multiplication:
o If AAA is of order m×nm \times nm×n and BBB is of order n×pn \times pn×p,
their product ABABAB is defined and has order m×pm \times pm×p.
o Element of ABABAB is given by: (AB)ij=∑k=1naik⋅bkj(AB)_{ij} =
\sum_{k=1}^n a_{ik} \cdot b_{kj}(AB)ij=k=1∑naik⋅bkj
1. Addition:
o Commutative: A+B=B+AA + B = B + AA+B=B+A.
o Associative: (A+B)+C=A+(B+C)(A + B) + C = A + (B +
C)(A+B)+C=A+(B+C).
2. Multiplication:
o Not Commutative: AB≠BAAB \neq BAAB BA in general.
o Associative: (AB)C=A(BC)(AB)C = A(BC)(AB)C=A(BC).
o Distributive: A(B+C)=AB+ACA(B + C) = AB + ACA(B+C)=AB+AC.
5. Transpose of a Matrix
7. Determinant of a Matrix
8. Inverse of a Matrix