SlideShare a Scribd company logo
1 of 15
Download to read offline
EIGEN VALUES & EIGEN VECTOR
‱ Name: UtsavKishoreOjha
‱ RollNo. :232179342
‱ UniversityRollNo. : 12500123180
‱ Stream: Cse
‱ Section: C
CONTENTS OF THE SLIDE
‱ Introduction
‱ Definition of Matrix
‱ Key Charecteristics of a Matrix
‱ Example of Matrix
‱ Applications of Matrix
‱ Operations of a Matrix
‱ Properties of Eigen Values
‱ Properties of Eigen Vectors
‱ Finding Eigen Values
‱ Finding Eigen Vectors
‱ Conclusion
INTRODUCTION
In the world of linear algebra,eigenvaluesand eigenvectorsare a power couple!They help us
understand how a matrix, which represents a linear transformation, affects certain special vectors.
Eigenvectors:Imagine a magic mirror that stretches or shrinks an object but keepsits direction. The
object's shape changes, but it still points in the same way. In mathematical terms, these objects are
eigenvectors,and the amount by which they're stretched (or shrunk) is the eigenvalue.
Eigenvalues:Think of the eigenvalue as a scaling factor. When you apply the matrix (the fancy
mirror) to an eigenvector,you get the eigenvector back, just slightly modified.If the eigenvalue is
positive, the vector gets stretched; if it's negative, it gets flippedand shrunk; if it's zero,the vector
disappears!
Here's the key equation:
A * x = λ * x
where:A is the matrix (the magic mirror)
x is the eigenvector (the object)
λ is the eigenvalue(the scaling factor)
DEFINITION OF MATRIX
A matrix is a rectangular array of numbers, symbols, or
expressions,arranged in rows and columns. It's used to
representvarious mathematical objects and
relationships, and it plays a central role in linear algebra,
statistics, engineering,and numerous other fields.
KEY CHARACTERISTICS OF A MATRIX
Dimensions:- A matrix is described by its dimensions,
typically written as "m x n," where m is the number of rows
and n is the number of columns. For example, a 2 x 3 matrix
has 2 rows and 3 columns.
Elements:- The individual items within the matrix are called
elements or entries. Each element is identified by its row and
column position, using subscript notation. For example, a2,4
refers to the element in the 2nd row and 4th column.
Notation:- Matrices are commonly denoted by capital letters,
like A, B, C, etc. ..
EXAMPLES OF MATRIX
Square matrix:- A matrix with the same number of rows and
columns (e.g., a 3 x 3 matrix).
Row matrix:-A matrix with only one row (e.g., a 1 x 4 matrix).
Column matrix:-A matrix with only one column (e.g., a 5 x 1
matrix).
Zero matrix: A matrix where all elements are zero.
Identity matrix: A square matrix with 1s on the diagonal
and 0s elsewhere.
APPLICATIONS OF MATRIX
Linear transformations:- Matrices can represent linear
transformations, such as rotations, reflections, and scaling in
geometric spaces.
Systems of linear equations:- Matrices are used to express and
solve systems of linear equations.
Graph theory:- Matrices can represent graphs and networks.
Probability and statistics:- Matrices are used in probability theory
and statistics to represent data and relationships.
Image processing:- Matrices are used to store and manipulate
digital images.
Machine learning:- Matrices are fundamental for various machine
learning algorithms.
COMMON OPERATIONS
ON MATRIX
Addition:- Matrices with the same dimensions can be added
element-wise.
Subtraction:- Matrices with the same dimensions can be
subtracted element-wise.
Multiplication:- Matrices can be multiplied, but specific rules
for compatibility and order apply.
Transpose:- The transpose of a matrix is formed by swapping
its rows and columns
PROPERTIES OF EIGEN
VALUES
Special scalar values:-When applied to a matrix equation,they
cause the resulting vector to be a scaled versionof the original
vector.
Not unique: A single matrix can have multiple eigenvalues,each
associated with a specific eigenvector.
Can be real or complex:- Depending on the matrix, eigenvalues can
be real numbers, imaginarynumbers, or complex numbers with
both real and imaginary parts.
Influence transformations:- They determine how a linear
transformationstretches, shrinks, or reflects a vector.
Sum and product have meaning:-The sum of a matrix's eigenvalues
equals the trace of the matrix, and their product equals the
determinantof the matrix.
PROPERTIES OF EIGEN
VECTOR
Non-zero vectors:- When multiplied by their correspondingmatrix,
they remain in the same direction but are scaled by theeigenvalue.
Not unique (except for multiplicity 1):- A single eigenvalue can have
multiple eigenvectors, forming aneigen space. However, if an
eigenvalue has a multiplicity of 1, there is only one corresponding
eigenvector.
Orthogonal(for distinct eigenvalues):- If multiple eigenvaluesare
distinct, the correspondingeigenvectors are orthogonal
(perpendicular)to each other.
Span the vector space (sometimes):- In some cases, all
eigenvectors of a matrix can be combined to form a basis for the
entire vector space the matrix operates on.
Useful for diagonalization:- Findingeigenvaluesand eigenvectors
allows you to diagonalize a matrix, simplifyingits analysisand
understanding its behavior.
FINDING EIGEN VALUES
(STEP - BY - STEP)
 Verify Square Matrix:-Eigenvalues exist only for square matrices (matrices with the same
number of rows and columns).If your matrix is not square, you cannot proceed with this
process.
 Construct the Characteristic Equation:-Subtract λ (lambda, a scalar variable) times the
