SlideShare a Scribd company logo
1 of 56
MOHAMMAD IMRAN 
DEPARTMENT OF APPLIED SCIENCES 
JAHANGIRABAD EDUCATIONAL GROUP OF INSTITUTES 
www.jit.edu.in
Matrix Mathematics 
• Matrices are very useful in engineering 
calculations. For example, matrices are used to: 
– Efficiently store a large number of values (as we have 
done with arrays in MATLAB) 
– Solve systems of linear simultaneous equations 
– Transform quantities from one coordinate system to 
another 
• Several mathematical operations involving 
matrices are important
Outline 
 Basics: 
Operations on matrices 
 Transpose of the matrices 
 Types of matrices 
 Determinant of matrix 
 Linear systems of algebraic equations 
Matrix rank, existence of a solution 
Inverse of a matrix 
Normal form of the matrix 
Rank of matrix by using the normal form 
 Non-singular matrices P & Q which makes normal form with given matrix A 
as PAQ
Outline cont’ 
 Consistency 
 Eigen values and Eigenvectors
Review: Properties of Matrices 
• A matrix is a one-or two dimensional array 
• A quantity is usually designated as a matrix by bold face 
type: A 
• The elements of a matrix are shown in square brackets:
Review: Properties of Matrices cont. 
• The dimension (size) of a matrix is defined by the 
number of rows and number of columns 
• Examples: 
3 × 3: 2×4:
Review: Properties of Matrices cont. 
• An element of a matrix is usually written in lower 
case, with its row number and column number as 
subscripts :
Matrix Operations 
• Matrix Addition 
• Multiplication of a Matrix by a Scalar 
• Matrix Multiplication 
• Matrix Transposition 
• Finding the Determinate of a Matrix 
• Matrix Inversion
Matrix Addition 
• Matrix must be the same size in order to add 
• Matrix addition is commutative: 
A + B = B + A
Multiplication of a Matrix by a Scalar 
• To multiple a matrix by a scalar, multiply each 
element by the scalar: 
• We often use this fact to simplify the display of 
matrices with very large (or very small) values:
Multiplication of Matrices 
 To multiple two matrices together, the matrices 
must have compatible sizes: 
 This multiplication is possible only if the number 
of columns in A is the same as the number of rows 
in B 
 The resultant matrix C will have the same number 
of rows as A and the same number of columns 
as B
Multiplication of Matrices 
• Consider these matrices: 
• Can we find this product? 
Yes, 3 columns of A = 3 rows of B 
• What will be the size of C? 
2 X 2: 2 rows in A, 2 columns in B
Multiplication of Matrices 
• Element ij of the product matrix is computed 
by multiplying each element of row i of the 
first matrix by the corresponding element of 
column j of the second matrix, and summing 
the results 
• This is best illustrated by example
Example – Matrix Multiplication 
 Find 
 We know that matrix C will be 2 × 2 
 Element c11 is found by multiplying terms of row 1 
of A and column 1 of B:
Example – Matrix Multiplication 
• Element c12 is found by multiplying terms of row 1 
of A and column 2 of B:
Example – Matrix Multiplication 
• Element c21 is found by multiplying terms of row 
2 of A and column 1 of B:
Example – Matrix Multiplication 
• Element c22 is found by multiplying terms of row 2 
of A and column 2 of B:
Example – Matrix Multiplication 
• Solution:
Matrix Multiplication 
• In general, matrix multiplication is not 
commutative: 
AB ≠ BA
Transpose of a Matrix 
• The transpose of a matrix by switching its row 
and columns 
• The transpose of a matrix is designated by a 
superscript T:
Types of Matrices 
1. Row Matrix : A matrix which has only one row and n 
numbers of columns called “Row Matrix”. 
Ex : - [ 3 4 6 7 8 ………………n] 
2. Column Matrix : A Matrix which has only one column 
and n numbers of rows called “column Matrix”. 
3567....n
Types of Matrices 
 Square Matrix : A matrix which has equal number 
of rows and columns called “Square Matrix”. 
Where m =n 
i.e the number of rows and columns are equal
Types of Matrices 
 Diagonal Matrix : Diagonal matrix is a matrix in 
which all elements are zero except the diagonal 
elements. 
 Remark : Diagonal matrix is a type of square 
matrix.
Types of Matrices 
Scalar Matrix : 
It is a type of square matrix but its 
all diagonal elements are exactly similar and 
remaining elements should be zero 
Where m = n, i.e the number of rows and 
columns are equal
Ty Tpyepse so fo fM Maattrriicceess 
 Unit matrix : 
A Diagonal matrix which has all its 
diagonal elements as 1 called “Unit Matrix” 
Remark : Except diagonal elements all elements 
should be zero.
Types of Matrices 
 Null Matrix : 
A matrix whose all elements are zero called 
“Null Matrix”. 
Remark: This matrix is also type of square matrix.
Types of Matrices 
 Symmetric Matrix : 
A matrix which is equal to its transpose 
said to be “Symmetric Matrix” 
A = 
We can see that A =AT
T yTpyepse os fo Mf Mataritcreicse s 
 Skew - Symmetric Matrix : 
