SlideShare uma empresa Scribd logo
1 de 18
Presentation on
Matrix and it`sApplications
Presented by
Pritom Chaki
Roll: 19021060
MBA (Professional) Batch-21
Bangladesh University of Professionals
1
Contents
Definition of a Matrix
Operations of Matrices
Determinant of Matrix
Inverse of Matrix
Linear System to Matrix
Unique Properties of Matrix
Applications of Matrices
2
Matrix
(Basic
Definition)
Matrices are the rectangular agreement of
numbers, expressions, symbols which are
arranged in columns and rows.
A =
𝑎11 ⋯ 𝑎1𝑛
𝑎21 ⋯ 𝑎2𝑛
…
𝑎 𝑚1
…
…
…
𝑎 𝑚𝑛
= {𝐴𝑖𝑗}
3
Operations
with
Matrices
(Sum,
Difference)
If A and B have the same dimensions, then their
sum, A + B, is obtained by adding
corresponding entries.
In symbols, (𝑨 + 𝑩)𝒊𝒋 = 𝒂𝒊𝒋 + 𝒃𝒊𝒋.
If A and B have the same dimensions, then their
difference, A - B, is obtained by subtracting
corresponding entries.
In symbols, (𝑨 − 𝑩)𝒊𝒋 = 𝒂𝒊𝒋 - 𝒃𝒊𝒋.
4
Operations
with
Matrices
(Sum,
Difference)
Sum:
3 4 1
6 7 0
+
−1 0 7
6 5 1
=
2 4 8
12 12 1
The matrix 0 whose entries are all zero. Then, for all A , A + 0 =A
Difference:
2 4 8
12 12 1
-
3 4 1
6 7 0
=
−1 0 7
6 5 1
The matrix 0 whose entries are all zero. Then, for all A , A - 0 =A
5
Operations
with Matrices
(Scalar
Multiple)
If A is a matrix and r is a number (sometimes called a
scalar in this context), then the scalar multiple, rA, is
obtained by multiplying every entry in A by r.
In symbols, (𝑟𝐴)𝑖𝑗 = 𝑟𝑎𝑖𝑗 .
Example:
2
3 4 1
6 7 0
=
6 8 2
12 14 0
6
Operations
with Matrices
(Product)
If A has dimensions k × m and B has dimensions m × n,
then the product AB is defined, and has dimensions k × n.
The entry (𝑨𝑩)𝒊𝒋 is obtained by multiplying row i of A by
column j of B, which is done by multiplying corresponding
entries together and then adding the results i.e.,
Example:
(𝑎𝑖1 𝑎𝑖2 … 𝑎𝑖𝑚)
𝑏1𝑗
𝑏2𝑗
…
𝑏 𝑚𝑗
= 𝑎𝑖1 𝑏1𝑗 + 𝑎𝑖2 𝑏2𝑗 + ⋯ +𝑎𝑖𝑚 𝑏 𝑚𝑗
7
Operations
with
Matrices
(Product)
Example:
(𝒂𝒊𝟏 𝒂𝒊𝟐 … 𝒂𝒊𝒎)
𝒃 𝟏𝒋
𝒃 𝟐𝒋
…
𝒃 𝒎𝒋
= 𝒂𝒊𝟏 𝒃 𝟏𝒋 + 𝒂𝒊𝟐 𝒃 𝟐𝒋 + ⋯ +𝒂𝒊𝒎 𝒃 𝒎𝒋
𝒂 𝒃
𝒄 𝒅
𝒆 𝒇
𝑨 𝑩
𝑪 𝑫
=
𝒂𝑨 + 𝒃𝑪 𝒂𝑩 + 𝒃𝑫
𝒄𝑨 + 𝒅𝑪 𝒄𝑩 + 𝒃𝑫
𝒆𝑨 + 𝒇𝑪 𝒆𝑩 + 𝒇𝑫
8
Operations
with Matrices
(Transpose)
The transpose, 𝑨 𝑻 , of a matrix A is the matrix
obtained from A by writing its rows as columns.
If A is an k×n matrix and B = 𝑨 𝑻 then B is the n×k
matrix with 𝒃𝒊𝒋= 𝒂𝒋𝒊.
If 𝑨 𝑻=A, then A is symmetric
𝒂 𝟏𝟏 𝒂 𝟏𝟐 𝒂 𝟏𝟑
𝒂 𝟐𝟏 𝒂 𝟐𝟐 𝒂 𝟐𝟑
𝑻
=
𝒂 𝟏𝟏 𝒂 𝟐𝟏
𝒂 𝟏𝟐 𝒂 𝟐𝟐
𝒂 𝟏𝟑 𝒂 𝟐𝟑
9
Laws of
Matrix
Algebra
The matrix addition, subtraction, scalar
multiplication and matrix multiplication, have the
following properties.
Associative Laws:
A+ (B + C) = (A +B) + C, (AB)C = A(BC).
Commutative Law for Addition:
A + B = B + A
Distributive Laws:
A(B + C) = AB + AC, (A + B)C = AC + BC
10
Determinant
of Matrix
Determinant is a scalar
Defined for a square matrix
Is the sum of selected products of the elements of
the matrix each product being multiplied by +1 or -1
𝑑𝑒𝑡
𝑎 𝑏
𝑐 𝑑
= ad - bc
11
Inverse of
Matrix
Definition: An inverse matrix 𝑨−𝟏
which can be found
only for a square and a non-singular matrix A, is a
unique matrix satisfying the relationship
A 𝑨−𝟏
= 𝑰 = 𝑨−𝟏
A
The formula for deriving the inverse is
𝑨−𝟏
=
𝟏
𝒅𝒆𝒕(𝑨)
𝒂𝒅𝒋(𝑨)
12
System of
Equations in
Matrix Form
 The system of linear equations:
a11x1 + a12x2+a13x3+….+a1nxn = b1
a21x1 + a22x2+a23x3+….+a2nxn = b2
………………………………………
ak1x1 + ak2x2+ak3x3+….+aknxn = bk
Can be rewritten as the matrix equation Ax = b, where
A =
𝑎11 … 𝑎1𝑛
𝑎21
…
…
…
𝑎2𝑛
…
𝑎 𝑘1 … 𝑎 𝑘𝑛
, x =
𝑥1
𝑥2
…
𝑥 𝑛
, b =
𝑏1
𝑏2
…
𝑏 𝑘
13
Example:
Linear
System to
Matrix
Equation =
4𝑥 + 𝑦 + 2𝑧 = 4
5𝑥 + 2𝑦 + 𝑧 = 4
𝑥 + 3𝑧 = 3
A =
4 1 2
5 2 1
1 0 3
, x =
𝑥
𝑦
𝑧
, b =
4
4
3
AX = d
4 1 2
5 2 1
1 0 3
𝑥
𝑦
𝑧
=
4
4
3
14
Unique
Properties of
Matrices
In normal algebra , if we multiply two nonzero values,
then the outcome will never be a zero .
But if we multiply two non-zero values in matrix , then
the outcome can be zero.
Example: 𝑨 =
𝟑 𝟑
−𝟑 𝟑
and B=
𝟏 𝟏
𝟏 𝟏
AB =
𝟑 𝟑
−𝟑 𝟑
*
𝟏 𝟏
𝟏 𝟏
=
𝟑 ∗ 𝟏 + 𝟏 ∗ (−𝟑) 𝟑 ∗ 𝟏 + −𝟑 ∗ 𝟏
−𝟑 ∗ 𝟏 + 𝟑 ∗ 𝟏 −𝟑 ∗ 𝟏 + 𝟑 ∗ 𝟏
=
𝟑 − 𝟑 𝟑 − 𝟑
−𝟑 + 𝟑 −𝟑 + 𝟑
=
𝟎 𝟎
𝟎 𝟎
15
Application
of Matrix
Field of Geology
Taking Seismic Surveys
Plotting Graphs & Statistics
Scientific Analysis
Field of Statistics & Economics
Presenting real world data such as People's habit, traits
& survey data
Calculating GDP
16
Application
of Matrix
Field of Animation
Operating 3D software & Tools
Performing 3D scaling/Transforming
Giving reflection, rotation
Physics & Electronics
Elementary particles in quantum field theory
Traditional mesh & nodal analysis
Behavior of electronic components
17
18
ThankYou
foryourattention

Mais conteúdo relacionado

Mais procurados

Matrix basic operations
Matrix basic operationsMatrix basic operations
Matrix basic operations
Jessica Garcia
 
Eigen values and eigenvectors
Eigen values and eigenvectorsEigen values and eigenvectors
Eigen values and eigenvectors
Amit Singh
 
Applications of Matrices
Applications of MatricesApplications of Matrices
Applications of Matrices
santhosh kumar
 
Eigen values and eigen vectors
Eigen values and eigen vectorsEigen values and eigen vectors
Eigen values and eigen vectors
Riddhi Patel
 
Matrix Operations
Matrix OperationsMatrix Operations
Matrix Operations
Ron Eick
 

Mais procurados (20)

Matrix and it's Application
Matrix and it's ApplicationMatrix and it's Application
Matrix and it's Application
 
Matrix basic operations
Matrix basic operationsMatrix basic operations
Matrix basic operations
 
Matrices ppt
Matrices pptMatrices ppt
Matrices ppt
 
Eigen values and eigenvectors
Eigen values and eigenvectorsEigen values and eigenvectors
Eigen values and eigenvectors
 
Matrix presentation By DHEERAJ KATARIA
Matrix presentation By DHEERAJ KATARIAMatrix presentation By DHEERAJ KATARIA
Matrix presentation By DHEERAJ KATARIA
 
INTRODUCTION TO MATRICES, TYPES OF MATRICES,
INTRODUCTION TO MATRICES, TYPES OF MATRICES, INTRODUCTION TO MATRICES, TYPES OF MATRICES,
INTRODUCTION TO MATRICES, TYPES OF MATRICES,
 
Applications of Matrices
Applications of MatricesApplications of Matrices
Applications of Matrices
 
Introduction of matrices
Introduction of matricesIntroduction of matrices
Introduction of matrices
 
Eigen values and eigen vectors
Eigen values and eigen vectorsEigen values and eigen vectors
Eigen values and eigen vectors
 
Matrix and its operation (addition, subtraction, multiplication)
Matrix and its operation (addition, subtraction, multiplication)Matrix and its operation (addition, subtraction, multiplication)
Matrix and its operation (addition, subtraction, multiplication)
 
Vector space
Vector spaceVector space
Vector space
 
Solving system of linear equations
Solving system of linear equationsSolving system of linear equations
Solving system of linear equations
 
Matrices and determinants
Matrices and determinantsMatrices and determinants
Matrices and determinants
 
Matrices
MatricesMatrices
Matrices
 
Matrices
MatricesMatrices
Matrices
 
Vector spaces
Vector spaces Vector spaces
Vector spaces
 
Matrices And Application Of Matrices
Matrices And Application Of MatricesMatrices And Application Of Matrices
Matrices And Application Of Matrices
 
Matrix Operations
Matrix OperationsMatrix Operations
Matrix Operations
 
Maths-->>Eigenvalues and eigenvectors
Maths-->>Eigenvalues and eigenvectorsMaths-->>Eigenvalues and eigenvectors
Maths-->>Eigenvalues and eigenvectors
 
Matrix.
Matrix.Matrix.
Matrix.
 

Semelhante a Matrix and It's Applications

Beginning direct3d gameprogrammingmath05_matrices_20160515_jintaeks
Beginning direct3d gameprogrammingmath05_matrices_20160515_jintaeksBeginning direct3d gameprogrammingmath05_matrices_20160515_jintaeks
Beginning direct3d gameprogrammingmath05_matrices_20160515_jintaeks
JinTaek Seo
 
Linear Algebra and Matrix
Linear Algebra and MatrixLinear Algebra and Matrix
Linear Algebra and Matrix
itutor
 
0.3.e,ine,det.
0.3.e,ine,det.0.3.e,ine,det.
0.3.e,ine,det.
m2699
 
For the following matrices, determine a cot of basis vectors for the.pdf
For the following matrices, determine a cot of basis vectors for  the.pdfFor the following matrices, determine a cot of basis vectors for  the.pdf
For the following matrices, determine a cot of basis vectors for the.pdf
eyebolloptics
 

Semelhante a Matrix and It's Applications (20)

1. Linear Algebra for Machine Learning: Linear Systems
1. Linear Algebra for Machine Learning: Linear Systems1. Linear Algebra for Machine Learning: Linear Systems
1. Linear Algebra for Machine Learning: Linear Systems
 
MATRICES-MATHED204.pptx
MATRICES-MATHED204.pptxMATRICES-MATHED204.pptx
MATRICES-MATHED204.pptx
 
Operation on Matrices.pptx
Operation on Matrices.pptxOperation on Matrices.pptx
Operation on Matrices.pptx
 
Matrices
MatricesMatrices
Matrices
 
Matrices 1.pdf
Matrices 1.pdfMatrices 1.pdf
Matrices 1.pdf
 
Beginning direct3d gameprogrammingmath05_matrices_20160515_jintaeks
Beginning direct3d gameprogrammingmath05_matrices_20160515_jintaeksBeginning direct3d gameprogrammingmath05_matrices_20160515_jintaeks
Beginning direct3d gameprogrammingmath05_matrices_20160515_jintaeks
 
Matrix algebra
Matrix algebraMatrix algebra
Matrix algebra
 
Bba i-bm-u-2- matrix -
Bba i-bm-u-2- matrix -Bba i-bm-u-2- matrix -
Bba i-bm-u-2- matrix -
 
Engg maths k notes(4)
Engg maths k notes(4)Engg maths k notes(4)
Engg maths k notes(4)
 
Linear Algebra Presentation including basic of linear Algebra
Linear Algebra Presentation including basic of linear AlgebraLinear Algebra Presentation including basic of linear Algebra
Linear Algebra Presentation including basic of linear Algebra
 
Linear Algebra and Matrix
Linear Algebra and MatrixLinear Algebra and Matrix
Linear Algebra and Matrix
 
BASIC CONCEPT OF MATRIX.pptx
BASIC CONCEPT OF MATRIX.pptxBASIC CONCEPT OF MATRIX.pptx
BASIC CONCEPT OF MATRIX.pptx
 
Advanced algebra
Advanced algebraAdvanced algebra
Advanced algebra
 
0.3.e,ine,det.
0.3.e,ine,det.0.3.e,ine,det.
0.3.e,ine,det.
 
For the following matrices, determine a cot of basis vectors for the.pdf
For the following matrices, determine a cot of basis vectors for  the.pdfFor the following matrices, determine a cot of basis vectors for  the.pdf
For the following matrices, determine a cot of basis vectors for the.pdf
 
4 mal1
4 mal1 4 mal1
4 mal1
 
M a t r i k s
M a t r i k sM a t r i k s
M a t r i k s
 
Linear Algebra and its use in finance:
Linear Algebra and its use in finance:Linear Algebra and its use in finance:
Linear Algebra and its use in finance:
 
Module 1 Theory of Matrices.pdf
Module 1 Theory of Matrices.pdfModule 1 Theory of Matrices.pdf
Module 1 Theory of Matrices.pdf
 
Appendix B Matrices And Determinants
Appendix B  Matrices And DeterminantsAppendix B  Matrices And Determinants
Appendix B Matrices And Determinants
 

Mais de Pritom Chaki

Mais de Pritom Chaki (9)

Blockchain Technology and its Business Application
Blockchain Technology and  its Business ApplicationBlockchain Technology and  its Business Application
Blockchain Technology and its Business Application
 
Social Media & Privacy in Bangladesh
Social Media & Privacy in BangladeshSocial Media & Privacy in Bangladesh
Social Media & Privacy in Bangladesh
 
Leadership of Lord Krishna
Leadership of Lord Krishna Leadership of Lord Krishna
Leadership of Lord Krishna
 
Presentation skill-development (BUP)
Presentation skill-development (BUP)Presentation skill-development (BUP)
Presentation skill-development (BUP)
 
Global and local alignment (bioinformatics)
Global and local alignment (bioinformatics)Global and local alignment (bioinformatics)
Global and local alignment (bioinformatics)
 
Transmission media (data communication)
Transmission media (data communication)Transmission media (data communication)
Transmission media (data communication)
 
OSI 7 Layer Model
OSI 7 Layer ModelOSI 7 Layer Model
OSI 7 Layer Model
 
Object Orinted Programing(OOP) concepts \
Object Orinted Programing(OOP) concepts \Object Orinted Programing(OOP) concepts \
Object Orinted Programing(OOP) concepts \
 
Object Oriented Programing JAVA presentaion
Object Oriented Programing JAVA presentaionObject Oriented Programing JAVA presentaion
Object Oriented Programing JAVA presentaion
 

Último

Salient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsSalient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functions
KarakKing
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
heathfieldcps1
 

Último (20)

Salient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsSalient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functions
 
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdf
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdfUnit 3 Emotional Intelligence and Spiritual Intelligence.pdf
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdf
 
On National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan FellowsOn National Teacher Day, meet the 2024-25 Kenan Fellows
On National Teacher Day, meet the 2024-25 Kenan Fellows
 
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxHMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
 
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptx
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptxCOMMUNICATING NEGATIVE NEWS - APPROACHES .pptx
COMMUNICATING NEGATIVE NEWS - APPROACHES .pptx
 
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptxHMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
HMCS Vancouver Pre-Deployment Brief - May 2024 (Web Version).pptx
 
Fostering Friendships - Enhancing Social Bonds in the Classroom
Fostering Friendships - Enhancing Social Bonds  in the ClassroomFostering Friendships - Enhancing Social Bonds  in the Classroom
Fostering Friendships - Enhancing Social Bonds in the Classroom
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibit
 
Single or Multiple melodic lines structure
Single or Multiple melodic lines structureSingle or Multiple melodic lines structure
Single or Multiple melodic lines structure
 
Tatlong Kwento ni Lola basyang-1.pdf arts
Tatlong Kwento ni Lola basyang-1.pdf artsTatlong Kwento ni Lola basyang-1.pdf arts
Tatlong Kwento ni Lola basyang-1.pdf arts
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
 
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfUGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POS
 
OSCM Unit 2_Operations Processes & Systems
OSCM Unit 2_Operations Processes & SystemsOSCM Unit 2_Operations Processes & Systems
OSCM Unit 2_Operations Processes & Systems
 
REMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptxREMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptx
 
How to Add New Custom Addons Path in Odoo 17
How to Add New Custom Addons Path in Odoo 17How to Add New Custom Addons Path in Odoo 17
How to Add New Custom Addons Path in Odoo 17
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
 
latest AZ-104 Exam Questions and Answers
latest AZ-104 Exam Questions and Answerslatest AZ-104 Exam Questions and Answers
latest AZ-104 Exam Questions and Answers
 
Towards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptxTowards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptx
 

Matrix and It's Applications

  • 1. Presentation on Matrix and it`sApplications Presented by Pritom Chaki Roll: 19021060 MBA (Professional) Batch-21 Bangladesh University of Professionals 1
  • 2. Contents Definition of a Matrix Operations of Matrices Determinant of Matrix Inverse of Matrix Linear System to Matrix Unique Properties of Matrix Applications of Matrices 2
  • 3. Matrix (Basic Definition) Matrices are the rectangular agreement of numbers, expressions, symbols which are arranged in columns and rows. A = 𝑎11 ⋯ 𝑎1𝑛 𝑎21 ⋯ 𝑎2𝑛 … 𝑎 𝑚1 … … … 𝑎 𝑚𝑛 = {𝐴𝑖𝑗} 3
  • 4. Operations with Matrices (Sum, Difference) If A and B have the same dimensions, then their sum, A + B, is obtained by adding corresponding entries. In symbols, (𝑨 + 𝑩)𝒊𝒋 = 𝒂𝒊𝒋 + 𝒃𝒊𝒋. If A and B have the same dimensions, then their difference, A - B, is obtained by subtracting corresponding entries. In symbols, (𝑨 − 𝑩)𝒊𝒋 = 𝒂𝒊𝒋 - 𝒃𝒊𝒋. 4
  • 5. Operations with Matrices (Sum, Difference) Sum: 3 4 1 6 7 0 + −1 0 7 6 5 1 = 2 4 8 12 12 1 The matrix 0 whose entries are all zero. Then, for all A , A + 0 =A Difference: 2 4 8 12 12 1 - 3 4 1 6 7 0 = −1 0 7 6 5 1 The matrix 0 whose entries are all zero. Then, for all A , A - 0 =A 5
  • 6. Operations with Matrices (Scalar Multiple) If A is a matrix and r is a number (sometimes called a scalar in this context), then the scalar multiple, rA, is obtained by multiplying every entry in A by r. In symbols, (𝑟𝐴)𝑖𝑗 = 𝑟𝑎𝑖𝑗 . Example: 2 3 4 1 6 7 0 = 6 8 2 12 14 0 6
  • 7. Operations with Matrices (Product) If A has dimensions k × m and B has dimensions m × n, then the product AB is defined, and has dimensions k × n. The entry (𝑨𝑩)𝒊𝒋 is obtained by multiplying row i of A by column j of B, which is done by multiplying corresponding entries together and then adding the results i.e., Example: (𝑎𝑖1 𝑎𝑖2 … 𝑎𝑖𝑚) 𝑏1𝑗 𝑏2𝑗 … 𝑏 𝑚𝑗 = 𝑎𝑖1 𝑏1𝑗 + 𝑎𝑖2 𝑏2𝑗 + ⋯ +𝑎𝑖𝑚 𝑏 𝑚𝑗 7
  • 8. Operations with Matrices (Product) Example: (𝒂𝒊𝟏 𝒂𝒊𝟐 … 𝒂𝒊𝒎) 𝒃 𝟏𝒋 𝒃 𝟐𝒋 … 𝒃 𝒎𝒋 = 𝒂𝒊𝟏 𝒃 𝟏𝒋 + 𝒂𝒊𝟐 𝒃 𝟐𝒋 + ⋯ +𝒂𝒊𝒎 𝒃 𝒎𝒋 𝒂 𝒃 𝒄 𝒅 𝒆 𝒇 𝑨 𝑩 𝑪 𝑫 = 𝒂𝑨 + 𝒃𝑪 𝒂𝑩 + 𝒃𝑫 𝒄𝑨 + 𝒅𝑪 𝒄𝑩 + 𝒃𝑫 𝒆𝑨 + 𝒇𝑪 𝒆𝑩 + 𝒇𝑫 8
  • 9. Operations with Matrices (Transpose) The transpose, 𝑨 𝑻 , of a matrix A is the matrix obtained from A by writing its rows as columns. If A is an k×n matrix and B = 𝑨 𝑻 then B is the n×k matrix with 𝒃𝒊𝒋= 𝒂𝒋𝒊. If 𝑨 𝑻=A, then A is symmetric 𝒂 𝟏𝟏 𝒂 𝟏𝟐 𝒂 𝟏𝟑 𝒂 𝟐𝟏 𝒂 𝟐𝟐 𝒂 𝟐𝟑 𝑻 = 𝒂 𝟏𝟏 𝒂 𝟐𝟏 𝒂 𝟏𝟐 𝒂 𝟐𝟐 𝒂 𝟏𝟑 𝒂 𝟐𝟑 9
  • 10. Laws of Matrix Algebra The matrix addition, subtraction, scalar multiplication and matrix multiplication, have the following properties. Associative Laws: A+ (B + C) = (A +B) + C, (AB)C = A(BC). Commutative Law for Addition: A + B = B + A Distributive Laws: A(B + C) = AB + AC, (A + B)C = AC + BC 10
  • 11. Determinant of Matrix Determinant is a scalar Defined for a square matrix Is the sum of selected products of the elements of the matrix each product being multiplied by +1 or -1 𝑑𝑒𝑡 𝑎 𝑏 𝑐 𝑑 = ad - bc 11
  • 12. Inverse of Matrix Definition: An inverse matrix 𝑨−𝟏 which can be found only for a square and a non-singular matrix A, is a unique matrix satisfying the relationship A 𝑨−𝟏 = 𝑰 = 𝑨−𝟏 A The formula for deriving the inverse is 𝑨−𝟏 = 𝟏 𝒅𝒆𝒕(𝑨) 𝒂𝒅𝒋(𝑨) 12
  • 13. System of Equations in Matrix Form  The system of linear equations: a11x1 + a12x2+a13x3+….+a1nxn = b1 a21x1 + a22x2+a23x3+….+a2nxn = b2 ……………………………………… ak1x1 + ak2x2+ak3x3+….+aknxn = bk Can be rewritten as the matrix equation Ax = b, where A = 𝑎11 … 𝑎1𝑛 𝑎21 … … … 𝑎2𝑛 … 𝑎 𝑘1 … 𝑎 𝑘𝑛 , x = 𝑥1 𝑥2 … 𝑥 𝑛 , b = 𝑏1 𝑏2 … 𝑏 𝑘 13
  • 14. Example: Linear System to Matrix Equation = 4𝑥 + 𝑦 + 2𝑧 = 4 5𝑥 + 2𝑦 + 𝑧 = 4 𝑥 + 3𝑧 = 3 A = 4 1 2 5 2 1 1 0 3 , x = 𝑥 𝑦 𝑧 , b = 4 4 3 AX = d 4 1 2 5 2 1 1 0 3 𝑥 𝑦 𝑧 = 4 4 3 14
  • 15. Unique Properties of Matrices In normal algebra , if we multiply two nonzero values, then the outcome will never be a zero . But if we multiply two non-zero values in matrix , then the outcome can be zero. Example: 𝑨 = 𝟑 𝟑 −𝟑 𝟑 and B= 𝟏 𝟏 𝟏 𝟏 AB = 𝟑 𝟑 −𝟑 𝟑 * 𝟏 𝟏 𝟏 𝟏 = 𝟑 ∗ 𝟏 + 𝟏 ∗ (−𝟑) 𝟑 ∗ 𝟏 + −𝟑 ∗ 𝟏 −𝟑 ∗ 𝟏 + 𝟑 ∗ 𝟏 −𝟑 ∗ 𝟏 + 𝟑 ∗ 𝟏 = 𝟑 − 𝟑 𝟑 − 𝟑 −𝟑 + 𝟑 −𝟑 + 𝟑 = 𝟎 𝟎 𝟎 𝟎 15
  • 16. Application of Matrix Field of Geology Taking Seismic Surveys Plotting Graphs & Statistics Scientific Analysis Field of Statistics & Economics Presenting real world data such as People's habit, traits & survey data Calculating GDP 16
  • 17. Application of Matrix Field of Animation Operating 3D software & Tools Performing 3D scaling/Transforming Giving reflection, rotation Physics & Electronics Elementary particles in quantum field theory Traditional mesh & nodal analysis Behavior of electronic components 17