identity matrix (I) from the original matrix (A). This creates the matrix (A- λI).Calculate the
determinant of this matrix, represented asdet(A - λI).Set the determinant equal to zero,
forming the characteristic equation:det(A - λI) = 0.
 Solve the Characteristic Equation:-Solve the characteristic equation for λ. The solutions
for λ will be the eigenvalues of the matrixA.For 2x2 matrices, the quadratic formula can be
used. For larger matrices, computational tools or techniques like factoring or Gaussian
elimination might be needed.
 Example (2x2 Matrix):-Consider the matrix A = [3 2; 4 1].Following steps 1-2, we get the
characteristic equation: (3-λ)(1-λ) - 8 = 0.Solving for λ using the quadratic formula yields λ
= 5 or λ = -1.Therefore, the eigenvalues of matrix A are 5 and -1.
 Finding Eigenvectors (Optional):-If you also need the eigenvectors, you would substitute
each eigenvalue back into the equation (A - λI)v = 0 and solve for the corresponding vector
v.
‱ Remember:->Eigenvalues may be real or complex numbers.>For larger matrices,
computational tools can assist in solving the characteristic equation and finding
eigenvalues.
FINDING EIGEN VECTOR
(STEP - BY- STEP)
 Choose an Eigenvalue:-Selectone of the eigenvalues(λ) that you found for the matrix.
 Set Up the Equation:-Create the matrix (A - λI), where A is the original matrix, λ is the chosen
eigenvalue,and I is the identity matrix of the same size as A. Write the equation (A - λI)v = 0, where
v represents the eigenvector you'reseeking.
 Solvethe System of Equations:-Rewrite the equation (A - λI)v = 0 as a systemof linear equations,
one for each row of the matrix. Solve this system of equations using techniques like Gaussian
elimination or row reduction. The solutions will be the components of the eigenvector v that
correspond to the chosen eigenvalueλ.
 Normalize(Optional):-If desired,normalize the eigenvector by dividing it by its magnitude to make
it a unit vector (having a length of 1). This is often done for consistency and easier interpretation.
 Repeat for Other Eigenvalues:-Ifthe matrix has multiple eigenvalues,repeat steps 1-4 for each