A matrix which is equal to its 
negative of its transpose said to be “Skew- 
Symmetric Matrix” 
A = 
We can see that A = - AT
 Lower Triangular matrix :- 
If all the elements below the diagonal are zero 
then this type of matrix is called “Lower Triangular 
matrix” 
For Ex. 
Types of Matrices
Types of Matrices 
 Upper Triangular matrix :- 
if all the elements above the diagonal are zero 
then this type of matrix is called “Upper triangular 
matrix” 
For Ex.
Types of Matrices 
 Identity Matrix (Unit Matrix):- 
A matrix is said to be identity matrix if 
all the diagonal elements are 1 and remaining 
elements should be zero.
Types of Matrices 
 Equal Matrices :- 
Those matrices which has equal number 
of rows as well column and all elements should be 
same said to be “Equal Matrix”. 
and are equal matrices
Types of Matrices 
 Equivalence Matrix :- 
Those matrices which has 
equal number of rows as well column but not 
all elements are same said to be “Equivalence 
Matrix”. 
and
Types of Matrices 
Orthogonal matrix :- 
An orthogonal matrix is one 
whose transpose is also its inverse. 
AT = A-1
Determinate of a Matrix 
• The determinate of a square matrix is a scalar quantity 
that has some uses in matrix algebra. Finding the 
determinate of 2 × 2 and 3 × 3 matrices can be done 
relatively easily: 
• The determinate is designated as |A| or det(A) of 2 ×2:
Determinate of a Matrix 
• 3 × 3:
Matrix Rank 
 The rank of a matrix is simply the number of 
independent row vectors in that matrix. 
or 
The number of non-zero rows in the matrix. 
 The transpose of a matrix has the same rank as the 
original matrix. 
 To find the rank of a matrix by hand, use Gauss 
elimination and the linearly dependant row vectors 
will fall out, leaving only the linearly independent 
vectors, the number of which is the rank.
Matrix inverse 
 The inverse of the matrix A is denoted as A-1 
 By definition, AA-1 = A-1A = I, where I is the identity 
matrix. 
 Theorem: The inverse of an nxn matrix A exists if and 
only if the rank A = n. 
 Gauss-Jordan elimination can be used to find the 
inverse of a matrix by hand.
Inverse of a 2 x 2 matrix 
Procedure 
 There is a simple procedure to find the inverse of a two by 
two matrix. This procedure only works for the 2 x 2 
case. 
 Find the inverse of 
Δ= delta= difference of product of diagonal 
elements
Inverse of a 2 x 2 matrix 
Procedure 
 Determine whether or not the inverse actually exists. We will 
define 
Δ = 
As (2)2-1(3); 
Δ is the difference of the product of the diagonal 
elements of the matrix. 
 In order for the inverse of a 2 x 2 matrix to exist, Δ 
cannot equal to zero. 
 If happens Δ to be zero, then we conclude the inverse does 
not exist and we stop all calculations. 
 In our case Δ = 1, so we can proceed.
Inverse of a 2 x 2 matrix 
 Step 2. Reverse the entries of the main diagonal consisting 
of the 
two 2’s. In this case, no apparent change is noticed. 
Step 3. Reverse the signs of the other diagonal entries 3 
and 1 so they become -3 and -1
Inverse of a 2 x 2 matrix 
Step 4. Divide each element of the matrix by Δ 
which in this case is 1, so no apparent change will 
be noticed. 
 The inverse of the matrix is then 
Remark: for verification AA-1 = I
Inverse of a 3 x 3 matrix 
Procedure 
We use a more general procedure to find the inverse of a 3 x 3 
matrix. 
1. Augment this matrix with the 3 x 3 identity matrix. 
2. Use elementary row operations to transform the matrix on the 
left side of the vertical line to the 3 x 3 identity matrix. The row 
operation is used for the entire row so that the matrix on the 
right hand side of the vertical line will also change. 
3. When the matrix on the left is transformed to the 3 x 3 identity 
matrix, the matrix on the right of the vertical line is the 
inverse.
ProcInevdeurrsee of a 3 x 3 matrix 
Procedure 
Here are the necessary row operations: 
 Step 1: Get zeros below the 1 in the first column by multiplying 
row 1 by -2 and adding the result to R2. Row 2 is replaced by 
this sum. 
 Step2. Multiply R1 by 2, add result to R3 and replace R3 by that 
result. 
 Step 3. Multiply row 2 by (1/3) to get a 1 in the second row 
first position.
Inverse of a 3 x 3 matrix 
Continuation of Procedure 
 Step 4. Add R1 to R2 and replace R1 by that sum. 
 Step 5. Multiply R2 by 4, add result to R3 and replace R3 by that 
sum. 
 Step 6. Multiply R3 by 3/5 to get a 1 in the third row, third 
position.
Inverse of a 3 x 3 matrix 
Final result 
 Step 7. Eliminate the 5/3 in the first row third position by 
multiplying row 3 by -5/3 and adding result to Row 1. 
 Step 8. Eliminate the -4/3 in the second row, third position by 
multiplying R3 by 4/3 and adding result to R2. 
 Step 9. You now have the identity matrix on the left, which is 
