SlideShare a Scribd company logo
A matrix is an ordered rectangular
array of numbers or functions.
 A =
4 2 6 6
−1 0 2 7
 B =
1 9
−8 1
3 5
 C =
1 3 6
8 11 −1
5 −2 7
0 4 0
The numbers or functions are called
the elements or the entries of the
matrix.
 The number of rows and columns of a matrix is
defined as the order of the matrix.
 Matrix having m rows and n columns is called
(m × n) matrix.
 Order of the matrix = m x n
 Read as m by n
 A =
4 2 6 6
−1 0 2 7
Order of A = 2 x 4
 B =
1 9
−8 1
3 5
Order of B = 3 x 2
 C =
1 3 6
8 11 −1
5 −2 7
0 4 0
Order of C = 4 x 3
 D = 5 9 2
Order of D = 1 x 3
E =
7
4
Order of E = 2 x 1
 By the Order of the Matrix , number of
elements can be calculated by the product of
the row and column.
 B =
1 9
−8 1
3 5
Order of B = 3 x 2
No of elements = 6
 If the No. of elements is given, all possible
products of its factors is the order.
 If a Matrix has 12 elements, what are the
possible orders it can have?
 (1 x 12), (2 x 6), (3 x 4), (4 x 3), (6 x 2), (12 x 1)
A =
𝑎11 𝑎12 𝑎13 … … … … . 𝑎1𝑗 … … . … . 𝑎1𝑛
𝑎21 𝑎22 𝑎23 … … … . … 𝑎2𝑗 … … . … . 𝑎2𝑛
⋮ ⋮ ⋮ ⋮ ⋮
⋮ ⋮ ⋮ ⋮ ⋮
𝑎𝑖1 𝑎𝑖2 𝑎𝑖3 … . … . … . 𝑎𝑖𝑗 … … . … . 𝑎𝑖𝑛
⋮ ⋮ ⋮ ⋮ ⋮
⋮ ⋮ ⋮ ⋮ ⋮
𝑎 𝑚1 𝑎 𝑚2 𝑎 𝑚3 … … . … . 𝑎 𝑚𝑗 … … . … 𝑎 𝑚𝑛
ie., A = [aij]mxn where 1 ≤ i ≤ m , 1 ≤ j ≤ n
 Matrices are named by Capital alphabets
 Elements with small alphabets
 R represents the Rows
 C represents the Columns
 B =
𝑏11 𝑏12
𝑏21 𝑏22
𝑏31 𝑏32
𝑏41 𝑏42
𝑏51 𝑏52
 Costruct a 2x3 matrix where aij = 2i + j
 a11 = 2(1) + 1 = 2 + 1 = 3
 a12 = 2(1) + 2 = 2 + 2 = 4
 a13 = 2(1) + 3 = 2 + 3 = 5
 a21 = 2(2) + 1 = 4 + 1 = 5
 a22 = 2(2) + 2 = 4 + 2 = 6
 a23 = 2(2) + 3 = 4 + 3 = 7

3 4 5
5 6 7

3 5
6 8
11 13
A matrix is said to be a row matrix if it has only
one row
In general, A = (𝑎𝑖𝑗)1 x n & order = 1 x n
eg : (6 5 4 7 9 )
 A matrix is said to be a column matrix if it has
only one column.
In general, A = (𝑎𝑖𝑗)m x 1 & order = m x 1
eg :
6
8
6
A matrix in which the number of rows are
equal to the number of columns
In general, A = (𝑎𝑖𝑗)m x m & order = m
Eg:
5 7
2 5
,
−2 0 7
3 8 9
1 6 4
 A square matrix is said to be a diagonal matrix
if all the elements except those in the leading
diagonal are zero.
 ie., B = [bij ]mxn is a diagonal matrix if
bij = 0 when i ≠ j
 Eg: 3 0 0
0 7 0
0 0 −1
 A diagonal matrix is said to be a scalar matrix if
its diagonal elements are equal
 ie., B = [bij ]mxn is a scalar matrix if
bij = 0 when i ≠ j
bij = k when i = j Where k is some constant
 Eg: 2 0 0
0 2 0
0 0 2
 A square matrix in which the diagonal
elements are all 1 and rest are all zero is called
an identity matrix or unit matrix.
 B = [bij ]mxn is a unit matrix if
bij = 0 when i ≠ j
bij = 1 when i = j
 Eg:
1 0 0
0 1 0
0 0 1
 A matrix is said to be zero matrix or null
matrix or void matrix if all its elements are
zero.
 Zero matrix can be of any order.
 Eg:
0 0
0 0
 Row Matrix
 Column Matrix
 Square Matrix
 Diagonal Matrix
 Scalar Matrix
 Identity Matrix (or) Unit Matrix
 Zero Matrix (or) Null Matrix
 Two matrices A = [aij] and B = [bij] are equal if
 (i) They are of the same order .
(ii) Corresponding elements are equal
ie., aij = bij for all i and j.
 Eg: A =
4 2 6
−1 0 7
, B =
4 2 6
−1 0 7
A = B

𝑥 + 𝑦 2
𝑧 − 5 𝑦
=
8 2
9 7
 By equating we get, 𝑥 + 𝑦 = 8