eigenvalueto find its correspondingeigenvectors.
Example (Using the matrix from the previousexample):-
Let's find the eigenvector corresponding to λ = 5 for the matrix A = [3 2; 4 1].
Setting up the equation (A - λI)v = 0, we get [-2 2; 4 -4]v = 0.
Simplifying this system of equations, we get -x + y = 0, which means x = y.
Choosing a value for x (e.g.,x = 1), we get the eigenvector v = [1; 1].
Normalizing v, we get the unit eigenvector v = [1/√2; 1/√2]..
CONCLUSION
Eigenvalues and eigenvectors are fundamental concepts in linear
algebra, with far-reaching applications in numerous fields like
engineering, physics, computer science, and data analysis.
Understanding eigenvalues and eigenvectors empowers us to analyze
complex systems, solve differential equations, compress data, and unlock
a plethora of technological advances. From designing earthquake-
resistant structures to powering facial recognition algorithms,
eigenvalues and eigenvectors shape the world around us in profound
ways.
We saw that eigenvalues represent scaling factors and eigenvectors
define directions preserved by a linear transformation.
Finding eigenvalues involves solving the characteristic equation, while
eigenvectors are determined by solving systems of equations associated
with each eigen values. The world of eigenvalues and eigenvectors
extends beyond this presentation, with topics like diagonalization,
spectral analysis, and applications in various domains waiting to be
explored.
REFERENCE

www.scibd.com
www.mathway.com
Thank You

More Related Content

Similar to Eigen values and Eigen vectors ppt world

4. Linear Algebra for Machine Learning: Eigenvalues, Eigenvectors and Diagona...
4. Linear Algebra for Machine Learning: Eigenvalues, Eigenvectors and Diagona...4. Linear Algebra for Machine Learning: Eigenvalues, Eigenvectors and Diagona...
4. Linear Algebra for Machine Learning: Eigenvalues, Eigenvectors and Diagona...Ceni Babaoglu, PhD
 
Linear_Algebra_final.pdf
Linear_Algebra_final.pdfLinear_Algebra_final.pdf
Linear_Algebra_final.pdfRohitAnand125
 
Mat lab.pptx
Mat lab.pptxMat lab.pptx
Mat lab.pptxMeshackDuru
 
151522-161226185046.pdf
151522-161226185046.pdf151522-161226185046.pdf
151522-161226185046.pdfSatyabrataMandal7
 
EE8120_Projecte_15
EE8120_Projecte_15EE8120_Projecte_15
EE8120_Projecte_15Farhad Gholami
 
Matrices ppt
Matrices pptMatrices ppt
Matrices pptaakashray33
 
Eigen value and eigen vectors shwetak
Eigen value and eigen vectors shwetakEigen value and eigen vectors shwetak
Eigen value and eigen vectors shwetakMrsShwetaBanait1
 
matrices.pptx
matrices.pptxmatrices.pptx
matrices.pptxanonymus67
 
Applied Mathematics 3 Matrices.pdf
Applied Mathematics 3 Matrices.pdfApplied Mathematics 3 Matrices.pdf
Applied Mathematics 3 Matrices.pdfPrasadBaravkar1
 
Eigen Values & Eigen Vectors PPT.pdf
Eigen Values & Eigen Vectors PPT.pdfEigen Values & Eigen Vectors PPT.pdf
Eigen Values & Eigen Vectors PPT.pdfasitbagasitbag13
 
Eigenvalues and Eigenvectors
Eigenvalues and EigenvectorsEigenvalues and Eigenvectors
Eigenvalues and EigenvectorsVinod Srivastava
 
Eigenvalues and eigenvectors
Eigenvalues and eigenvectorsEigenvalues and eigenvectors
Eigenvalues and eigenvectorsiraq
 
Data Mining Lecture_9.pptx
Data Mining Lecture_9.pptxData Mining Lecture_9.pptx
Data Mining Lecture_9.pptxSubrata Kumer Paul
 
project report(1)
project report(1)project report(1)
project report(1)Conor Bradley
 
Tutorial on EM algorithm – Part 1
Tutorial on EM algorithm – Part 1Tutorial on EM algorithm – Part 1
Tutorial on EM algorithm – Part 1Loc Nguyen
 