our goal.
Normal form of a matrix 
Where is the unit matrix of order r. hence ρ(A) = r
Square Matrices P & Q of Orders m & n 
respectively , such that PAQ is in the normal 
form 
Working rule:- 
1. write A = I A I 
2. Reduce the matrix on L.H.S.to normal form by applying 
elementary row or column operation. 
Remark : 
* if row operation is applied on L.H.S. then this operation is 
applied on pre-factor of A on R.H.S 
* if column operation is applied on L.H.S. then this operation 
is applied on post-factor of A on R.H.S 
 The matrices P and Q are not unique
Consistent and Inconsistent Systems of 
Equations 
 All the systems of equations that we have seen in this 
section so far have had unique solutions. These are 
referred to as Consistent Systems of Equations, meaning 
that for a given system, there exists one solution set for 
the different variables in the system or infinitely many sets 
of solution. In other words, as long as we can find a 
solution for the system of equations, we refer to that 
system as being consistent 
 Inconsistent systems arise when the lines or planes 
formed from the systems of equations don't meet at any 
point.
Consistency Chart
Eigen values and Eigen 
vectors 
Origin of Eigen values and Eigen vectors 
 Eigen values and eigenvectors have their origins 
in physics, in particular in problems where 
motion is involved, although their uses extend 
from solutions to stress and strain problems to 
differential equations and quantum mechanics. 
we can use matrices to deform a body - the 
concept of STRAIN. Eigenvectors are vectors that 
point in directions where there is no rotation. 
Eigen values are the change in length of the 
eigenvector from the original length.
Eigen values and Eigen vectors 
 Let A be an nxn matrix and consider the vector 
equation: 
Ax = lx 
 A value of l for which this equation has a solution x≠0 
is called an Eigen value of the matrix A. 
 The corresponding solutions x are called the Eigen 
vectors of the matrix A.
Solving for Eigen Values 
Ax=lx 
Ax - lx = 0 
(A- lI)x = 0 
 This is a homogeneous linear system, homogeneous 
meaning that the RHS are all zeros. 
 For such a system, a theorem states that a solution exists 
given that det(A- lI)=0. 
 The Eigen values are found by solving the above equation.
Solving for Eigen values cont’ 
 Simple example: 
find the Eigen values for the matrix: 
ù 
úû 
é 
- 
= 
2 2 
êë 
5 2 
- 
A 
 Eigen values are given by the equation det(A-lI) = 0: 
- - 
l 
5 2 
A l I 
- = 
l l l l 
det( ) 
2 - 2 
- 
l 
= - - - - - = 2+ + 
( 5 )( 2 ) 4 7 6 
 So, the roots of the last equation are -1 and -6. 
These are the Eigen values of matrix A.
Eigenvectors 
 For each Eigen value, l, there is a corresponding 
eigenvector, x. 
 This vector can be found by substituting one of the 
Eigen values back into the original equation: Ax = lx 
: for the example: -5x1 + 2x2 = lx1 
2x1 – 2x2 = lx2 
 Using l=-1, we get x2 = 2x1, and by arbitrarily 
choosing x1 = 1, the Eigenvector corresponding to 
l=-1 is: 
2 
é 
- 
x 1 and similarly, 
úû 
ù 
úû 
1 
é 
= 
2 
êë 
ù 
êë 
= 
1 
2 x
Special matrices 
 A matrix is called symmetric if: 
AT = A 
 A skew-symmetric matrix is one for which: 
AT = -A 
 An orthogonal matrix is one whose 
transpose is also its inverse: 
AT = A-1

More Related Content

What's hot

What's hot (20)

Application of matrices in Daily life
Application of matrices in Daily lifeApplication of matrices in Daily life
Application of matrices in Daily life
 
BASICS OF MATRICES WITH APPLICATION IN ENGINEERING
BASICS OF MATRICES WITH APPLICATION IN ENGINEERINGBASICS OF MATRICES WITH APPLICATION IN ENGINEERING
BASICS OF MATRICES WITH APPLICATION IN ENGINEERING
 
Matrix Algebra seminar ppt
Matrix Algebra seminar pptMatrix Algebra seminar ppt
Matrix Algebra seminar ppt
 
Applications of linear algebra
Applications of linear algebraApplications of linear algebra
Applications of linear algebra
 
MATRICES AND ITS TYPE
MATRICES AND ITS TYPEMATRICES AND ITS TYPE
MATRICES AND ITS TYPE
 
Applications of linear algebra in computer science
Applications of linear algebra in computer scienceApplications of linear algebra in computer science
Applications of linear algebra in computer science
 
Applications of matrices in Real\Daily life
Applications of matrices in Real\Daily lifeApplications of matrices in Real\Daily life
Applications of matrices in Real\Daily life
 
Application of Matrices in real life | Matrices application | The Matrices
Application of Matrices in real life | Matrices application | The MatricesApplication of Matrices in real life | Matrices application | The Matrices
Application of Matrices in real life | Matrices application | The Matrices
 
Application of Matrices
Application of MatricesApplication of Matrices
Application of Matrices
 