𝑧 − 5 = 9 and y = 7
y = 7
x + y = 8
x + 7 = 8 ⇒ x = 1
z – 5 = 9 ⇒ z = 14
a = 5
b = 7
c = 4
d = 9
 Addition of two matrices is possible only if both the matrices of
same order.
 sum of A + B = D where D = [dij] &
dij = aij +bij for all values of i and j.
Eg :
8 2
9 7
+
3 6
9 5
=
8 + 3 2 + 6
9 + 9 7 + 5
=
11 8
18 12
 A = [aᵢj] and k is any scalar.
 kA = k [aij]m × n = [k (aij)]m × n.
 Eg: A=
5 7
2 4
and k = 3
3A =
3𝑿5 3𝑿7
3𝑿2 3𝑿4
=
15 21
6 12
 –A is the Negative of the Matrix A
ie., –A = (– 1) A.
 Eg: A =
3 7 9
4 3 −2
- A = (-1)
3 7 9
4 3 −2
=
−3 −7 −9
−4 −3 2
 Difference of two matrices is possible only if both the
matrices of same order.
 A - B = D where D = [dij] &
dij = aij - bij for all values of i and j.
Eg :
8 2
9 7
-
3 6
9 5
=
8 − 3 2 − 6
9 − 9 7 − 5
=
5 −4
0 2
 (i) Commutative Law: A + B = B + A.
 (ii) Associative Law: (A + B) + C = A + (B + C).
 (iii) Existence of additive identity:
A + O = O + A = A,
where O is the zero matrix
 (iv) The existence of additive inverse:
A + (– A) = (– A) + A= O.
– A is the additive inverse of A.
 If A & B be two matrices of same order and k , l
are scalars, then
(i) k(A +B) = k A + kB
(ii) (k + l)A = k A + l A
http://www.youtube.com/watch?v=bo_5FTjc2Is
http://www.youtube.com/watch?v=0L90Kkn90J8
 The product of two matrices A and B is defined
only if the number of columns of A(pre
multiplier) is equal to the number of rows of B
(post multiplier).
 Let A = [aij]mxn and B = [bjk]n×p matrix.
Then AB = C = [cik](m×n)( nxp)= [cik]m×p
where cik = ai1 b1k + ai2 b2k + ai3 b3k + ... + ainbnk
= 𝑗=1
𝑛
𝑎𝑖𝑗 𝑏𝑗𝑘
 (1) Associative : (AB)C = A(BC), possible only
when equality defined on both sides.
 (2) Distributive: (i) A(B+C) = AB + BC
(ii) (A+B)C = AC + BC
 (3) Existence of Identity: For every square
matrix there exist an identity matrix.
 Matrix obtained by interchanging the rows and
columns is Transpose of a Matrix
 It is denoted by A’ or AT
 ie, A = (𝑎𝑖𝑗)mx n then AT = (aji)nxm
 (i) (A’)’ = A
 (ii) (kA)’ = kA’
 (iii) (A + B)’ = A’ + B’
 (iv) (AB)’ = B’A’
 A Square Matrix is Symmetric if A’ = A
 A Square Matrix is Skew Symmetric if A’ = -A
 A + A’ is Symmetric
A – A’ is Skew Symmetric
 Any Square Matrix can be expressed as the
sum of a symmetric and a skew symmetric
matrix
 Interchanging any two rows or two columns.
ie. Ri ↔ Rj (or) Ci ↔ Cj
 Multiplication of the elements of any row or column by a non-zero
number.
ie. Ri → k Rj (or) Ci → kCj
 Addition to the elements of any row or column, the corresponding
elements of any other row or column multiplied by any non zero number.
ie. Ri → Ri + kRj (or) Ci →Ci + kCj
 If A & B are Square Matrices such that
AB = BA = I
Then B is called inverse matrix of A
B = A-1
A is said to be invertible
 If A and B are invertible matrices of the same
order then (AB)-1 = B-1A-1

More Related Content

What's hot

Matrices and Determinants
Matrices and DeterminantsMatrices and Determinants
Matrices and Determinants
SOMASUNDARAM T
 
MATRICES AND ITS TYPE
MATRICES AND ITS TYPEMATRICES AND ITS TYPE
MATRICES AND ITS TYPE
Himanshu Negi
 
Introduction to Business Mathematics
Introduction to Business MathematicsIntroduction to Business Mathematics
Introduction to Business Mathematics
Zunair Bhatti
 
MATRICES
MATRICESMATRICES
Determinants
DeterminantsDeterminants
Determinants
Joey Valdriz
 
Matrices and determinants
Matrices and determinantsMatrices and determinants
Matrices and determinants
som allul
 
Business mathematics is a very powerful tools and analytic process that resul...
Business mathematics is a very powerful tools and analytic process that resul...Business mathematics is a very powerful tools and analytic process that resul...
Business mathematics is a very powerful tools and analytic process that resul...
mkrony
 
Matrix.
Matrix.Matrix.
Matrix.
Awais Bakshy
 
Maths sets ppt
Maths sets pptMaths sets ppt
Maths sets ppt
Akshit Saxena
 
Matrix basic operations
Matrix basic operationsMatrix basic operations
Matrix basic operationsJessica Garcia
 
Project business maths
Project business mathsProject business maths
Project business maths
areea
 
Group abstract algebra
Group  abstract algebraGroup  abstract algebra
Group abstract algebra
NaliniSPatil
 