Matrices and Determinants
Matrices and DeterminantsMatrices and Determinants
Matrices and DeterminantsSOMASUNDARAM T
 
5-eigenvalues_and_eigenvectors.pptx
5-eigenvalues_and_eigenvectors.pptx5-eigenvalues_and_eigenvectors.pptx
5-eigenvalues_and_eigenvectors.pptxMalligaarjunanN
 

Similar to Eigen values and Eigen vectors ppt world (20)

4. Linear Algebra for Machine Learning: Eigenvalues, Eigenvectors and Diagona...
4. Linear Algebra for Machine Learning: Eigenvalues, Eigenvectors and Diagona...4. Linear Algebra for Machine Learning: Eigenvalues, Eigenvectors and Diagona...
4. Linear Algebra for Machine Learning: Eigenvalues, Eigenvectors and Diagona...
 
Linear_Algebra_final.pdf
Linear_Algebra_final.pdfLinear_Algebra_final.pdf
Linear_Algebra_final.pdf
 
Mat lab.pptx
Mat lab.pptxMat lab.pptx
Mat lab.pptx
 
151522-161226185046.pdf
151522-161226185046.pdf151522-161226185046.pdf
151522-161226185046.pdf
 
EE8120_Projecte_15
EE8120_Projecte_15EE8120_Projecte_15
EE8120_Projecte_15
 
PROJECT
PROJECTPROJECT
PROJECT
 
Matrices ppt
Matrices pptMatrices ppt
Matrices ppt
 
Eigen value and eigen vectors shwetak
Eigen value and eigen vectors shwetakEigen value and eigen vectors shwetak
Eigen value and eigen vectors shwetak
 
matrices.pptx
matrices.pptxmatrices.pptx
matrices.pptx
 
Applied Mathematics 3 Matrices.pdf
Applied Mathematics 3 Matrices.pdfApplied Mathematics 3 Matrices.pdf
Applied Mathematics 3 Matrices.pdf
 
Eigen Values & Eigen Vectors PPT.pdf
Eigen Values & Eigen Vectors PPT.pdfEigen Values & Eigen Vectors PPT.pdf
Eigen Values & Eigen Vectors PPT.pdf
 
Eigenvalues and Eigenvectors
Eigenvalues and EigenvectorsEigenvalues and Eigenvectors
Eigenvalues and Eigenvectors
 
Eigenvalues and eigenvectors
Eigenvalues and eigenvectorsEigenvalues and eigenvectors
Eigenvalues and eigenvectors
 
Data Mining Lecture_9.pptx
Data Mining Lecture_9.pptxData Mining Lecture_9.pptx
Data Mining Lecture_9.pptx
 
project report(1)
project report(1)project report(1)
project report(1)
 
Maths
MathsMaths
Maths
 
Tutorial on EM algorithm – Part 1
Tutorial on EM algorithm – Part 1Tutorial on EM algorithm – Part 1
Tutorial on EM algorithm – Part 1
 
Matrices and Determinants
Matrices and DeterminantsMatrices and Determinants
Matrices and Determinants
 
5-eigenvalues_and_eigenvectors.pptx
5-eigenvalues_and_eigenvectors.pptx5-eigenvalues_and_eigenvectors.pptx
5-eigenvalues_and_eigenvectors.pptx
 
TENSOR .pptx
TENSOR .pptxTENSOR .pptx
TENSOR .pptx
 

Recently uploaded

Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxNirmalaLoungPoorunde1
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxmanuelaromero2013
 
internship ppt on smartinternz platform as salesforce developer
internship ppt on smartinternz platform as salesforce developerinternship ppt on smartinternz platform as salesforce developer
internship ppt on smartinternz platform as salesforce developerunnathinaik
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Celine George
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptxVS Mahajan Coaching Centre
 