Matrices and System of Linear Equations ppt
Matrices and System of Linear Equations pptMatrices and System of Linear Equations ppt
Matrices and System of Linear Equations ppt
 
Matrices
MatricesMatrices
Matrices
 
Diagonalization of Matrices
Diagonalization of MatricesDiagonalization of Matrices
Diagonalization of Matrices
 
Presentation on application of matrix
Presentation on application of matrixPresentation on application of matrix
Presentation on application of matrix
 
Matrix introduction and matrix operations.
Matrix introduction and matrix operations. Matrix introduction and matrix operations.
Matrix introduction and matrix operations.
 
Linear Algebra
Linear AlgebraLinear Algebra
Linear Algebra
 
Use of matrix in daily life
Use of matrix in daily lifeUse of matrix in daily life
Use of matrix in daily life
 
Matrices
MatricesMatrices
Matrices
 
Application of matrices in real life and matrix
Application of matrices in real life and matrixApplication of matrices in real life and matrix
Application of matrices in real life and matrix
 
Matrix and Determinants
Matrix and DeterminantsMatrix and Determinants
Matrix and Determinants
 
Applications of algebra and calculus
Applications of algebra and calculusApplications of algebra and calculus
Applications of algebra and calculus
 

Viewers also liked

Applications of Matrices
Applications of MatricesApplications of Matrices
Applications of Matrices
santhosh kumar
 
4.8 congruence transformations and coordinate geometry
4.8 congruence transformations and coordinate geometry4.8 congruence transformations and coordinate geometry
4.8 congruence transformations and coordinate geometry
detwilerr
 
Sparse matrices
Sparse matricesSparse matrices
Sparse matrices
Zain Zafar
 
Applications of matrices in real life
Applications of matrices in real lifeApplications of matrices in real life
Applications of matrices in real life
SuhaibFaiz
 
Appilation of matrices in real life
Appilation of matrices in real lifeAppilation of matrices in real life
Appilation of matrices in real life
Student
 

Viewers also liked (20)

Applications of Matrices
Applications of MatricesApplications of Matrices
Applications of Matrices
 
CP Handout#9
CP Handout#9CP Handout#9
CP Handout#9
 
Sparse matrices
Sparse matricesSparse matrices
Sparse matrices
 
4.8 congruence transformations and coordinate geometry
4.8 congruence transformations and coordinate geometry4.8 congruence transformations and coordinate geometry
4.8 congruence transformations and coordinate geometry
 
6th grade sunday school final program ppt
6th grade sunday school final program ppt6th grade sunday school final program ppt
6th grade sunday school final program ppt
 
Panda security logo
Panda security logoPanda security logo
Panda security logo
 
views of translation
views of translation views of translation
views of translation
 
Sparse matrices
Sparse matricesSparse matrices
Sparse matrices
 
Matrices
MatricesMatrices
Matrices
 
introduction to engg materials
introduction to engg materialsintroduction to engg materials
introduction to engg materials
 
Unit 5 Friction
Unit 5 FrictionUnit 5 Friction
Unit 5 Friction
 
Ch9 composites Erdi Karaçal Mechanical Engineer University of Gaziantep
Ch9 composites Erdi Karaçal Mechanical Engineer University of GaziantepCh9 composites Erdi Karaçal Mechanical Engineer University of Gaziantep
Ch9 composites Erdi Karaçal Mechanical Engineer University of Gaziantep
 
Materiales the science and engineering of materials - Solution Manual
Materiales   the science and engineering of materials - Solution ManualMateriales   the science and engineering of materials - Solution Manual
Materiales the science and engineering of materials - Solution Manual
 
Applications of matrices in real life
Applications of matrices in real lifeApplications of matrices in real life
Applications of matrices in real life
 
Appilation of matrices in real life
Appilation of matrices in real lifeAppilation of matrices in real life
Appilation of matrices in real life
 
Analytic geometry basic concepts
Analytic geometry basic conceptsAnalytic geometry basic concepts
Analytic geometry basic concepts
 
Solved numerical problems of fourier series
Solved numerical problems of fourier seriesSolved numerical problems of fourier series
Solved numerical problems of fourier series
 
Basic Analytical Geometry
Basic Analytical GeometryBasic Analytical Geometry
Basic Analytical Geometry
 
Analytical geometry
Analytical geometryAnalytical geometry
Analytical geometry
 
Application of matrices in real life
Application of matrices in real lifeApplication of matrices in real life
Application of matrices in real life
 

Similar to Matrix and its applications by mohammad imran

Brief review on matrix Algebra for mathematical economics
Brief review on matrix Algebra for mathematical economicsBrief review on matrix Algebra for mathematical economics
Brief review on matrix Algebra for mathematical economics
felekephiliphos3
 
Alg II 3-6 Solving Systems - Matrices
Alg II 3-6 Solving Systems - MatricesAlg II 3-6 Solving Systems - Matrices
Alg II 3-6 Solving Systems - Matrices
jtentinger
 
Alg II Unit 3-6-solvingsystemsmatrices
Alg II Unit 3-6-solvingsystemsmatricesAlg II Unit 3-6-solvingsystemsmatrices
Alg II Unit 3-6-solvingsystemsmatrices
jtentinger
 