Coordinate goemetry
Coordinate goemetryCoordinate goemetry
Coordinate goemetryRahul Nair
 
Matrix Algebra : Mathematics for Business
Matrix Algebra : Mathematics for BusinessMatrix Algebra : Mathematics for Business
Matrix Algebra : Mathematics for Business
Khan Tanjeel Ahmed
 
Matrix algebra
Matrix algebraMatrix algebra
Matrix algebra
Farzad Javidanrad
 
SET AND ITS OPERATIONS
SET AND ITS OPERATIONSSET AND ITS OPERATIONS
SET AND ITS OPERATIONS
RohithV15
 
Matrices
MatricesMatrices
Matrices
ashishtqm
 

What's hot (20)

7 functions
7   functions7   functions
7 functions
 
Matrices and Determinants
Matrices and DeterminantsMatrices and Determinants
Matrices and Determinants
 
MATRICES AND ITS TYPE
MATRICES AND ITS TYPEMATRICES AND ITS TYPE
MATRICES AND ITS TYPE
 
Introduction to Business Mathematics
Introduction to Business MathematicsIntroduction to Business Mathematics
Introduction to Business Mathematics
 
MATRICES
MATRICESMATRICES
MATRICES
 
Determinants
DeterminantsDeterminants
Determinants
 
Matrices and determinants
Matrices and determinantsMatrices and determinants
Matrices and determinants
 
5.9 complex numbers
5.9 complex numbers5.9 complex numbers
5.9 complex numbers
 
Business mathematics is a very powerful tools and analytic process that resul...
Business mathematics is a very powerful tools and analytic process that resul...Business mathematics is a very powerful tools and analytic process that resul...
Business mathematics is a very powerful tools and analytic process that resul...
 
The integral
The integralThe integral
The integral
 
Matrix.
Matrix.Matrix.
Matrix.
 
Maths sets ppt
Maths sets pptMaths sets ppt
Maths sets ppt
 
Matrix basic operations
Matrix basic operationsMatrix basic operations
Matrix basic operations
 
Project business maths
Project business mathsProject business maths
Project business maths
 
Group abstract algebra
Group  abstract algebraGroup  abstract algebra
Group abstract algebra
 
Coordinate goemetry
Coordinate goemetryCoordinate goemetry
Coordinate goemetry
 
Matrix Algebra : Mathematics for Business
Matrix Algebra : Mathematics for BusinessMatrix Algebra : Mathematics for Business
Matrix Algebra : Mathematics for Business
 
Matrix algebra
Matrix algebraMatrix algebra
Matrix algebra
 
SET AND ITS OPERATIONS
SET AND ITS OPERATIONSSET AND ITS OPERATIONS
SET AND ITS OPERATIONS
 
Matrices
MatricesMatrices
Matrices
 

Viewers also liked

REV 2016: Storage Project & Policy Successes: Enhancing Reneweables Integrati...
REV 2016: Storage Project & Policy Successes: Enhancing Reneweables Integrati...REV 2016: Storage Project & Policy Successes: Enhancing Reneweables Integrati...
REV 2016: Storage Project & Policy Successes: Enhancing Reneweables Integrati...
Daymark Energy Advisors
 
Boletim O PAE - novembro 2016
Boletim O PAE -   novembro 2016Boletim O PAE -   novembro 2016
Boletim O PAE - novembro 2016
O PAE PAE
 
Herculano pires obsessão - o passe - a doutrinação
Herculano pires   obsessão -  o passe  - a doutrinaçãoHerculano pires   obsessão -  o passe  - a doutrinação
Herculano pires obsessão - o passe - a doutrinação
Claudia Ruzicki Kremer
 
José herculano pires os sonhos de liberdade
José herculano pires   os sonhos de liberdadeJosé herculano pires   os sonhos de liberdade
José herculano pires os sonhos de liberdade
Claudia Ruzicki Kremer
 
Plan de Desarrollo 2016 - 2019
Plan de Desarrollo 2016 - 2019Plan de Desarrollo 2016 - 2019
Plan de Desarrollo 2016 - 2019
Yubely Coca
 
Aprendizaje autonomo
Aprendizaje autonomoAprendizaje autonomo
Aprendizaje autonomo
Katherine Bermeo
 
Attitude
AttitudeAttitude
Attitude
Seyid Kadher
 
Preztntacia ucitel
Preztntacia ucitelPreztntacia ucitel
Preztntacia ucitel
orelnatasha
 
Apresentacao Churchtech Expo
Apresentacao Churchtech ExpoApresentacao Churchtech Expo
Apresentacao Churchtech Expo
Gustavo Serafim
 
Actividad 8 taller práctico 10 claves para la implementación de tendencias y ...
Actividad 8 taller práctico 10 claves para la implementación de tendencias y ...Actividad 8 taller práctico 10 claves para la implementación de tendencias y ...
Actividad 8 taller práctico 10 claves para la implementación de tendencias y ...
LUZ ESTELLA GARCIA MARIN
 
Cell tower radiation report
Cell tower radiation reportCell tower radiation report
Cell tower radiation report
Purushottam Pal
 
Projeto de Conservação da Biodiversidade e Uso Sustentável das Florestas do N...
Projeto de Conservação da Biodiversidade e Uso Sustentável das Florestas do N...Projeto de Conservação da Biodiversidade e Uso Sustentável das Florestas do N...
Projeto de Conservação da Biodiversidade e Uso Sustentável das Florestas do N...
GPFLR
 