Hybridoma Technology ( Production , Purification , and Application )
Hybridoma Technology  ( Production , Purification , and Application  ) Hybridoma Technology  ( Production , Purification , and Application  )
Hybridoma Technology ( Production , Purification , and Application ) Sakshi Ghasle
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdfSoniaTolstoy
 
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxEPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxRaymartEstabillo3
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxpboyjonauth
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Educationpboyjonauth
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityGeoBlogs
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Celine George
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxSayali Powar
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTiammrhaywood
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxiammrhaywood
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13Steve Thomason
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Krashi Coaching
 
Class 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdfClass 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdfakmcokerachita
 
18-04-UA_REPORT_MEDIALITERAĐĄY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAĐĄY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAĐĄY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAĐĄY_INDEX-DM_23-1-final-eng.pdfssuser54595a
 
à€­à€Ÿà€°à€€-à€°à„‹à€ź à€”à„à€Żà€Ÿà€Șà€Ÿà€°.pptx, Indo-Roman Trade,
à€­à€Ÿà€°à€€-à€°à„‹à€ź à€”à„à€Żà€Ÿà€Șà€Ÿà€°.pptx, Indo-Roman Trade,à€­à€Ÿà€°à€€-à€°à„‹à€ź à€”à„à€Żà€Ÿà€Șà€Ÿà€°.pptx, Indo-Roman Trade,
à€­à€Ÿà€°à€€-à€°à„‹à€ź à€”à„à€Żà€Ÿà€Șà€Ÿà€°.pptx, Indo-Roman Trade,Virag Sontakke
 

Recently uploaded (20)

Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptx
 
How to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptxHow to Make a Pirate ship Primary Education.pptx
How to Make a Pirate ship Primary Education.pptx
 
internship ppt on smartinternz platform as salesforce developer
internship ppt on smartinternz platform as salesforce developerinternship ppt on smartinternz platform as salesforce developer
internship ppt on smartinternz platform as salesforce developer
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
 
Hybridoma Technology ( Production , Purification , and Application )
Hybridoma Technology  ( Production , Purification , and Application  ) Hybridoma Technology  ( Production , Purification , and Application  )
Hybridoma Technology ( Production , Purification , and Application )
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
 
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxEPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptx
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Education
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
 
Class 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdfClass 11 Legal Studies Ch-1 Concept of State .pdf
Class 11 Legal Studies Ch-1 Concept of State .pdf
 
18-04-UA_REPORT_MEDIALITERAĐĄY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAĐĄY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAĐĄY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAĐĄY_INDEX-DM_23-1-final-eng.pdf
 
à€­à€Ÿà€°à€€-à€°à„‹à€ź à€”à„à€Żà€Ÿà€Șà€Ÿà€°.pptx, Indo-Roman Trade,
à€­à€Ÿà€°à€€-à€°à„‹à€ź à€”à„à€Żà€Ÿà€Șà€Ÿà€°.pptx, Indo-Roman Trade,à€­à€Ÿà€°à€€-à€°à„‹à€ź à€”à„à€Żà€Ÿà€Șà€Ÿà€°.pptx, Indo-Roman Trade,
à€­à€Ÿà€°à€€-à€°à„‹à€ź à€”à„à€Żà€Ÿà€Șà€Ÿà€°.pptx, Indo-Roman Trade,
 

