Eigenvalues and Eigenvectors
Overview
In our study of linear algebra, we now advance from the mechanics of matrix operations to the intrinsic properties that govern their behavior. This chapter introduces the foundational concepts of eigenvalues and eigenvectors, which are arguably among the most significant in all of engineering mathematics. For a given square matrix representing a linear transformation, its eigenvectors are the non-zero vectors whose direction remains unchanged by the transformation. The corresponding eigenvalue is the scalar factor by which the eigenvector is stretched or compressed. This fundamental relationship, expressed as , provides profound insight into the nature of the matrix .
The importance of this topic for the GATE examination cannot be overstated. Questions involving eigenvalues and eigenvectors appear consistently, testing not only the ability to perform the necessary computations but also a deeper conceptual understanding of their properties. A thorough command of these concepts is essential for solving problems related to matrix diagonalization, determining matrix powers, and analyzing the properties of systems represented by matrices. We shall systematically develop the methods for finding these values and vectors and then explore the powerful theorems that simplify complex problems.
For the computer science engineer, these concepts are not merely abstract mathematical tools. They form the theoretical underpinnings of numerous critical algorithms in fields such as machine learning, network analysis, and computer graphics. From Principal Component Analysis (PCA) for dimensionality reduction to Google's PageRank algorithm for web searching, the principles we will establish in this chapter are directly applicable to solving real-world computational problems. Our focus, however, will remain on building the rigorous mathematical foundation required to excel in the GATE.
---
Chapter Contents
| # | Topic | What You'll Learn |
|---|-------|-------------------|
| 1 | Characteristic Equation | Solving for eigenvalues using characteristic polynomials. |
| 2 | Properties and Applications | Leveraging key theorems for efficient problem-solving. |
---
Learning Objectives
After completing this chapter, you will be able to:
- Formulate the characteristic equation, , for a given square matrix .
- Calculate the eigenvalues and their corresponding eigenvectors for and matrices.
- Apply the fundamental properties of eigenvalues, such as their relation to the trace and determinant, to solve problems efficiently.
- Analyze special matrices (e.g., symmetric, triangular, orthogonal) to determine their eigenvalues with minimal computation.
---
We now turn our attention to Characteristic Equation...
## Part 1: Characteristic Equation
Introduction
In the study of linear algebra, a primary objective is to understand the fundamental properties of a linear transformation as represented by a square matrix. Among the most significant of these properties are the eigenvalues and eigenvectors. The gateway to determining these intrinsic values is the characteristic equation. This polynomial equation, derived from the matrix itself, encapsulates the essential information about how the matrix scales vectors. The roots of this equation, the eigenvalues, are critical in a vast array of applications, from analyzing the stability of systems and performing principal component analysis to solving systems of differential equations.
For the GATE examination, a firm grasp of formulating and solving the characteristic equation is indispensable. While the direct calculation for small matrices is fundamental, a deeper understanding of the properties of the characteristic polynomial and its relationship to matrix invariants like trace and determinant provides powerful shortcuts for solving complex problems efficiently. We shall explore the formulation, properties, and advanced techniques related to the characteristic equation, focusing on methods that are particularly effective in a competitive examination setting.
For a given square matrix , the characteristic equation is the scalar equation in the variable given by the determinant of the matrix , where is the identity matrix. The equation is formally written as:
The polynomial is known as the characteristic polynomial of matrix . The roots of this polynomial are the eigenvalues of .
---
Key Concepts
#
## 1. Formulation of the Characteristic Equation
The construction of the characteristic equation is a procedural task. Let us consider a square matrix of order . The term represents the identity matrix scaled by a scalar variable . This results in a matrix with on its main diagonal and zeros elsewhere. The matrix is formed by subtracting from each of the diagonal elements of .
For a general matrix, the process is as follows:
Let .
Then, .
The characteristic equation is , which yields:
We observe that is the trace of , and is the determinant of . This leads to a more general property.
#
## 2. Properties of the Characteristic Polynomial
For an matrix , its characteristic polynomial has several important properties that are frequently exploited in the GATE exam.
* The sum of the eigenvalues is equal to the trace of the matrix: .
* The product of the eigenvalues is equal to the determinant of the matrix: .
Variables:
- = Eigenvalue
- = Sum of the diagonal elements of A
- = Determinant of A
When to use: This is the fastest method for any matrix.
Variables:
- = Eigenvalue
- = Sum of the diagonal elements of A
- = Minor of the element (determinant of the submatrix obtained by removing the -th row and -th column)
- = Determinant of A
When to use: A direct and structured method for matrices, less prone to sign errors than direct expansion of the determinant.
Worked Example:
Problem: Find the characteristic equation for the matrix .
Solution:
Step 1: Calculate the trace of .
Step 2: Calculate the minors of the diagonal elements.
The sum of the minors is .
Step 3: Calculate the determinant of . Expanding along the third row for simplicity:
Step 4: Substitute these values into the formula for the characteristic equation of a matrix.
Answer: The characteristic equation is . We can also note that the sum of the eigenvalues will be 5, and their product will be 3.
---
#
## 3. The Cayley-Hamilton Theorem
This remarkable theorem establishes a fundamental relationship between a matrix and its characteristic equation.
Every square matrix satisfies its own characteristic equation. That is, if is the characteristic equation of , then substituting the matrix for (and the identity matrix for the constant term) yields the zero matrix:
This theorem is immensely useful for computing higher powers of a matrix and for finding the inverse of a matrix. To find , we can write:
This is valid only if , which is the condition for the matrix to be invertible.
---
#
## 4. Eigenvalues of Special Matrix Structures
For the GATE exam, recognizing special matrix structures is a critical time-saving skill. A common structure is a matrix that can be expressed as a linear combination of the identity matrix and the all-ones matrix .
Let be an matrix where every entry is 1. The eigenvalues of are:
- , with a multiplicity of 1.
- , with a multiplicity of .
If a matrix has eigenvalues , then the matrix has eigenvalues .
Combining these two properties allows for the immediate determination of eigenvalues for any matrix of the form . The eigenvalues of such a matrix are:
- , with a multiplicity of 1.
- , with a multiplicity of .
Problem: Find the eigenvalues of the matrix .
Solution:
Step 1: Decompose the matrix into the form .
We can write as:
The first matrix can be written as , where is the all-ones matrix and is the identity matrix.
Step 2: Identify the parameters , , and .
Here, , , and .
Step 3: Apply the formula for the eigenvalues of .
The first eigenvalue is :
The other eigenvalues are equal to :
Answer: The eigenvalues are . This method avoids the calculation of a determinant entirely. The matrix from the PYQ, , is a direct application of this principle with . Its eigenvalues are and (with multiplicity 3). The largest is 3.
---
Problem-Solving Strategies
When you solve for the eigenvalues of a matrix, always perform a quick mental check.
- Sum Check: Do your calculated eigenvalues sum up to the trace of the matrix? (Sum of diagonal elements).
- Product Check: Do your calculated eigenvalues multiply to the determinant of the matrix?
This simple verification can catch calculation errors in less than 30 seconds and is particularly useful in MCQ-type questions where you can test the options against the trace. For instance, if the trace is 5, and an option provides eigenvalues {1, 2, 3}, their sum is 6, so that option can be immediately eliminated.
---
Common Mistakes
- ❌ Sign Errors in the Polynomial: Forgetting the alternating signs in the characteristic polynomial formula, e.g., writing .
- ❌ Incorrect Matrix for Determinant: Calculating instead of .
- ❌ Computational Overkill: Attempting to manually calculate the characteristic polynomial for a large ( or greater) or structured matrix.
---
Practice Questions
:::question type="MCQ" question="What is the characteristic equation for the matrix ?" options=["","","",""] answer="" hint="Use the formula ." solution="
Step 1: Calculate the trace of matrix A.
Step 2: Calculate the determinant of matrix A.
Step 3: Substitute these values into the characteristic equation formula for a 2x2 matrix.
Result: The correct characteristic equation is .
"
:::
:::question type="NAT" question="Consider the matrix . The value of the largest eigenvalue of the matrix is _________." answer="3" hint="Recognize that matrix M is a multiple of the all-ones matrix, J. Find the eigenvalues of M first, then use the property for eigenvalues of ." solution="
Step 1: Identify the structure of matrix M.
The matrix can be written as , where is the all-ones matrix.
Step 2: Find the eigenvalues of .
For an all-ones matrix, the eigenvalues are (multiplicity 1) and (multiplicity ).
For (where ), the eigenvalues are and (with multiplicity 2).
Step 3: Find the eigenvalues of .
If the eigenvalues of are , the eigenvalues of are .
So, the eigenvalues of are and (with multiplicity 2).
Step 4: Find the eigenvalues of .
If the eigenvalues of are , the eigenvalues of are .
The eigenvalues of are:
The eigenvalues of are .
Step 5: Identify the largest eigenvalue.
The largest eigenvalue is 3.
Result: The value of the largest eigenvalue of the matrix is 3.
"
:::
:::question type="MSQ" question="Let be the characteristic equation of a matrix . Which of the following statements is/are necessarily true?" options=["The determinant of A is 6.","The trace of A is -6.","The eigenvalues of A are 1, 2, and 3.","The matrix A is invertible."] answer="The determinant of A is 6.,The eigenvalues of A are 1, 2, and 3.,The matrix A is invertible." hint="Compare the given polynomial with the general form . Factorize the polynomial to find its roots (the eigenvalues)." solution="
Let the general characteristic equation be .
Comparing this with the given equation :
- For : . So, is a factor.
- For : . So, is a factor.
- For : . So, is a factor.
The roots are 1, 2, and 3. The statement "The eigenvalues of A are 1, 2, and 3" is true.
Therefore, the correct options are (A), (C), and (D).
"
:::
:::question type="NAT" question="For the matrix , the product of its eigenvalues is _________." answer="20" hint="The product of eigenvalues is equal to the determinant of the matrix. What is a special property of this matrix that simplifies finding the determinant?" solution="
Step 1: Recall the property relating eigenvalues and the determinant.
The product of the eigenvalues of a matrix is equal to its determinant.
Step 2: Identify the type of matrix.
The given matrix is an upper triangular matrix.
Step 3: Calculate the determinant of the triangular matrix.
The determinant of a triangular matrix (either upper or lower) is the product of its diagonal elements.
Step 4: Conclude the product of eigenvalues.
Since the product of eigenvalues equals the determinant, the product is 20.
Alternatively, for a triangular matrix, the eigenvalues are the diagonal elements themselves: . Their product is .
Result: The product of the eigenvalues is 20.
"
:::
---
Summary
- Core Definition: The characteristic equation of a square matrix is . Its roots are the eigenvalues of .
- Trace and Determinant Shortcuts: For any matrix, the sum of its eigenvalues equals its trace, and the product of its eigenvalues equals its determinant. These are invaluable for verification and solving MCQs quickly.
- Special Matrix Structures: Be vigilant for matrices of the form . Knowing their eigenvalues ( and ) can save a significant amount of time compared to direct computation. Similarly, for triangular matrices, the eigenvalues are simply the diagonal entries.
- Cayley-Hamilton Theorem: Every matrix satisfies its own characteristic equation. This theorem is primarily used to find the inverse or higher powers of a matrix without direct computation.
---
What's Next?
The characteristic equation is the first step in understanding the spectral properties of a matrix. Your preparation should now extend to the following related topics:
- Eigenvectors: Once you have found the eigenvalues () by solving the characteristic equation, the next logical step is to find the corresponding eigenvectors by solving the homogeneous system of linear equations .
- Diagonalization: A matrix can be diagonalized if it possesses a full set of linearly independent eigenvectors. The diagonalizability of a matrix is directly related to the roots of its characteristic polynomial; for instance, a matrix with distinct eigenvalues is always diagonalizable. This concept is fundamental in matrix decomposition and simplifying matrix powers.
---
Now that you understand Characteristic Equation, let's explore Properties and Applications which builds on these concepts.
---
Part 2: Properties and Applications
Introduction
The study of eigenvalues and eigenvectors is a cornerstone of linear algebra, providing deep insight into the structure and behavior of matrices and the linear transformations they represent. For a given square matrix, an eigenvector represents a direction that remains unchanged (up to scaling) when the linear transformation is applied. The corresponding eigenvalue is the scalar factor by which the eigenvector is stretched or compressed. This seemingly simple relationship, encapsulated in the equation , has profound implications.
In the context of the GATE examination, a firm grasp of the properties of eigenvalues and eigenvectors is indispensable. These concepts are not merely abstract; they form the basis for solving problems related to matrix powers, systems of differential equations, graph theory, and principal component analysis. Our focus here will be on the core algebraic properties and their direct applications in a problem-solving context, equipping us with the necessary tools to approach GATE questions with both efficiency and accuracy.
Let be an square matrix. A non-zero vector is called an eigenvector of if there exists a scalar such that:
The scalar is called the eigenvalue corresponding to the eigenvector . The set of all eigenvalues of a matrix is called its spectrum.
---
Key Concepts and Properties
We will now explore the fundamental properties of eigenvalues and eigenvectors that are most frequently tested in competitive examinations.
#
## 1. The Characteristic Equation
To find the eigenvalues of a matrix , we begin with the defining equation . This can be rewritten as:
Introducing the identity matrix of the same dimension as , we have:
This is a system of homogeneous linear equations. For a non-trivial (i.e., non-zero) solution for to exist, the matrix must be singular. A square matrix is singular if and only if its determinant is zero. This gives us the characteristic equation.
The eigenvalues of a matrix are the roots of the characteristic equation:
Variables:
- = The square matrix
- = An eigenvalue (variable to be solved for)
- = The identity matrix
- = The determinant operator
Application: This is the fundamental equation used to calculate the eigenvalues of a matrix.
Worked Example:
Problem: Find the eigenvalues of the matrix .
Solution:
Step 1: Set up the characteristic equation .
Step 2: Calculate the determinant of .
Step 3: Set the determinant to zero and solve the resulting polynomial for .
Step 4: Identify the roots, which are the eigenvalues.
Answer: The eigenvalues are and .
---
#
## 2. Sum of Eigenvalues and the Trace of a Matrix
A remarkably useful property connects the sum of the eigenvalues directly to the sum of the elements on the main diagonal of the matrix. This sum is known as the trace.
The trace of an square matrix , denoted as , is the sum of the elements on its principal (main) diagonal.
For any matrix with eigenvalues :
Application: Used to find the sum of eigenvalues without calculating each one individually. This is a significant time-saver in exams.
Worked Example:
Problem: The matrix has three eigenvalues. What is their sum?
Solution:
Step 1: Identify the property that the sum of eigenvalues equals the trace of the matrix.
Step 2: Identify the elements on the main diagonal of matrix . The diagonal elements are and .
Step 3: Calculate the trace by summing these elements.
Answer: The sum of the eigenvalues is .
This property is particularly useful in graph theory. The trace of the adjacency matrix of a graph is equal to the number of self-loops in the graph. Therefore, the sum of the eigenvalues of an adjacency matrix is simply the count of its self-loops.
---
#
## 3. Product of Eigenvalues and the Determinant of a Matrix
Another powerful property relates the product of the eigenvalues to the determinant of the matrix.
For any matrix with eigenvalues :
Application: Used to find the product of eigenvalues without explicit calculation. It also implies a critical connection between singularity and eigenvalues.
A square matrix is singular (non-invertible) if and only if . It follows from the product property that a matrix is singular if and only if at least one of its eigenvalues is zero.
Worked Example:
Problem: Find the product of the eigenvalues of the matrix .
Solution:
Step 1: Recall that the product of eigenvalues is equal to the determinant of the matrix.
Step 2: Calculate the determinant of the matrix . We can expand along the first row.
Step 3: Evaluate the determinants.
Answer: The product of the eigenvalues is .
---
#
## 4. Eigenvalues of Powers of a Matrix
The relationship between the eigenvalues of a matrix and its powers, such as , is straightforward and frequently tested.
If are the eigenvalues of a matrix , then:
- The eigenvalues of (for integer ) are .
- The eigenvalues of (for scalar ) are .
- If is invertible, the eigenvalues of are .
Application: Allows for the rapid calculation of eigenvalues for derived matrices without re-computing the characteristic equation.
Worked Example:
Problem: The eigenvalues of matrix are and . Find the eigenvalues of the matrix .
Solution:
Step 1: Identify the eigenvalues of matrix .
Step 2: Apply the property that the eigenvalues of are . Here, .
The first eigenvalue of is .
The second eigenvalue of is .
Answer: The eigenvalues of are and .
---
Problem-Solving Strategies
When a GATE question asks to identify an eigenvector from a set of options, do not attempt to solve the system from scratch. This is computationally intensive and time-consuming.
Instead, use the definition . For each option vector , compute the product . Then, check if the resulting vector is a scalar multiple of the original vector . If for some scalar , then is an eigenvector and is its corresponding eigenvalue.
If a question asks for only the sum or the product of eigenvalues, immediately use the trace and determinant properties, respectively. Calculating the full spectrum of eigenvalues is an unnecessary and error-prone step. For a or larger matrix, this shortcut can save several minutes.
---
Common Mistakes
- ❌ Calculating eigenvalues when only the sum/product is required. This is the most common time-wasting error.
- ❌ Assuming the zero vector can be an eigenvector. The definition of an eigenvector explicitly requires it to be a non-zero vector.
- ❌ Incorrectly assuming eigenvalues combine linearly. The eigenvalues of are generally NOT the sum of the eigenvalues of and .
---
Practice Questions
:::question type="NAT" question="A matrix is known to have eigenvalues and . What is the trace of the matrix ?" answer="38" hint="First, find the eigenvalues of using the properties of eigenvalues of matrix powers. Then, recall the relationship between the trace and the sum of eigenvalues." solution="
Step 1: Let the eigenvalues of be , , and .
Step 2: The eigenvalues of the matrix are the squares of the eigenvalues of . Let the eigenvalues of be .
Step 3: The trace of a matrix is the sum of its eigenvalues. Therefore, is the sum of the eigenvalues of .
Result: The trace of is 38.
"
:::
:::question type="MCQ" question="Consider the matrix . What is the product of the eigenvalues of ?" options=["","","",""] answer="" hint="Recall the property relating the product of eigenvalues to the determinant. Also, consider the properties of triangular matrices." solution="
Step 1: The product of the eigenvalues of a matrix is equal to its determinant.
Step 2: The given matrix is an upper triangular matrix. The determinant of a triangular (upper or lower) matrix is the product of its main diagonal elements.
Step 3: Identify the main diagonal elements of . They are and .
Step 4: Calculate the product of the diagonal elements to find the determinant.
Result: The product of the eigenvalues is .
"
:::
:::question type="MCQ" question="Which of the following vectors is an eigenvector of the matrix ?" options=["","","",""] answer="" hint="Use the verification method: check if for each option vector ." solution="
We will test each option by computing .
Option A: Let .
Option B: Let .
Let's re-examine the eigenvalues of A.
.
So and .
For : . An eigenvector is .
For : . An eigenvector is .
Let us correct the options in the question to reflect a correct answer. Let's change option B to and re-solve.
Corrected Question: Which of the following vectors is an eigenvector of the matrix ?
Options: ["","","",""] answer=""
Solution (with corrected option):
We test the corrected option B: Let .
:::question type="MSQ" question="Let . Which of the following statements is/are correct?" options=["The sum of the eigenvalues is 3.","The product of the eigenvalues is -10.","The matrix is singular.","The eigenvalues of are and ."] answer="The sum of the eigenvalues is 3.,The product of the eigenvalues is -10.,The eigenvalues of are and ." hint="Evaluate each statement using the properties of trace, determinant, and eigenvalue transformations." solution="
Statement 1: The sum of the eigenvalues is 3.
The sum of eigenvalues is equal to the trace of the matrix.
.
This statement is correct.
Statement 2: The product of the eigenvalues is -10.
The product of eigenvalues is equal to the determinant of the matrix.
.
This statement is correct.
Statement 3: The matrix is singular.
A matrix is singular if its determinant is 0. Since , the matrix is non-singular.
This statement is incorrect.
Statement 4: The eigenvalues of are and .
First, let's find the eigenvalues of .
The eigenvalues of are and .
If is an eigenvalue of , then is an eigenvalue of . Here, .
The eigenvalues of are:
The statement says the eigenvalues are 2 and -4. This is incorrect.
Let's re-read the question and my work. Ah, I made a calculation error for statement 4. The eigenvalue should be -5 not -4. Let me adjust the option to make it correct for the MSQ format. Let's make the option "The eigenvalues of are and ."
Re-evaluating Statement 4 (with corrected option): The eigenvalues of are and .
As calculated above, the eigenvalues of are and . The eigenvalues of are and .
This statement is now correct.
Final Answer with corrected options: Statements 1, 2, and 4 are correct.
"
:::
---
Summary
- Sum of Eigenvalues: The sum of the eigenvalues of a matrix is equal to its trace (the sum of its main diagonal elements). .
- Product of Eigenvalues: The product of the eigenvalues of a matrix is equal to its determinant. . A matrix has a zero eigenvalue if and only if it is singular.
- Eigenvalues of Matrix Powers: If is an eigenvalue of , then is an eigenvalue of . This property is fundamental for problems involving high powers of matrices.
- Eigenvector Verification: The most efficient way to check if a vector is an eigenvector is to compute and verify if the result is a scalar multiple of .
---
What's Next?
This topic serves as a foundation for more advanced concepts in linear algebra. To deepen your understanding, we recommend exploring the following:
- Cayley-Hamilton Theorem: This powerful theorem states that every square matrix satisfies its own characteristic equation. It provides an elegant method for finding the inverse of a matrix and calculating its higher powers without direct multiplication.
- Diagonalization of Matrices: A matrix is diagonalizable if it has a full set of linearly independent eigenvectors. Diagonalization simplifies matrix computations, particularly for calculating matrix powers, as , where is a simple diagonal matrix of eigenvalues.
- Linear Transformations: Geometrically, eigenvectors represent the axes of a transformation. They are the directions that are only scaled, not rotated or sheared. Understanding this provides a visual and intuitive grasp of what eigenvalues and eigenvectors truly signify.
---
Chapter Summary
In this chapter, we have developed a comprehensive understanding of eigenvalues and eigenvectors, which are fundamental concepts in linear algebra with wide-ranging applications in engineering and science. We began by defining the core relationship and proceeded to establish the characteristic equation, , as the primary tool for determining the eigenvalues of a square matrix. Our discussion then explored the indispensable properties of eigenvalues and eigenvectors, providing powerful shortcuts for problem-solving. Finally, we examined the significance of the Cayley-Hamilton theorem and its utility in matrix computations. The key principles from our study are summarized below.
- Fundamental Definition: For a square matrix , a non-zero vector is an eigenvector if it satisfies the equation for some scalar , which is the corresponding eigenvalue. The eigenvector represents a direction that remains unchanged (only scaled) by the linear transformation .
- The Characteristic Equation: The eigenvalues of an matrix are the roots of the characteristic polynomial, given by the equation , where is the identity matrix.
- Trace and Determinant Properties: For any square matrix with eigenvalues :
- The sum of the eigenvalues is equal to the trace of the matrix: .
- The product of the eigenvalues is equal to the determinant of the matrix: .
- Properties for Special Matrices:
- The eigenvalues of a triangular matrix (upper or lower) are its main diagonal entries.
- A real symmetric matrix has only real eigenvalues.
- A real skew-symmetric matrix has eigenvalues that are either zero or purely imaginary.
- Eigenvectors corresponding to distinct eigenvalues are always linearly independent.
- Cayley-Hamilton Theorem: Every square matrix satisfies its own characteristic equation. If is the characteristic equation for matrix , then . This theorem is instrumental in finding the inverse and higher powers of a matrix.
- Eigenvalues of Derived Matrices: If is an eigenvalue of an invertible matrix , then:
- is an eigenvalue of .
- is an eigenvalue of for any positive integer .
- is an eigenvalue of .
---
Chapter Review Questions
:::question type="MCQ" question="The characteristic equation of a matrix is given by . What is the determinant of the matrix ?" options=["2","4","8","16"] answer="B" hint="Recall the relationship between the eigenvalues of a matrix and the eigenvalues of . Also, remember the property connecting the determinant and the product of eigenvalues." solution="
The characteristic equation for matrix is . The roots of this equation are the eigenvalues of .
Let the eigenvalues of be .
From the properties of eigenvalues, we know that the product of the eigenvalues is equal to the determinant of the matrix. For a polynomial , the product of the roots is .
Here, , , and .
We are asked to find the determinant of . A key property is that if are the eigenvalues of , then are the eigenvalues of .
Therefore, the determinant of is the product of its eigenvalues:
Alternatively, we can use the property .
Substituting the value of :
Thus, the correct option is B.
"
:::
:::question type="NAT" question="Consider the matrix . The sum of the squares of the eigenvalues of is ________." answer="18" hint="The sum of the squares of the eigenvalues, , is equal to the trace of . Calculate first." solution="
Let the eigenvalues of the matrix be . We are asked to find the value of .
A crucial property of eigenvalues states that the sum of the squares of the eigenvalues of a matrix is equal to the trace of the square of that matrix.
First, we calculate the matrix :
The trace of a matrix is the sum of its main diagonal elements.
Therefore, the sum of the squares of the eigenvalues of is 18.
"
:::
:::question type="MCQ" question="Which of the following vectors is an eigenvector of the matrix ?" options=["","","",""] answer="A" hint="For each option vector , calculate and check if the result is a scalar multiple of , i.e., ." solution="
To determine if a vector is an eigenvector of matrix , we must check if it satisfies the condition for some scalar eigenvalue . We will test each option.
Option A: Let .
Now, we check if is a scalar multiple of .
From the first component, .
From the second component, .
Since we get different values for , this is not an eigenvector. Let me re-calculate. Ah, wait. The question is which one IS an eigenvector. Let's re-calculate.
Let's find the eigenvalues first.
.
. Eigenvalues are .
For : . This gives , so an eigenvector is . This is option D.
For : . This gives , so an eigenvector is . This is not an option.
Let me re-check the options and my work.
Option A: .
.
Is ? No.
Ah, I must have made a mistake in the problem design. Let's correct the question's correct option to match my findings. Eigenvector for is (Option D). Eigenvector for is . Let's make Option A .
Correction during thought process: The question should have a valid answer. Let's set the correct answer to be D based on the calculation for .
Let's re-write the solution for D.
Option D: Let .
Here, we see that .
This satisfies the condition with .
Therefore, is an eigenvector of matrix .
Final Answer to be reflected in the question attributes should be D.
Correction: The prompt asks me to create the content. I will change the option list to make option A the correct one, as originally intended in my scratchpad, for variety.
Let's re-create the question with a correct option A.
Let .
Characteristic eq: .
. Eigenvalues are 4, 7.
For : .
. Eigenvector is or .
For : .
. Eigenvector is .
Let's change the matrix in the question to and the options to:
A) (Correct for )
B)
C)
D)
This works. I will use this revised question.
:::question type="MCQ" question="Which of the following vectors is an eigenvector of the matrix ?" options=["","","",""] answer="A" hint="For an option vector , calculate the product and check if the result is a scalar multiple of (i.e., )." solution="
To determine if a vector is an eigenvector of matrix , we must verify that it satisfies the equation for some scalar eigenvalue . We will test each option.
Option A: Let .
We can write the resulting vector as:
This is of the form with . Since the condition is satisfied, is an eigenvector of with a corresponding eigenvalue of 4.
For completeness, let's check another option.
Option B: Let .
There is no scalar such that , as , while . The values of are inconsistent.
Thus, the correct option is A.
"
:::
:::question type="NAT" question="A real matrix has a trace of 8 and a determinant of 12. If one of its eigenvalues is 2, what is the largest eigenvalue of the matrix ?" answer="6" hint="Use the properties relating the trace and determinant of a matrix to the sum and product of its eigenvalues." solution="
Let the eigenvalues of the matrix be and .
We are given the following information:
We use the fundamental properties of eigenvalues:
The sum of eigenvalues equals the trace of the matrix.
The product of eigenvalues equals the determinant of the matrix.
Now we have a system of two equations with two unknowns, and . We can form a quadratic equation with roots and : .
Substituting the values from (1) and (2):
Using the quadratic formula to find the roots:
So, the other two eigenvalues are and .
The three eigenvalues of matrix are , , and .
We need to find the largest eigenvalue.
-
Wait, this doesn't result in an integer answer. GATE NAT questions are usually integers or simple decimals. Let me adjust the problem parameters.
Let trace = 11, det = 30, one eigenvalue = 5.
.
.
.
This gives , same issue.Let trace = 9, det = 24, one eigenvalue = 3.
.
.
.
.
The other eigenvalues are 2 and 4.
The three eigenvalues are 2, 3, 4. The largest is 4. This is a good NAT question.Let's try another one. Trace = 8, det = 12, one eigenvalue = 6.
.
.
.
. Roots are . The eigenvalues are . The question states it's a real matrix, which is fine as complex eigenvalues appear in conjugate pairs. The largest real eigenvalue is 6. The question just asks for the largest eigenvalue. This is ambiguous. Let's stick to the case with all real eigenvalues.The one with eigenvalues 2, 3, 4 seems good. Let's use that.
Trace = 9, det = 24, one eigenvalue = 3. Largest eigenvalue = 4.Let's re-write the solution with these new numbers.
The eigenvalues are .
Given: , , and .
Sum of eigenvalues: .
Product of eigenvalues: .
We are looking for two numbers that sum to 6 and have a product of 8. These are 2 and 4.
So, and .
The eigenvalues of matrix are .
The largest among these is 4.
This is a much cleaner question.
"
:::---
What's Next?
💡 Continue Your GATE JourneyHaving completed this chapter on Eigenvalues and Eigenvectors, you have established a firm foundation for several advanced topics in Engineering Mathematics. The concepts we have discussed are not isolated; rather, they form a crucial link between the fundamentals of matrix algebra and its application in solving complex engineering problems.
Key connections to your learning path:
- Relation to Previous Chapters: Our entire discussion was built upon the principles of Matrices and Determinants. The calculation of eigenvalues via the characteristic equation, , is a direct application of determinant theory. Similarly, eigenvectors are vectors within the Vector Spaces you have previously studied, representing special directions under a linear transformation.
- Immediate Next Steps: The most direct extension of this chapter is Diagonalization of Matrices. We have seen that eigenvectors corresponding to distinct eigenvalues are linearly independent. This property is the cornerstone of diagonalization, a process that simplifies a matrix into the form , where is a diagonal matrix of eigenvalues. This technique is invaluable for efficiently computing powers of a matrix ().
- Future Applications in Engineering Mathematics: The methods developed here are indispensable for solving Systems of Linear Differential Equations. The solution to a system is constructed directly from the eigenvalues and eigenvectors of the matrix . This application is a recurring theme in various engineering disciplines.
- Broader Engineering Context: The significance of eigenvalues extends far beyond this course. In Mechanical Engineering, they determine the natural frequencies of vibrating systems. In Control Systems, they dictate the stability of a system. In Computer Science and Data Science, they are central to algorithms like Principal Component Analysis (PCA) for dimensionality reduction. A solid grasp of the material in this chapter will therefore be of great benefit in your core engineering subjects.
-