Viewers also liked (13)

REV 2016: Storage Project & Policy Successes: Enhancing Reneweables Integrati...
REV 2016: Storage Project & Policy Successes: Enhancing Reneweables Integrati...REV 2016: Storage Project & Policy Successes: Enhancing Reneweables Integrati...
REV 2016: Storage Project & Policy Successes: Enhancing Reneweables Integrati...
 
Boletim O PAE - novembro 2016
Boletim O PAE -   novembro 2016Boletim O PAE -   novembro 2016
Boletim O PAE - novembro 2016
 
Herculano pires obsessão - o passe - a doutrinação
Herculano pires   obsessão -  o passe  - a doutrinaçãoHerculano pires   obsessão -  o passe  - a doutrinação
Herculano pires obsessão - o passe - a doutrinação
 
José herculano pires os sonhos de liberdade
José herculano pires   os sonhos de liberdadeJosé herculano pires   os sonhos de liberdade
José herculano pires os sonhos de liberdade
 
Plan de Desarrollo 2016 - 2019
Plan de Desarrollo 2016 - 2019Plan de Desarrollo 2016 - 2019
Plan de Desarrollo 2016 - 2019
 
Aprendizaje autonomo
Aprendizaje autonomoAprendizaje autonomo
Aprendizaje autonomo
 
Attitude
AttitudeAttitude
Attitude
 
Preztntacia ucitel
Preztntacia ucitelPreztntacia ucitel
Preztntacia ucitel
 
Apresentacao Churchtech Expo
Apresentacao Churchtech ExpoApresentacao Churchtech Expo
Apresentacao Churchtech Expo
 
Actividad 8 taller práctico 10 claves para la implementación de tendencias y ...
Actividad 8 taller práctico 10 claves para la implementación de tendencias y ...Actividad 8 taller práctico 10 claves para la implementación de tendencias y ...
Actividad 8 taller práctico 10 claves para la implementación de tendencias y ...
 
Programa energy in bruxelas
Programa energy in bruxelasPrograma energy in bruxelas
Programa energy in bruxelas
 
Cell tower radiation report
Cell tower radiation reportCell tower radiation report
Cell tower radiation report
 
Projeto de Conservação da Biodiversidade e Uso Sustentável das Florestas do N...
Projeto de Conservação da Biodiversidade e Uso Sustentável das Florestas do N...Projeto de Conservação da Biodiversidade e Uso Sustentável das Florestas do N...
Projeto de Conservação da Biodiversidade e Uso Sustentável das Florestas do N...
 

Similar to Matrix

Matrices & Determinants.pdf
Matrices & Determinants.pdfMatrices & Determinants.pdf
Matrices & Determinants.pdf
SUCCESSSCIENCEACADEM
 
Matrices & Determinants
Matrices & DeterminantsMatrices & Determinants
Matrices & Determinants
Birinder Singh Gulati
 
Bba i-bm-u-2- matrix -
Bba i-bm-u-2- matrix -Bba i-bm-u-2- matrix -
Bba i-bm-u-2- matrix -
Rai University
 
GATE Preparation : Matrix Algebra
GATE Preparation : Matrix AlgebraGATE Preparation : Matrix Algebra
GATE Preparation : Matrix Algebra
ParthDave57
 
Matrices and determinants_01
Matrices and determinants_01Matrices and determinants_01
Matrices and determinants_01
nitishguptamaps
 
Appendix B Matrices And Determinants
Appendix B  Matrices And DeterminantsAppendix B  Matrices And Determinants
Appendix B Matrices And Determinants
Angie Miller
 
Matrices
MatricesMatrices
Business mathametics and statistics b.com ii semester (2)
Business mathametics and statistics b.com ii semester (2)Business mathametics and statistics b.com ii semester (2)
Business mathametics and statistics b.com ii semester (2)
shamimakamili
 
Calculus and matrix algebra notes
Calculus and matrix algebra notesCalculus and matrix algebra notes
Calculus and matrix algebra notes
VICTOROGOT4
 
Matrices & determinants
Matrices & determinantsMatrices & determinants
Matrices & determinantsindu thakur
 
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
 
Matrix and its operations
Matrix and its operationsMatrix and its operations
Matrix and its operations
Pankaj Das
 
MATRICES maths project.pptxsgdhdghdgf gr to f HR f
MATRICES maths project.pptxsgdhdghdgf gr to f HR fMATRICES maths project.pptxsgdhdghdgf gr to f HR f
MATRICES maths project.pptxsgdhdghdgf gr to f HR f
premkumar24914
 
ALLIED MATHEMATICS -I UNIT III MATRICES.ppt
ALLIED MATHEMATICS -I UNIT III MATRICES.pptALLIED MATHEMATICS -I UNIT III MATRICES.ppt
ALLIED MATHEMATICS -I UNIT III MATRICES.ppt
ssuser2e348b
 
Assignments for class XII
Assignments for class XIIAssignments for class XII
Assignments for class XII
indu thakur
 
Determinants
DeterminantsDeterminants
Determinants
Scholars Learning
 
Determinants
DeterminantsDeterminants
Determinants
Scholars Learning
 