Direct Methods to Solve Lineal Equations
Direct Methods to Solve Lineal EquationsDirect Methods to Solve Lineal Equations
Direct Methods to Solve Lineal Equations
Lizeth Paola Barrero
 
Direct Methods to Solve Linear Equations Systems
Direct Methods to Solve Linear Equations SystemsDirect Methods to Solve Linear Equations Systems
Direct Methods to Solve Linear Equations Systems
Lizeth Paola Barrero
 

Similar to Matrix and its applications by mohammad imran (20)

Matrices and determinants
Matrices and determinantsMatrices and determinants
Matrices and determinants
 
Introduction to Business Mathematics
Introduction to Business MathematicsIntroduction to Business Mathematics
Introduction to Business Mathematics
 
Brief review on matrix Algebra for mathematical economics
Brief review on matrix Algebra for mathematical economicsBrief review on matrix Algebra for mathematical economics
Brief review on matrix Algebra for mathematical economics
 
Matrices and Determinants
Matrices and DeterminantsMatrices and Determinants
Matrices and Determinants
 
Introduction to matices
Introduction to maticesIntroduction to matices
Introduction to matices
 
Alg II 3-6 Solving Systems - Matrices
Alg II 3-6 Solving Systems - MatricesAlg II 3-6 Solving Systems - Matrices
Alg II 3-6 Solving Systems - Matrices
 
Alg II Unit 3-6-solvingsystemsmatrices
Alg II Unit 3-6-solvingsystemsmatricesAlg II Unit 3-6-solvingsystemsmatrices
Alg II Unit 3-6-solvingsystemsmatrices
 
Direct Methods to Solve Lineal Equations
Direct Methods to Solve Lineal EquationsDirect Methods to Solve Lineal Equations
Direct Methods to Solve Lineal Equations
 
Direct methods
Direct methodsDirect methods
Direct methods
 
Direct Methods to Solve Linear Equations Systems
Direct Methods to Solve Linear Equations SystemsDirect Methods to Solve Linear Equations Systems
Direct Methods to Solve Linear Equations Systems
 
Direct methods
Direct methodsDirect methods
Direct methods
 
Matrix
MatrixMatrix
Matrix
 
Matrix algebra
Matrix algebraMatrix algebra
Matrix algebra
 
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 presentation.pptx
Linear Algebra presentation.pptxLinear Algebra presentation.pptx
Linear Algebra presentation.pptx
 
Matrices 1
Matrices 1Matrices 1
Matrices 1
 
Matrix presentation By DHEERAJ KATARIA
Matrix presentation By DHEERAJ KATARIAMatrix presentation By DHEERAJ KATARIA
Matrix presentation By DHEERAJ KATARIA
 
Engg maths k notes(4)
Engg maths k notes(4)Engg maths k notes(4)
Engg maths k notes(4)
 
introduction-MATRIX-algebramathematics .pptx
introduction-MATRIX-algebramathematics .pptxintroduction-MATRIX-algebramathematics .pptx
introduction-MATRIX-algebramathematics .pptx
 
Presentasi fisika komputasi invers matrik gauss jordan dengan python
Presentasi fisika komputasi invers matrik gauss jordan dengan pythonPresentasi fisika komputasi invers matrik gauss jordan dengan python
Presentasi fisika komputasi invers matrik gauss jordan dengan python
 

More from Mohammad Imran

More from Mohammad Imran (11)

Atomic number ,mass , symbols and nature
Atomic number ,mass , symbols and natureAtomic number ,mass , symbols and nature
Atomic number ,mass , symbols and nature
 
Discussion forum
Discussion forumDiscussion forum
Discussion forum
 
Z transformation
Z transformationZ transformation
Z transformation
 
Complex variables
Complex variablesComplex variables
Complex variables
 
Question bank Engineering Mathematics- ii
Question bank Engineering Mathematics- ii Question bank Engineering Mathematics- ii
Question bank Engineering Mathematics- ii
 
Important Questions of fourier series with theoretical study Engg. Mathem...
Important Questions  of  fourier series with theoretical study   Engg. Mathem...Important Questions  of  fourier series with theoretical study   Engg. Mathem...
Important Questions of fourier series with theoretical study Engg. Mathem...
 
Engg. math 1 question bank by mohammad imran
Engg. math  1 question bank by mohammad imran Engg. math  1 question bank by mohammad imran
Engg. math 1 question bank by mohammad imran
 
notes of Mathematics- III (Theory & numerical part)
notes of Mathematics- III (Theory & numerical part)notes of Mathematics- III (Theory & numerical part)
notes of Mathematics- III (Theory & numerical part)
 
Fp
FpFp
Fp
 
Theory of fourier series
Theory of fourier seriesTheory of fourier series
Theory of fourier series
 
Solution of Engg. mathematics - I (AKTU ) by mohd imran
Solution of Engg. mathematics - I (AKTU ) by mohd imranSolution of Engg. mathematics - I (AKTU ) by mohd imran
Solution of Engg. mathematics - I (AKTU ) by mohd imran
 

Recently uploaded

VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
dharasingh5698
 