Eigen values and Eigen vectors ppt world

  • 1. EIGEN VALUES & EIGEN VECTOR ‱ Name: UtsavKishoreOjha ‱ RollNo. :232179342 ‱ UniversityRollNo. : 12500123180 ‱ Stream: Cse ‱ Section: C
  • 2. CONTENTS OF THE SLIDE ‱ Introduction ‱ Definition of Matrix ‱ Key Charecteristics of a Matrix ‱ Example of Matrix ‱ Applications of Matrix ‱ Operations of a Matrix ‱ Properties of Eigen Values ‱ Properties of Eigen Vectors ‱ Finding Eigen Values ‱ Finding Eigen Vectors ‱ Conclusion
  • 3. INTRODUCTION In the world of linear algebra,eigenvaluesand eigenvectorsare a power couple!They help us understand how a matrix, which represents a linear transformation, affects certain special vectors. Eigenvectors:Imagine a magic mirror that stretches or shrinks an object but keepsits direction. The object's shape changes, but it still points in the same way. In mathematical terms, these objects are eigenvectors,and the amount by which they're stretched (or shrunk) is the eigenvalue. Eigenvalues:Think of the eigenvalue as a scaling factor. When you apply the matrix (the fancy mirror) to an eigenvector,you get the eigenvector back, just slightly modified.If the eigenvalue is positive, the vector gets stretched; if it's negative, it gets flippedand shrunk; if it's zero,the vector disappears! Here's the key equation: A * x = λ * x where:A is the matrix (the magic mirror) x is the eigenvector (the object) λ is the eigenvalue(the scaling factor)
  • 4. DEFINITION OF MATRIX A matrix is a rectangular array of numbers, symbols, or expressions,arranged in rows and columns. It's used to representvarious mathematical objects and relationships, and it plays a central role in linear algebra, statistics, engineering,and numerous other fields.
  • 5. KEY CHARACTERISTICS OF A MATRIX Dimensions:- A matrix is described by its dimensions, typically written as "m x n," where m is the number of rows and n is the number of columns. For example, a 2 x 3 matrix has 2 rows and 3 columns. Elements:- The individual items within the matrix are called elements or entries. Each element is identified by its row and column position, using subscript notation. For example, a2,4 refers to the element in the 2nd row and 4th column. Notation:- Matrices are commonly denoted by capital letters, like A, B, C, etc. ..
  • 6. EXAMPLES OF MATRIX Square matrix:- A matrix with the same number of rows and columns (e.g., a 3 x 3 matrix). Row matrix:-A matrix with only one row (e.g., a 1 x 4 matrix). Column matrix:-A matrix with only one column (e.g., a 5 x 1 matrix). Zero matrix: A matrix where all elements are zero. Identity matrix: A square matrix with 1s on the diagonal and 0s elsewhere.
  • 7. APPLICATIONS OF MATRIX Linear transformations:- Matrices can represent linear transformations, such as rotations, reflections, and scaling in geometric spaces. Systems of linear equations:- Matrices are used to express and solve systems of linear equations. Graph theory:- Matrices can represent graphs and networks. Probability and statistics:- Matrices are used in probability theory and statistics to represent data and relationships. Image processing:- Matrices are used to store and manipulate digital images. Machine learning:- Matrices are fundamental for various machine learning algorithms.
  • 8. COMMON OPERATIONS ON MATRIX Addition:- Matrices with the same dimensions can be added element-wise. Subtraction:- Matrices with the same dimensions can be subtracted element-wise. Multiplication:- Matrices can be multiplied, but specific rules for compatibility and order apply. Transpose:- The transpose of a matrix is formed by swapping its rows and columns
  • 9. PROPERTIES OF EIGEN VALUES Special scalar values:-When applied to a matrix equation,they cause the resulting vector to be a scaled versionof the original vector. Not unique: A single matrix can have multiple eigenvalues,each associated with a specific eigenvector. Can be real or complex:- Depending on the matrix, eigenvalues can be real numbers, imaginarynumbers, or complex numbers with both real and imaginary parts. Influence transformations:- They determine how a linear transformationstretches, shrinks, or reflects a vector. Sum and product have meaning:-The sum of a matrix's eigenvalues equals the trace of the matrix, and their product equals the determinantof the matrix.
  • 10. PROPERTIES OF EIGEN VECTOR Non-zero vectors:- When multiplied by their correspondingmatrix, they remain in the same direction but are scaled by theeigenvalue. Not unique (except for multiplicity 1):- A single eigenvalue can have multiple eigenvectors, forming aneigen space. However, if an eigenvalue has a multiplicity of 1, there is only one corresponding eigenvector. Orthogonal(for distinct eigenvalues):- If multiple eigenvaluesare distinct, the correspondingeigenvectors are orthogonal (perpendicular)to each other. Span the vector space (sometimes):- In some cases, all eigenvectors of a matrix can be combined to form a basis for the entire vector space the matrix operates on. Useful for diagonalization:- Findingeigenvaluesand eigenvectors allows you to diagonalize a matrix, simplifyingits analysisand understanding its behavior.
  • 11. FINDING EIGEN VALUES (STEP - BY - STEP)  Verify Square Matrix:-Eigenvalues exist only for square matrices (matrices with the same number of rows and columns).If your matrix is not square, you cannot proceed with this process.  Construct the Characteristic Equation:-Subtract λ (lambda, a scalar variable) times the identity matrix (I) from the original matrix (A). This creates the matrix (A- λI).Calculate the determinant of this matrix, represented asdet(A - λI).Set the determinant equal to zero, forming the characteristic equation:det(A - λI) = 0.  Solve the Characteristic Equation:-Solve the characteristic equation for λ. The solutions for λ will be the eigenvalues of the matrixA.For 2x2 matrices, the quadratic formula can be used. For larger matrices, computational tools or techniques like factoring or Gaussian elimination might be needed.  Example (2x2 Matrix):-Consider the matrix A = [3 2; 4 1].Following steps 1-2, we get the characteristic equation: (3-λ)(1-λ) - 8 = 0.Solving for λ using the quadratic formula yields λ = 5 or λ = -1.Therefore, the eigenvalues of matrix A are 5 and -1.  Finding Eigenvectors (Optional):-If you also need the eigenvectors, you would substitute each eigenvalue back into the equation (A - λI)v = 0 and solve for the corresponding vector v. ‱ Remember:->Eigenvalues may be real or complex numbers.>For larger matrices, computational tools can assist in solving the characteristic equation and finding eigenvalues.
  • 12. FINDING EIGEN VECTOR (STEP - BY- STEP)  Choose an Eigenvalue:-Selectone of the eigenvalues(λ) that you found for the matrix.  Set Up the Equation:-Create the matrix (A - λI), where A is the original matrix, λ is the chosen eigenvalue,and I is the identity matrix of the same size as A. Write the equation (A - λI)v = 0, where v represents the eigenvector you'reseeking.  Solvethe System of Equations:-Rewrite the equation (A - λI)v = 0 as a systemof linear equations, one for each row of the matrix. Solve this system of equations using techniques like Gaussian elimination or row reduction. The solutions will be the components of the eigenvector v that correspond to the chosen eigenvalueλ.  Normalize(Optional):-If desired,normalize the eigenvector by dividing it by its magnitude to make it a unit vector (having a length of 1). This is often done for consistency and easier interpretation.  Repeat for Other Eigenvalues:-Ifthe matrix has multiple eigenvalues,repeat steps 1-4 for each eigenvalueto find its correspondingeigenvectors. Example (Using the matrix from the previousexample):- Let's find the eigenvector corresponding to λ = 5 for the matrix A = [3 2; 4 1]. Setting up the equation (A - λI)v = 0, we get [-2 2; 4 -4]v = 0. Simplifying this system of equations, we get -x + y = 0, which means x = y. Choosing a value for x (e.g.,x = 1), we get the eigenvector v = [1; 1]. Normalizing v, we get the unit eigenvector v = [1/√2; 1/√2]..
  • 13. CONCLUSION Eigenvalues and eigenvectors are fundamental concepts in linear algebra, with far-reaching applications in numerous fields like engineering, physics, computer science, and data analysis. Understanding eigenvalues and eigenvectors empowers us to analyze complex systems, solve differential equations, compress data, and unlock a plethora of technological advances. From designing earthquake- resistant structures to powering facial recognition algorithms, eigenvalues and eigenvectors shape the world around us in profound ways. We saw that eigenvalues represent scaling factors and eigenvectors define directions preserved by a linear transformation. Finding eigenvalues involves solving the characteristic equation, while eigenvectors are determined by solving systems of equations associated with each eigen values. The world of eigenvalues and eigenvectors extends beyond this presentation, with topics like diagonalization, spectral analysis, and applications in various domains waiting to be explored.