chap01987654etghujh76687976jgtfhhhgve.ppt
chap01987654etghujh76687976jgtfhhhgve.pptchap01987654etghujh76687976jgtfhhhgve.ppt
chap01987654etghujh76687976jgtfhhhgve.ppt
adonyasdd
 
Matrix introduction
Matrix introduction Matrix introduction
Matrix introduction
Learnbay Datascience
 

Similar to Matrix (20)

Matrices & Determinants.pdf
Matrices & Determinants.pdfMatrices & Determinants.pdf
Matrices & Determinants.pdf
 
Matrices & Determinants
Matrices & DeterminantsMatrices & Determinants
Matrices & Determinants
 
Bba i-bm-u-2- matrix -
Bba i-bm-u-2- matrix -Bba i-bm-u-2- matrix -
Bba i-bm-u-2- matrix -
 
GATE Preparation : Matrix Algebra
GATE Preparation : Matrix AlgebraGATE Preparation : Matrix Algebra
GATE Preparation : Matrix Algebra
 
Matrices and determinants_01
Matrices and determinants_01Matrices and determinants_01
Matrices and determinants_01
 
Matrices
MatricesMatrices
Matrices
 
Appendix B Matrices And Determinants
Appendix B  Matrices And DeterminantsAppendix B  Matrices And Determinants
Appendix B Matrices And Determinants
 
Matrices
MatricesMatrices
Matrices
 
Business mathametics and statistics b.com ii semester (2)
Business mathametics and statistics b.com ii semester (2)Business mathametics and statistics b.com ii semester (2)
Business mathametics and statistics b.com ii semester (2)
 
Calculus and matrix algebra notes
Calculus and matrix algebra notesCalculus and matrix algebra notes
Calculus and matrix algebra notes
 
Matrices & determinants
Matrices & determinantsMatrices & determinants
Matrices & determinants
 
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
 
Matrix and its operations
Matrix and its operationsMatrix and its operations
Matrix and its operations
 
MATRICES maths project.pptxsgdhdghdgf gr to f HR f
MATRICES maths project.pptxsgdhdghdgf gr to f HR fMATRICES maths project.pptxsgdhdghdgf gr to f HR f
MATRICES maths project.pptxsgdhdghdgf gr to f HR f
 
ALLIED MATHEMATICS -I UNIT III MATRICES.ppt
ALLIED MATHEMATICS -I UNIT III MATRICES.pptALLIED MATHEMATICS -I UNIT III MATRICES.ppt
ALLIED MATHEMATICS -I UNIT III MATRICES.ppt
 
Assignments for class XII
Assignments for class XIIAssignments for class XII
Assignments for class XII
 
Determinants
DeterminantsDeterminants
Determinants
 
Determinants
DeterminantsDeterminants
Determinants
 
chap01987654etghujh76687976jgtfhhhgve.ppt
chap01987654etghujh76687976jgtfhhhgve.pptchap01987654etghujh76687976jgtfhhhgve.ppt
chap01987654etghujh76687976jgtfhhhgve.ppt
 
Matrix introduction
Matrix introduction Matrix introduction
Matrix introduction
 

More from Seyid Kadher

DNA
DNADNA
Heart
HeartHeart
Exam fear
Exam fearExam fear
Exam fear
Seyid Kadher
 
Soft skills
Soft skillsSoft skills
Soft skills
Seyid Kadher
 
Types of learners in a classroom
Types of learners in a classroomTypes of learners in a classroom
Types of learners in a classroom
Seyid Kadher
 
Self confidence
Self confidenceSelf confidence
Self confidence
Seyid Kadher
 
Goal setting
Goal settingGoal setting
Goal setting
Seyid Kadher
 
Self esteem
Self esteemSelf esteem
Self esteem
Seyid Kadher
 
Goal setting
Goal settingGoal setting
Goal setting
Seyid Kadher
 
Body language
Body languageBody language
Body language
Seyid Kadher
 
Presentation skills
Presentation skillsPresentation skills
Presentation skills
Seyid Kadher
 
Developing creative thinking
Developing creative thinkingDeveloping creative thinking
Developing creative thinking
Seyid Kadher
 
Team building
Team buildingTeam building
Team building
Seyid Kadher
 
GD - Group Discussion
GD - Group DiscussionGD - Group Discussion
GD - Group Discussion
Seyid Kadher
 
Self confidence
Self confidenceSelf confidence
Self confidence
Seyid Kadher
 
Types of learners in a classroom
Types of learners in a classroomTypes of learners in a classroom
Types of learners in a classroom
Seyid Kadher
 
Interview
InterviewInterview
Interview
Seyid Kadher
 
Resume writing draft
Resume writing draftResume writing draft
Resume writing draft
Seyid Kadher
 
Examination fear
Examination fearExamination fear
Examination fear
Seyid Kadher
 
Speak English
Speak EnglishSpeak English
Speak English
Seyid Kadher
 

More from Seyid Kadher (20)

DNA
DNADNA
DNA
 
Heart
HeartHeart
Heart
 
Exam fear
Exam fearExam fear
Exam fear
 
Soft skills
Soft skillsSoft skills
Soft skills
 
Types of learners in a classroom
Types of learners in a classroomTypes of learners in a classroom
Types of learners in a classroom
 
Self confidence
Self confidenceSelf confidence
Self confidence
 
Goal setting
Goal settingGoal setting
Goal setting
 
Self esteem
Self esteemSelf esteem
Self esteem
 