notes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.pptnotes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.ppt
MsecMca
 
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
dharasingh5698
 
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar ≼🔝 Delhi door step de...
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar  ≼🔝 Delhi door step de...Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar  ≼🔝 Delhi door step de...
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar ≼🔝 Delhi door step de...
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak HamilCara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
Cara Menggugurkan Kandungan 087776558899
 
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night StandCall Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
amitlee9823
 

Recently uploaded (20)

Unit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdfUnit 1 - Soil Classification and Compaction.pdf
Unit 1 - Soil Classification and Compaction.pdf
 
Design For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the startDesign For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the start
 
KubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghlyKubeKraft presentation @CloudNativeHooghly
KubeKraft presentation @CloudNativeHooghly
 
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Ankleshwar 7001035870 Whatsapp Number, 24/07 Booking
 
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
 
Generative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPTGenerative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPT
 
notes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.pptnotes on Evolution Of Analytic Scalability.ppt
notes on Evolution Of Analytic Scalability.ppt
 
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 BookingVIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
VIP Call Girls Palanpur 7001035870 Whatsapp Number, 24/07 Booking
 
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
 
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar ≼🔝 Delhi door step de...
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar  ≼🔝 Delhi door step de...Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar  ≼🔝 Delhi door step de...
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar ≼🔝 Delhi door step de...
 
DC MACHINE-Motoring and generation, Armature circuit equation
DC MACHINE-Motoring and generation, Armature circuit equationDC MACHINE-Motoring and generation, Armature circuit equation
DC MACHINE-Motoring and generation, Armature circuit equation
 
Unit 2- Effective stress & Permeability.pdf
Unit 2- Effective stress & Permeability.pdfUnit 2- Effective stress & Permeability.pdf
Unit 2- Effective stress & Permeability.pdf
 
Unleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leapUnleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leap
 
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak HamilCara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
 
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night StandCall Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bangalore ☎ 7737669865 🥵 Book Your One night Stand
 
COST-EFFETIVE and Energy Efficient BUILDINGS ptx
COST-EFFETIVE  and Energy Efficient BUILDINGS ptxCOST-EFFETIVE  and Energy Efficient BUILDINGS ptx
COST-EFFETIVE and Energy Efficient BUILDINGS ptx
 
Hostel management system project report..pdf
Hostel management system project report..pdfHostel management system project report..pdf
Hostel management system project report..pdf
 
22-prompt engineering noted slide shown.pdf
22-prompt engineering noted slide shown.pdf22-prompt engineering noted slide shown.pdf
22-prompt engineering noted slide shown.pdf
 
UNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its PerformanceUNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its Performance
 
Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024
 

