Chapter 11: Problem 1
Find the eigenvalues of the following matrices: a \(A=\left(\begin{array}{rr}7 & 3 \\ 0 & -4\end{array}\right)\) b \(A=\left(\begin{array}{ll}5 & -2 \\ 4 & -1\end{array}\right)\) c \(A=\left(\begin{array}{rr}-1 & 4 \\ 2 & 1\end{array}\right)\)
Short Answer
Expert verified
Matrix a: \(7, -4\), Matrix b: \(2+\sqrt{17}, 2-\sqrt{17}\), Matrix c: \(i, -i\).
Step by step solution
01
Title - Set Up the Characteristic Equation
For each matrix, set up the characteristic equation given by \(\text{det}(A - \lambda I) = 0\).
02
Step 2a - Matrix a: Calculate Characteristic Polynomial
The characteristic polynomial for matrix a is: \(\text{det}\left(\begin{array}{rr}7 - \lambda & 3 \ 0 & -4 - \lambda\end{array}\right) = (7 - \lambda)(-4 - \lambda)\). Solve the quadratic equation \(\lambda^2 - 3\lambda - 28 = 0\).
03
Step 3a - Matrix a: Solve for Eigenvalues
Solve \((\lambda - 7)(\lambda + 4) = 0\). The solutions are \lambda = 7\ and \lambda = -4\.
04
Step 2b - Matrix b: Calculate Characteristic Polynomial
The characteristic polynomial for matrix b is: \(\text{det}\left(\begin{array}{ll}5 - \lambda & -2 \ 4 & -1 - \lambda\end{array}\right) = (5 - \lambda)(-1 - \lambda) - (-2 \cdot 4)\). Simplify to \(\lambda^2 - 4\lambda - 13=0\).
05
Step 3b - Matrix b: Solve for Eigenvalues
Solve \((\lambda - 2 + \sqrt{17})(\lambda - 2 - \sqrt{17}) = 0\). The solutions are \lambda = 2 + \sqrt{17}\ and \lambda = 2 - \sqrt{17}\.
06
Step 2c - Matrix c: Calculate Characteristic Polynomial
The characteristic polynomial for matrix c is: \(\text{det}\left(\begin{array}{rr}-1 - \lambda & 4 \ 2 & 1 - \lambda\end{array}\right) = (-1 - \lambda)(1 - \lambda) - (4 \cdot 2)\). Simplify to \(\lambda^2 + 1 = 0\).
07
Step 3c - Matrix c: Solve for Eigenvalues
Solve \(\lambda^2 = -1\). The solutions are \lambda = i\ and \lambda = -i\.
Unlock Step-by-Step Solutions & Ace Your Exams!
-
Full Textbook Solutions
Get detailed explanations and key concepts
-
Unlimited Al creation
Al flashcards, explanations, exams and more...
-
Ads-free access
To over 500 millions flashcards
-
Money-back guarantee
We refund you if you fail your exam.
Over 30 million students worldwide already upgrade their learning with 91Ó°ÊÓ!
Key Concepts
These are the key concepts you need to understand to accurately answer the question.
Characteristic Equation
The characteristic equation is essential for finding eigenvalues. For any given matrix **A**, the characteristic equation is obtained by subtracting \( \lambda I \) from \(A\) and setting the determinant to zero. Here, \(I\) is the identity matrix of the same dimension as \(A\), and \(\lambda\) is a scalar, which represents the eigenvalues we need to find. Mathematically, this is represented as \[ \text{det}(A - \lambda I) = 0 \].
Breaking it down:
Breaking it down:
- **Step 1**: Subtract \(\lambda I\) from the matrix \(A \). This means subtracting \(\lambda\) from each diagonal element of **A**.
- **Step 2**: Compute the determinant of the resultant matrix. This involves multiplying the difference terms and accounting for the signs of the permutations.
- **Step 3**: Set the determinant to zero, resulting in a characteristic equation which is typically a polynomial in \(\lambda\).
Characteristic Polynomial
The characteristic polynomial is obtained from the characteristic equation, specifically, it is the polynomial formed when calculating the determinant \( \text{det}(A - \lambda I)\).
Consider matrix **A =** \( \left( \begin{array}{ll} 5 & -2 \ \ 4 & -1 \end{array} \right) \). Subtracting \(\lambda I\) gives us **A - \lambda I =** \( \left( \begin{array}{ll} 5 - \lambda & -2 \ \ 4 & -1 - \lambda \end{array} \right) \). The determinant of this matrix is:
Consider matrix **A =** \( \left( \begin{array}{ll} 5 & -2 \ \ 4 & -1 \end{array} \right) \). Subtracting \(\lambda I\) gives us **A - \lambda I =** \( \left( \begin{array}{ll} 5 - \lambda & -2 \ \ 4 & -1 - \lambda \end{array} \right) \). The determinant of this matrix is:
- \[ \text{det}(5 - \lambda & -2 \ 4 & -1 - \lambda) = (5 - \lambda)(-1 - \lambda) - (4 \cdot -2) = \lambda^2 - 4\lambda - 13 = 0 \]
Quadratic Equation
The characteristic polynomial often reduces to a quadratic equation, especially in the case of 2x2 matrices. Recognizing and solving quadratic equations is pivotal in finding eigenvalues.
A standard quadratic equation takes the form \[ ax^2 + bx + c = 0 \]. The solutions to this equation can be found using the quadratic formula: \[ x = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a} \].
For example, in matrix **A** from the step-by-step solution: **a** = 1, **b** = -4, and **c** = -13, giving us the quadratic equation \( \lambda^2 - 4\lambda - 13 = 0 \). Plug these values into the quadratic formula:
A standard quadratic equation takes the form \[ ax^2 + bx + c = 0 \]. The solutions to this equation can be found using the quadratic formula: \[ x = \frac{-b \pm \sqrt{b^2 - 4ac}}{2a} \].
For example, in matrix **A** from the step-by-step solution: **a** = 1, **b** = -4, and **c** = -13, giving us the quadratic equation \( \lambda^2 - 4\lambda - 13 = 0 \). Plug these values into the quadratic formula:
- **Step 1**: Compute the discriminant: \( b^2 - 4ac = (-4)^2 - 4(1)(-13) = 16 + 52 = 68 \)
- **Step 2**: Plug into the quadratic formula: \( \lambda = \frac{4 \pm \sqrt{68}}{2} = 2 \pm \sqrt{17} \)