Goal setting
Goal settingGoal setting
Goal setting
 
Body language
Body languageBody language
Body language
 
Presentation skills
Presentation skillsPresentation skills
Presentation skills
 
Developing creative thinking
Developing creative thinkingDeveloping creative thinking
Developing creative thinking
 
Team building
Team buildingTeam building
Team building
 
GD - Group Discussion
GD - Group DiscussionGD - Group Discussion
GD - Group Discussion
 
Self confidence
Self confidenceSelf confidence
Self confidence
 
Types of learners in a classroom
Types of learners in a classroomTypes of learners in a classroom
Types of learners in a classroom
 
Interview
InterviewInterview
Interview
 
Resume writing draft
Resume writing draftResume writing draft
Resume writing draft
 
Examination fear
Examination fearExamination fear
Examination fear
 
Speak English
Speak EnglishSpeak English
Speak English
 

Recently uploaded

MARUTI SUZUKI- A Successful Joint Venture in India.pptx
MARUTI SUZUKI- A Successful Joint Venture in India.pptxMARUTI SUZUKI- A Successful Joint Venture in India.pptx
MARUTI SUZUKI- A Successful Joint Venture in India.pptx
bennyroshan06
 
The Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdfThe Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdf
kaushalkr1407
 
Instructions for Submissions thorugh G- Classroom.pptx
Instructions for Submissions thorugh G- Classroom.pptxInstructions for Submissions thorugh G- Classroom.pptx
Instructions for Submissions thorugh G- Classroom.pptx
Jheel Barad
 
Thesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.pptThesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.ppt
EverAndrsGuerraGuerr
 
Fish and Chips - have they had their chips
Fish and Chips - have they had their chipsFish and Chips - have they had their chips
Fish and Chips - have they had their chips
GeoBlogs
 
Supporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptxSupporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptx
Jisc
 
Home assignment II on Spectroscopy 2024 Answers.pdf
Home assignment II on Spectroscopy 2024 Answers.pdfHome assignment II on Spectroscopy 2024 Answers.pdf
Home assignment II on Spectroscopy 2024 Answers.pdf
Tamralipta Mahavidyalaya
 
Palestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptxPalestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptx
RaedMohamed3
 
Model Attribute Check Company Auto Property
Model Attribute  Check Company Auto PropertyModel Attribute  Check Company Auto Property
Model Attribute Check Company Auto Property
Celine George
 
1.4 modern child centered education - mahatma gandhi-2.pptx
1.4 modern child centered education - mahatma gandhi-2.pptx1.4 modern child centered education - mahatma gandhi-2.pptx
1.4 modern child centered education - mahatma gandhi-2.pptx
JosvitaDsouza2
 
The approach at University of Liverpool.pptx
The approach at University of Liverpool.pptxThe approach at University of Liverpool.pptx
The approach at University of Liverpool.pptx
Jisc
 
Digital Tools and AI for Teaching Learning and Research
Digital Tools and AI for Teaching Learning and ResearchDigital Tools and AI for Teaching Learning and Research
Digital Tools and AI for Teaching Learning and Research
Vikramjit Singh
 
Synthetic Fiber Construction in lab .pptx
Synthetic Fiber Construction in lab .pptxSynthetic Fiber Construction in lab .pptx
Synthetic Fiber Construction in lab .pptx
Pavel ( NSTU)
 
Chapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptxChapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptx
Mohd Adib Abd Muin, Senior Lecturer at Universiti Utara Malaysia
 
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
siemaillard
 
Introduction to Quality Improvement Essentials
Introduction to Quality Improvement EssentialsIntroduction to Quality Improvement Essentials
Introduction to Quality Improvement Essentials
Excellence Foundation for South Sudan
 
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
siemaillard
 
Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345
beazzy04
 
The French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free downloadThe French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free download
Vivekanand Anglo Vedic Academy
 
Language Across the Curriculm LAC B.Ed.
Language Across the  Curriculm LAC B.Ed.Language Across the  Curriculm LAC B.Ed.
Language Across the Curriculm LAC B.Ed.
Atul Kumar Singh
 

Recently uploaded (20)

MARUTI SUZUKI- A Successful Joint Venture in India.pptx
MARUTI SUZUKI- A Successful Joint Venture in India.pptxMARUTI SUZUKI- A Successful Joint Venture in India.pptx
MARUTI SUZUKI- A Successful Joint Venture in India.pptx
 
The Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdfThe Roman Empire A Historical Colossus.pdf
The Roman Empire A Historical Colossus.pdf
 
Instructions for Submissions thorugh G- Classroom.pptx
Instructions for Submissions thorugh G- Classroom.pptxInstructions for Submissions thorugh G- Classroom.pptx
Instructions for Submissions thorugh G- Classroom.pptx
 
Thesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.pptThesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.ppt
 
Fish and Chips - have they had their chips
Fish and Chips - have they had their chipsFish and Chips - have they had their chips
Fish and Chips - have they had their chips
 
Supporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptxSupporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptx
 
Home assignment II on Spectroscopy 2024 Answers.pdf
Home assignment II on Spectroscopy 2024 Answers.pdfHome assignment II on Spectroscopy 2024 Answers.pdf
Home assignment II on Spectroscopy 2024 Answers.pdf
 
Palestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptxPalestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptx
 