Matrix and its applications by mohammad imran

  • 1. MOHAMMAD IMRAN DEPARTMENT OF APPLIED SCIENCES JAHANGIRABAD EDUCATIONAL GROUP OF INSTITUTES www.jit.edu.in
  • 2. Matrix Mathematics • Matrices are very useful in engineering calculations. For example, matrices are used to: – Efficiently store a large number of values (as we have done with arrays in MATLAB) – Solve systems of linear simultaneous equations – Transform quantities from one coordinate system to another • Several mathematical operations involving matrices are important
  • 3. Outline  Basics: Operations on matrices  Transpose of the matrices  Types of matrices  Determinant of matrix  Linear systems of algebraic equations Matrix rank, existence of a solution Inverse of a matrix Normal form of the matrix Rank of matrix by using the normal form  Non-singular matrices P & Q which makes normal form with given matrix A as PAQ
  • 4. Outline cont’  Consistency  Eigen values and Eigenvectors
  • 5. Review: Properties of Matrices • A matrix is a one-or two dimensional array • A quantity is usually designated as a matrix by bold face type: A • The elements of a matrix are shown in square brackets:
  • 6. Review: Properties of Matrices cont. • The dimension (size) of a matrix is defined by the number of rows and number of columns • Examples: 3 × 3: 2×4:
  • 7. Review: Properties of Matrices cont. • An element of a matrix is usually written in lower case, with its row number and column number as subscripts :
  • 8. Matrix Operations • Matrix Addition • Multiplication of a Matrix by a Scalar • Matrix Multiplication • Matrix Transposition • Finding the Determinate of a Matrix • Matrix Inversion
  • 9. Matrix Addition • Matrix must be the same size in order to add • Matrix addition is commutative: A + B = B + A
  • 10. Multiplication of a Matrix by a Scalar • To multiple a matrix by a scalar, multiply each element by the scalar: • We often use this fact to simplify the display of matrices with very large (or very small) values:
  • 11. Multiplication of Matrices  To multiple two matrices together, the matrices must have compatible sizes:  This multiplication is possible only if the number of columns in A is the same as the number of rows in B  The resultant matrix C will have the same number of rows as A and the same number of columns as B
  • 12. Multiplication of Matrices • Consider these matrices: • Can we find this product? Yes, 3 columns of A = 3 rows of B • What will be the size of C? 2 X 2: 2 rows in A, 2 columns in B
  • 13. Multiplication of Matrices • Element ij of the product matrix is computed by multiplying each element of row i of the first matrix by the corresponding element of column j of the second matrix, and summing the results • This is best illustrated by example
  • 14. Example – Matrix Multiplication  Find  We know that matrix C will be 2 × 2  Element c11 is found by multiplying terms of row 1 of A and column 1 of B:
  • 15. Example – Matrix Multiplication • Element c12 is found by multiplying terms of row 1 of A and column 2 of B:
  • 16. Example – Matrix Multiplication • Element c21 is found by multiplying terms of row 2 of A and column 1 of B:
  • 17. Example – Matrix Multiplication • Element c22 is found by multiplying terms of row 2 of A and column 2 of B:
  • 18. Example – Matrix Multiplication • Solution:
  • 19. Matrix Multiplication • In general, matrix multiplication is not commutative: AB ≠ BA
  • 20. Transpose of a Matrix • The transpose of a matrix by switching its row and columns • The transpose of a matrix is designated by a superscript T:
  • 21. Types of Matrices 1. Row Matrix : A matrix which has only one row and n numbers of columns called “Row Matrix”. Ex : - [ 3 4 6 7 8 ………………n] 2. Column Matrix : A Matrix which has only one column and n numbers of rows called “column Matrix”. 3567....n
  • 22. Types of Matrices  Square Matrix : A matrix which has equal number of rows and columns called “Square Matrix”. Where m =n i.e the number of rows and columns are equal
  • 23. Types of Matrices  Diagonal Matrix : Diagonal matrix is a matrix in which all elements are zero except the diagonal elements.  Remark : Diagonal matrix is a type of square matrix.
  • 24. Types of Matrices Scalar Matrix : It is a type of square matrix but its all diagonal elements are exactly similar and remaining elements should be zero Where m = n, i.e the number of rows and columns are equal
  • 25. Ty Tpyepse so fo fM Maattrriicceess  Unit matrix : A Diagonal matrix which has all its diagonal elements as 1 called “Unit Matrix” Remark : Except diagonal elements all elements should be zero.
  • 26. Types of Matrices  Null Matrix : A matrix whose all elements are zero called “Null Matrix”. Remark: This matrix is also type of square matrix.
  • 27. Types of Matrices  Symmetric Matrix : A matrix which is equal to its transpose said to be “Symmetric Matrix” A = We can see that A =AT
  • 28. T yTpyepse os fo Mf Mataritcreicse s  Skew - Symmetric Matrix : A matrix which is equal to its negative of its transpose said to be “Skew- Symmetric Matrix” A = We can see that A = - AT
  • 29.  Lower Triangular matrix :- If all the elements below the diagonal are zero then this type of matrix is called “Lower Triangular matrix” For Ex. Types of Matrices
  • 30. Types of Matrices  Upper Triangular matrix :- if all the elements above the diagonal are zero then this type of matrix is called “Upper triangular matrix” For Ex.
  • 31. Types of Matrices  Identity Matrix (Unit Matrix):- A matrix is said to be identity matrix if all the diagonal elements are 1 and remaining elements should be zero.
  • 32. Types of Matrices  Equal Matrices :- Those matrices which has equal number of rows as well column and all elements should be same said to be “Equal Matrix”. and are equal matrices
  • 33. Types of Matrices  Equivalence Matrix :- Those matrices which has equal number of rows as well column but not all elements are same said to be “Equivalence Matrix”. and
  • 34. Types of Matrices Orthogonal matrix :- An orthogonal matrix is one whose transpose is also its inverse. AT = A-1
  • 35. Determinate of a Matrix • The determinate of a square matrix is a scalar quantity that has some uses in matrix algebra. Finding the determinate of 2 × 2 and 3 × 3 matrices can be done relatively easily: • The determinate is designated as |A| or det(A) of 2 ×2:
  • 36. Determinate of a Matrix • 3 × 3:
  • 37. Matrix Rank  The rank of a matrix is simply the number of independent row vectors in that matrix. or The number of non-zero rows in the matrix.  The transpose of a matrix has the same rank as the original matrix.  To find the rank of a matrix by hand, use Gauss elimination and the linearly dependant row vectors will fall out, leaving only the linearly independent vectors, the number of which is the rank.
  • 38. Matrix inverse  The inverse of the matrix A is denoted as A-1  By definition, AA-1 = A-1A = I, where I is the identity matrix.  Theorem: The inverse of an nxn matrix A exists if and only if the rank A = n.  Gauss-Jordan elimination can be used to find the inverse of a matrix by hand.
  • 39. Inverse of a 2 x 2 matrix Procedure  There is a simple procedure to find the inverse of a two by two matrix. This procedure only works for the 2 x 2 case.  Find the inverse of Δ= delta= difference of product of diagonal elements
  • 40. Inverse of a 2 x 2 matrix Procedure  Determine whether or not the inverse actually exists. We will define Δ = As (2)2-1(3); Δ is the difference of the product of the diagonal elements of the matrix.  In order for the inverse of a 2 x 2 matrix to exist, Δ cannot equal to zero.  If happens Δ to be zero, then we conclude the inverse does not exist and we stop all calculations.  In our case Δ = 1, so we can proceed.
  • 41. Inverse of a 2 x 2 matrix  Step 2. Reverse the entries of the main diagonal consisting of the two 2’s. In this case, no apparent change is noticed. Step 3. Reverse the signs of the other diagonal entries 3 and 1 so they become -3 and -1
  • 42. Inverse of a 2 x 2 matrix Step 4. Divide each element of the matrix by Δ which in this case is 1, so no apparent change will be noticed.  The inverse of the matrix is then Remark: for verification AA-1 = I
  • 43. Inverse of a 3 x 3 matrix Procedure We use a more general procedure to find the inverse of a 3 x 3 matrix. 1. Augment this matrix with the 3 x 3 identity matrix. 2. Use elementary row operations to transform the matrix on the left side of the vertical line to the 3 x 3 identity matrix. The row operation is used for the entire row so that the matrix on the right hand side of the vertical line will also change. 3. When the matrix on the left is transformed to the 3 x 3 identity matrix, the matrix on the right of the vertical line is the inverse.
  • 44. ProcInevdeurrsee of a 3 x 3 matrix Procedure Here are the necessary row operations:  Step 1: Get zeros below the 1 in the first column by multiplying row 1 by -2 and adding the result to R2. Row 2 is replaced by this sum.  Step2. Multiply R1 by 2, add result to R3 and replace R3 by that result.  Step 3. Multiply row 2 by (1/3) to get a 1 in the second row first position.
  • 45. Inverse of a 3 x 3 matrix Continuation of Procedure  Step 4. Add R1 to R2 and replace R1 by that sum.  Step 5. Multiply R2 by 4, add result to R3 and replace R3 by that sum.  Step 6. Multiply R3 by 3/5 to get a 1 in the third row, third position.
  • 46. Inverse of a 3 x 3 matrix Final result  Step 7. Eliminate the 5/3 in the first row third position by multiplying row 3 by -5/3 and adding result to Row 1.  Step 8. Eliminate the -4/3 in the second row, third position by multiplying R3 by 4/3 and adding result to R2.  Step 9. You now have the identity matrix on the left, which is our goal.
  • 47. Normal form of a matrix Where is the unit matrix of order r. hence ρ(A) = r
  • 48. Square Matrices P & Q of Orders m & n respectively , such that PAQ is in the normal form Working rule:- 1. write A = I A I 2. Reduce the matrix on L.H.S.to normal form by applying elementary row or column operation. Remark : * if row operation is applied on L.H.S. then this operation is applied on pre-factor of A on R.H.S * if column operation is applied on L.H.S. then this operation is applied on post-factor of A on R.H.S  The matrices P and Q are not unique
  • 49. Consistent and Inconsistent Systems of Equations  All the systems of equations that we have seen in this section so far have had unique solutions. These are referred to as Consistent Systems of Equations, meaning that for a given system, there exists one solution set for the different variables in the system or infinitely many sets of solution. In other words, as long as we can find a solution for the system of equations, we refer to that system as being consistent  Inconsistent systems arise when the lines or planes formed from the systems of equations don't meet at any point.
  • 51. Eigen values and Eigen vectors Origin of Eigen values and Eigen vectors  Eigen values and eigenvectors have their origins in physics, in particular in problems where motion is involved, although their uses extend from solutions to stress and strain problems to differential equations and quantum mechanics. we can use matrices to deform a body - the concept of STRAIN. Eigenvectors are vectors that point in directions where there is no rotation. Eigen values are the change in length of the eigenvector from the original length.
  • 52. Eigen values and Eigen vectors  Let A be an nxn matrix and consider the vector equation: Ax = lx  A value of l for which this equation has a solution x≠0 is called an Eigen value of the matrix A.  The corresponding solutions x are called the Eigen vectors of the matrix A.
  • 53. Solving for Eigen Values Ax=lx Ax - lx = 0 (A- lI)x = 0  This is a homogeneous linear system, homogeneous meaning that the RHS are all zeros.  For such a system, a theorem states that a solution exists given that det(A- lI)=0.  The Eigen values are found by solving the above equation.
  • 54. Solving for Eigen values cont’  Simple example: find the Eigen values for the matrix: ù úû é - = 2 2 êë 5 2 - A  Eigen values are given by the equation det(A-lI) = 0: - - l 5 2 A l I - = l l l l det( ) 2 - 2 - l = - - - - - = 2+ + ( 5 )( 2 ) 4 7 6  So, the roots of the last equation are -1 and -6. These are the Eigen values of matrix A.
  • 55. Eigenvectors  For each Eigen value, l, there is a corresponding eigenvector, x.  This vector can be found by substituting one of the Eigen values back into the original equation: Ax = lx : for the example: -5x1 + 2x2 = lx1 2x1 – 2x2 = lx2  Using l=-1, we get x2 = 2x1, and by arbitrarily choosing x1 = 1, the Eigenvector corresponding to l=-1 is: 2 é - x 1 and similarly, úû ù úû 1 é = 2 êë ù êë = 1 2 x
  • 56. Special matrices  A matrix is called symmetric if: AT = A  A skew-symmetric matrix is one for which: AT = -A  An orthogonal matrix is one whose transpose is also its inverse: AT = A-1