Model Attribute Check Company Auto Property
Model Attribute  Check Company Auto PropertyModel Attribute  Check Company Auto Property
Model Attribute Check Company Auto Property
 
1.4 modern child centered education - mahatma gandhi-2.pptx
1.4 modern child centered education - mahatma gandhi-2.pptx1.4 modern child centered education - mahatma gandhi-2.pptx
1.4 modern child centered education - mahatma gandhi-2.pptx
 
The approach at University of Liverpool.pptx
The approach at University of Liverpool.pptxThe approach at University of Liverpool.pptx
The approach at University of Liverpool.pptx
 
Digital Tools and AI for Teaching Learning and Research
Digital Tools and AI for Teaching Learning and ResearchDigital Tools and AI for Teaching Learning and Research
Digital Tools and AI for Teaching Learning and Research
 
Synthetic Fiber Construction in lab .pptx
Synthetic Fiber Construction in lab .pptxSynthetic Fiber Construction in lab .pptx
Synthetic Fiber Construction in lab .pptx
 
Chapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptxChapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptx
 
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
 
Introduction to Quality Improvement Essentials
Introduction to Quality Improvement EssentialsIntroduction to Quality Improvement Essentials
Introduction to Quality Improvement Essentials
 
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
 
Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345Sha'Carri Richardson Presentation 202345
Sha'Carri Richardson Presentation 202345
 
The French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free downloadThe French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free download
 
Language Across the Curriculm LAC B.Ed.
Language Across the  Curriculm LAC B.Ed.Language Across the  Curriculm LAC B.Ed.
Language Across the Curriculm LAC B.Ed.
 

Matrix

  • 1.
  • 2. A matrix is an ordered rectangular array of numbers or functions.
  • 3.  A = 4 2 6 6 −1 0 2 7  B = 1 9 −8 1 3 5  C = 1 3 6 8 11 −1 5 −2 7 0 4 0
  • 4. The numbers or functions are called the elements or the entries of the matrix.
  • 5.  The number of rows and columns of a matrix is defined as the order of the matrix.  Matrix having m rows and n columns is called (m × n) matrix.  Order of the matrix = m x n  Read as m by n
  • 6.  A = 4 2 6 6 −1 0 2 7 Order of A = 2 x 4  B = 1 9 −8 1 3 5 Order of B = 3 x 2  C = 1 3 6 8 11 −1 5 −2 7 0 4 0 Order of C = 4 x 3  D = 5 9 2 Order of D = 1 x 3 E = 7 4 Order of E = 2 x 1
  • 7.  By the Order of the Matrix , number of elements can be calculated by the product of the row and column.  B = 1 9 −8 1 3 5 Order of B = 3 x 2 No of elements = 6
  • 8.  If the No. of elements is given, all possible products of its factors is the order.  If a Matrix has 12 elements, what are the possible orders it can have?  (1 x 12), (2 x 6), (3 x 4), (4 x 3), (6 x 2), (12 x 1)
  • 9. A = 𝑎11 𝑎12 𝑎13 … … … … . 𝑎1𝑗 … … . … . 𝑎1𝑛 𝑎21 𝑎22 𝑎23 … … … . … 𝑎2𝑗 … … . … . 𝑎2𝑛 ⋮ ⋮ ⋮ ⋮ ⋮ ⋮ ⋮ ⋮ ⋮ ⋮ 𝑎𝑖1 𝑎𝑖2 𝑎𝑖3 … . … . … . 𝑎𝑖𝑗 … … . … . 𝑎𝑖𝑛 ⋮ ⋮ ⋮ ⋮ ⋮ ⋮ ⋮ ⋮ ⋮ ⋮ 𝑎 𝑚1 𝑎 𝑚2 𝑎 𝑚3 … … . … . 𝑎 𝑚𝑗 … … . … 𝑎 𝑚𝑛 ie., A = [aij]mxn where 1 ≤ i ≤ m , 1 ≤ j ≤ n  Matrices are named by Capital alphabets  Elements with small alphabets  R represents the Rows  C represents the Columns
  • 10.  B = 𝑏11 𝑏12 𝑏21 𝑏22 𝑏31 𝑏32 𝑏41 𝑏42 𝑏51 𝑏52
  • 11.  Costruct a 2x3 matrix where aij = 2i + j  a11 = 2(1) + 1 = 2 + 1 = 3  a12 = 2(1) + 2 = 2 + 2 = 4  a13 = 2(1) + 3 = 2 + 3 = 5  a21 = 2(2) + 1 = 4 + 1 = 5  a22 = 2(2) + 2 = 4 + 2 = 6  a23 = 2(2) + 3 = 4 + 3 = 7  3 4 5 5 6 7
  • 13. A matrix is said to be a row matrix if it has only one row In general, A = (𝑎𝑖𝑗)1 x n & order = 1 x n eg : (6 5 4 7 9 )
  • 14.  A matrix is said to be a column matrix if it has only one column. In general, A = (𝑎𝑖𝑗)m x 1 & order = m x 1 eg : 6 8 6
  • 15. A matrix in which the number of rows are equal to the number of columns In general, A = (𝑎𝑖𝑗)m x m & order = m Eg: 5 7 2 5 , −2 0 7 3 8 9 1 6 4
  • 16.  A square matrix is said to be a diagonal matrix if all the elements except those in the leading diagonal are zero.  ie., B = [bij ]mxn is a diagonal matrix if bij = 0 when i ≠ j  Eg: 3 0 0 0 7 0 0 0 −1
  • 17.  A diagonal matrix is said to be a scalar matrix if its diagonal elements are equal  ie., B = [bij ]mxn is a scalar matrix if bij = 0 when i ≠ j bij = k when i = j Where k is some constant  Eg: 2 0 0 0 2 0 0 0 2
  • 18.  A square matrix in which the diagonal elements are all 1 and rest are all zero is called an identity matrix or unit matrix.  B = [bij ]mxn is a unit matrix if bij = 0 when i ≠ j bij = 1 when i = j  Eg: 1 0 0 0 1 0 0 0 1
  • 19.  A matrix is said to be zero matrix or null matrix or void matrix if all its elements are zero.  Zero matrix can be of any order.  Eg: 0 0 0 0
  • 20.  Row Matrix  Column Matrix  Square Matrix  Diagonal Matrix  Scalar Matrix  Identity Matrix (or) Unit Matrix  Zero Matrix (or) Null Matrix
  • 21.  Two matrices A = [aij] and B = [bij] are equal if  (i) They are of the same order . (ii) Corresponding elements are equal ie., aij = bij for all i and j.  Eg: A = 4 2 6 −1 0 7 , B = 4 2 6 −1 0 7 A = B
  • 22.  𝑥 + 𝑦 2 𝑧 − 5 𝑦 = 8 2 9 7  By equating we get, 𝑥 + 𝑦 = 8 𝑧 − 5 = 9 and y = 7 y = 7 x + y = 8 x + 7 = 8 ⇒ x = 1 z – 5 = 9 ⇒ z = 14
  • 23. a = 5 b = 7 c = 4 d = 9
  • 24.  Addition of two matrices is possible only if both the matrices of same order.  sum of A + B = D where D = [dij] & dij = aij +bij for all values of i and j. Eg : 8 2 9 7 + 3 6 9 5 = 8 + 3 2 + 6 9 + 9 7 + 5 = 11 8 18 12
  • 25.  A = [aᵢj] and k is any scalar.  kA = k [aij]m × n = [k (aij)]m × n.  Eg: A= 5 7 2 4 and k = 3 3A = 3𝑿5 3𝑿7 3𝑿2 3𝑿4 = 15 21 6 12
  • 26.  –A is the Negative of the Matrix A ie., –A = (– 1) A.  Eg: A = 3 7 9 4 3 −2 - A = (-1) 3 7 9 4 3 −2 = −3 −7 −9 −4 −3 2
  • 27.  Difference of two matrices is possible only if both the matrices of same order.  A - B = D where D = [dij] & dij = aij - bij for all values of i and j. Eg : 8 2 9 7 - 3 6 9 5 = 8 − 3 2 − 6 9 − 9 7 − 5 = 5 −4 0 2
  • 28.  (i) Commutative Law: A + B = B + A.  (ii) Associative Law: (A + B) + C = A + (B + C).  (iii) Existence of additive identity: A + O = O + A = A, where O is the zero matrix  (iv) The existence of additive inverse: A + (– A) = (– A) + A= O. – A is the additive inverse of A.
  • 29.  If A & B be two matrices of same order and k , l are scalars, then (i) k(A +B) = k A + kB (ii) (k + l)A = k A + l A
  • 31.  The product of two matrices A and B is defined only if the number of columns of A(pre multiplier) is equal to the number of rows of B (post multiplier).  Let A = [aij]mxn and B = [bjk]n×p matrix. Then AB = C = [cik](m×n)( nxp)= [cik]m×p where cik = ai1 b1k + ai2 b2k + ai3 b3k + ... + ainbnk = 𝑗=1 𝑛 𝑎𝑖𝑗 𝑏𝑗𝑘
  • 32.  (1) Associative : (AB)C = A(BC), possible only when equality defined on both sides.  (2) Distributive: (i) A(B+C) = AB + BC (ii) (A+B)C = AC + BC  (3) Existence of Identity: For every square matrix there exist an identity matrix.
  • 33.  Matrix obtained by interchanging the rows and columns is Transpose of a Matrix  It is denoted by A’ or AT  ie, A = (𝑎𝑖𝑗)mx n then AT = (aji)nxm
  • 34.  (i) (A’)’ = A  (ii) (kA)’ = kA’  (iii) (A + B)’ = A’ + B’  (iv) (AB)’ = B’A’
  • 35.  A Square Matrix is Symmetric if A’ = A  A Square Matrix is Skew Symmetric if A’ = -A  A + A’ is Symmetric A – A’ is Skew Symmetric  Any Square Matrix can be expressed as the sum of a symmetric and a skew symmetric matrix
  • 36.  Interchanging any two rows or two columns. ie. Ri ↔ Rj (or) Ci ↔ Cj  Multiplication of the elements of any row or column by a non-zero number. ie. Ri → k Rj (or) Ci → kCj  Addition to the elements of any row or column, the corresponding elements of any other row or column multiplied by any non zero number. ie. Ri → Ri + kRj (or) Ci →Ci + kCj
  • 37.  If A & B are Square Matrices such that AB = BA = I Then B is called inverse matrix of A B = A-1 A is said to be invertible  If A and B are invertible matrices of the same order then (AB)-1 = B-1A-1