How to find Eigenvalue with Characteristic Equation?
$begingroup$
When my book explains using the characteristic equation to find eigenvalues, it gives this example.
Find the eigenvalues and eigenvectors of
A =
$begin{bmatrix}
2 & 1 & 0 \
0 & 2 & 0 \
0 & 0 & 2 \
end{bmatrix}$
$|lambda I - A| =
begin{bmatrix}
lambda - 2 & -1 & 0 \
0 & lambda - 2 & 0 \
0 & 0 & lambda - 2 \
end{bmatrix}$
= $(lambda - 2)^3$
It doesn't show any work for as how it got to $(lambda - 2)^3$. Can someone fill me in to how the book gets this result? (using quadratic equation?)
linear-algebra
$endgroup$
add a comment |
$begingroup$
When my book explains using the characteristic equation to find eigenvalues, it gives this example.
Find the eigenvalues and eigenvectors of
A =
$begin{bmatrix}
2 & 1 & 0 \
0 & 2 & 0 \
0 & 0 & 2 \
end{bmatrix}$
$|lambda I - A| =
begin{bmatrix}
lambda - 2 & -1 & 0 \
0 & lambda - 2 & 0 \
0 & 0 & lambda - 2 \
end{bmatrix}$
= $(lambda - 2)^3$
It doesn't show any work for as how it got to $(lambda - 2)^3$. Can someone fill me in to how the book gets this result? (using quadratic equation?)
linear-algebra
$endgroup$
$begingroup$
Also note that in $lambda I-A$ the entry $(1,2)$ should be $-1$, not $1$
$endgroup$
– Federico
Dec 4 '18 at 19:56
$begingroup$
fixed, thank you
$endgroup$
– Evan Kim
Dec 4 '18 at 19:58
add a comment |
$begingroup$
When my book explains using the characteristic equation to find eigenvalues, it gives this example.
Find the eigenvalues and eigenvectors of
A =
$begin{bmatrix}
2 & 1 & 0 \
0 & 2 & 0 \
0 & 0 & 2 \
end{bmatrix}$
$|lambda I - A| =
begin{bmatrix}
lambda - 2 & -1 & 0 \
0 & lambda - 2 & 0 \
0 & 0 & lambda - 2 \
end{bmatrix}$
= $(lambda - 2)^3$
It doesn't show any work for as how it got to $(lambda - 2)^3$. Can someone fill me in to how the book gets this result? (using quadratic equation?)
linear-algebra
$endgroup$
When my book explains using the characteristic equation to find eigenvalues, it gives this example.
Find the eigenvalues and eigenvectors of
A =
$begin{bmatrix}
2 & 1 & 0 \
0 & 2 & 0 \
0 & 0 & 2 \
end{bmatrix}$
$|lambda I - A| =
begin{bmatrix}
lambda - 2 & -1 & 0 \
0 & lambda - 2 & 0 \
0 & 0 & lambda - 2 \
end{bmatrix}$
= $(lambda - 2)^3$
It doesn't show any work for as how it got to $(lambda - 2)^3$. Can someone fill me in to how the book gets this result? (using quadratic equation?)
linear-algebra
linear-algebra
edited Dec 4 '18 at 19:58
Evan Kim
asked Dec 4 '18 at 19:37
Evan KimEvan Kim
998
998
$begingroup$
Also note that in $lambda I-A$ the entry $(1,2)$ should be $-1$, not $1$
$endgroup$
– Federico
Dec 4 '18 at 19:56
$begingroup$
fixed, thank you
$endgroup$
– Evan Kim
Dec 4 '18 at 19:58
add a comment |
$begingroup$
Also note that in $lambda I-A$ the entry $(1,2)$ should be $-1$, not $1$
$endgroup$
– Federico
Dec 4 '18 at 19:56
$begingroup$
fixed, thank you
$endgroup$
– Evan Kim
Dec 4 '18 at 19:58
$begingroup$
Also note that in $lambda I-A$ the entry $(1,2)$ should be $-1$, not $1$
$endgroup$
– Federico
Dec 4 '18 at 19:56
$begingroup$
Also note that in $lambda I-A$ the entry $(1,2)$ should be $-1$, not $1$
$endgroup$
– Federico
Dec 4 '18 at 19:56
$begingroup$
fixed, thank you
$endgroup$
– Evan Kim
Dec 4 '18 at 19:58
$begingroup$
fixed, thank you
$endgroup$
– Evan Kim
Dec 4 '18 at 19:58
add a comment |
3 Answers
3
active
oldest
votes
$begingroup$
The matrix $lambda I-A$ is upper triangular, so the determinant is the product of the entries on the diagonal.
Anyway, you should be able to compute the determinant of a generic matrix, even when it isn't triangular.
$endgroup$
1
$begingroup$
So in a non-triangular matrix, you just compute the determinant of the matrix and that will give you the roots?
$endgroup$
– Evan Kim
Dec 4 '18 at 19:52
$begingroup$
You compute the determinant of $lambda I-A$ and that will give you the characteristic polynomial $P_A(lambda)$. The eigenvalues of $A$ are the roots of $P_A$.
$endgroup$
– Federico
Dec 4 '18 at 19:53
$begingroup$
@Evan Yes, it is a determinant. You wrote wrongly the matrix instead, it seems that it was confusing.
$endgroup$
– user376343
Dec 4 '18 at 19:54
add a comment |
$begingroup$
A fast approach hint : The matrix given is in upper triangular form, thus the determinant is simply the product of the diagonal elements. Thus :
$$|lambda I - A | = prod_{n=1}^3 text{diag}_i(lambda I-A) = (lambda-2)^3$$
If you miss on that, calculate it the explicit way, by :
$$|lambda I - A| =
begin{vmatrix}
lambda - 2 & -1 & 0 \
0 & lambda - 2 & 0 \
0 & 0 & lambda - 2 \
end{vmatrix} = (λ-2)cdotbegin{vmatrix}λ-2 & 0 \ 0 & λ-2end{vmatrix} + 1cdot begin{vmatrix}0 & 0 \ 0 & λ-2end{vmatrix} + 0 cdot begin{vmatrix} 0 & λ-2 \ 0 & 0end{vmatrix}$$
$$Rightarrow$$
$$|lambda I - A| = (λ-2) cdot (λ-2)^2 + 0 + 0 = (λ-2)^3$$
The eigenvalues then, would simply be :
$$|lambda I - A| = 0 Rightarrow (lambda-2)^3 = 0 Leftrightarrow lambda = 2, ; text{with multiplicity of 3}$$
$endgroup$
$begingroup$
Would a valid strategy to find eigenvalues be to convert a non-triangular matrix into a triangular matrix to make finding the determinant easier?
$endgroup$
– Evan Kim
Dec 4 '18 at 19:59
$begingroup$
@EvanKim Well, that really depends on the given problem. If, for example, you have a $4 times 4$ or bigger dimension matrix, then if it's properly fixed so that it can be converted to upper triangular, it may be an easier way out then determinants since it takes a lot of time to calculate them explicitly. Other than that, on $2 times 2$ or $3 times 3$ matrices, the procedure to calculate the determinant is really fast anyway, so it wouldn't make much difference, except in the case that the given matrix is already in upper or lower triangular form (like your case).
$endgroup$
– Rebellos
Dec 4 '18 at 20:03
add a comment |
$begingroup$
In fact, your matrix is special. it makes the computation easier.
Assume $kne 2$ is an other eigenvalue. then there will exist $x,y,z$ satisfying
$$(x,y,z)ne (0,0,0)$$
and
$$2x+y=kx$$
$$2y=ky$$
$$2z=kz$$
but
$$kne 2implies z=y=x=0$$
which is in contradiction with the assumption.
$endgroup$
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
return StackExchange.using("mathjaxEditing", function () {
StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix) {
StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
});
});
}, "mathjax-editing");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "69"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
noCode: true, onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3026042%2fhow-to-find-eigenvalue-with-characteristic-equation%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
$begingroup$
The matrix $lambda I-A$ is upper triangular, so the determinant is the product of the entries on the diagonal.
Anyway, you should be able to compute the determinant of a generic matrix, even when it isn't triangular.
$endgroup$
1
$begingroup$
So in a non-triangular matrix, you just compute the determinant of the matrix and that will give you the roots?
$endgroup$
– Evan Kim
Dec 4 '18 at 19:52
$begingroup$
You compute the determinant of $lambda I-A$ and that will give you the characteristic polynomial $P_A(lambda)$. The eigenvalues of $A$ are the roots of $P_A$.
$endgroup$
– Federico
Dec 4 '18 at 19:53
$begingroup$
@Evan Yes, it is a determinant. You wrote wrongly the matrix instead, it seems that it was confusing.
$endgroup$
– user376343
Dec 4 '18 at 19:54
add a comment |
$begingroup$
The matrix $lambda I-A$ is upper triangular, so the determinant is the product of the entries on the diagonal.
Anyway, you should be able to compute the determinant of a generic matrix, even when it isn't triangular.
$endgroup$
1
$begingroup$
So in a non-triangular matrix, you just compute the determinant of the matrix and that will give you the roots?
$endgroup$
– Evan Kim
Dec 4 '18 at 19:52
$begingroup$
You compute the determinant of $lambda I-A$ and that will give you the characteristic polynomial $P_A(lambda)$. The eigenvalues of $A$ are the roots of $P_A$.
$endgroup$
– Federico
Dec 4 '18 at 19:53
$begingroup$
@Evan Yes, it is a determinant. You wrote wrongly the matrix instead, it seems that it was confusing.
$endgroup$
– user376343
Dec 4 '18 at 19:54
add a comment |
$begingroup$
The matrix $lambda I-A$ is upper triangular, so the determinant is the product of the entries on the diagonal.
Anyway, you should be able to compute the determinant of a generic matrix, even when it isn't triangular.
$endgroup$
The matrix $lambda I-A$ is upper triangular, so the determinant is the product of the entries on the diagonal.
Anyway, you should be able to compute the determinant of a generic matrix, even when it isn't triangular.
edited Dec 4 '18 at 19:54
answered Dec 4 '18 at 19:41
FedericoFederico
4,984514
4,984514
1
$begingroup$
So in a non-triangular matrix, you just compute the determinant of the matrix and that will give you the roots?
$endgroup$
– Evan Kim
Dec 4 '18 at 19:52
$begingroup$
You compute the determinant of $lambda I-A$ and that will give you the characteristic polynomial $P_A(lambda)$. The eigenvalues of $A$ are the roots of $P_A$.
$endgroup$
– Federico
Dec 4 '18 at 19:53
$begingroup$
@Evan Yes, it is a determinant. You wrote wrongly the matrix instead, it seems that it was confusing.
$endgroup$
– user376343
Dec 4 '18 at 19:54
add a comment |
1
$begingroup$
So in a non-triangular matrix, you just compute the determinant of the matrix and that will give you the roots?
$endgroup$
– Evan Kim
Dec 4 '18 at 19:52
$begingroup$
You compute the determinant of $lambda I-A$ and that will give you the characteristic polynomial $P_A(lambda)$. The eigenvalues of $A$ are the roots of $P_A$.
$endgroup$
– Federico
Dec 4 '18 at 19:53
$begingroup$
@Evan Yes, it is a determinant. You wrote wrongly the matrix instead, it seems that it was confusing.
$endgroup$
– user376343
Dec 4 '18 at 19:54
1
1
$begingroup$
So in a non-triangular matrix, you just compute the determinant of the matrix and that will give you the roots?
$endgroup$
– Evan Kim
Dec 4 '18 at 19:52
$begingroup$
So in a non-triangular matrix, you just compute the determinant of the matrix and that will give you the roots?
$endgroup$
– Evan Kim
Dec 4 '18 at 19:52
$begingroup$
You compute the determinant of $lambda I-A$ and that will give you the characteristic polynomial $P_A(lambda)$. The eigenvalues of $A$ are the roots of $P_A$.
$endgroup$
– Federico
Dec 4 '18 at 19:53
$begingroup$
You compute the determinant of $lambda I-A$ and that will give you the characteristic polynomial $P_A(lambda)$. The eigenvalues of $A$ are the roots of $P_A$.
$endgroup$
– Federico
Dec 4 '18 at 19:53
$begingroup$
@Evan Yes, it is a determinant. You wrote wrongly the matrix instead, it seems that it was confusing.
$endgroup$
– user376343
Dec 4 '18 at 19:54
$begingroup$
@Evan Yes, it is a determinant. You wrote wrongly the matrix instead, it seems that it was confusing.
$endgroup$
– user376343
Dec 4 '18 at 19:54
add a comment |
$begingroup$
A fast approach hint : The matrix given is in upper triangular form, thus the determinant is simply the product of the diagonal elements. Thus :
$$|lambda I - A | = prod_{n=1}^3 text{diag}_i(lambda I-A) = (lambda-2)^3$$
If you miss on that, calculate it the explicit way, by :
$$|lambda I - A| =
begin{vmatrix}
lambda - 2 & -1 & 0 \
0 & lambda - 2 & 0 \
0 & 0 & lambda - 2 \
end{vmatrix} = (λ-2)cdotbegin{vmatrix}λ-2 & 0 \ 0 & λ-2end{vmatrix} + 1cdot begin{vmatrix}0 & 0 \ 0 & λ-2end{vmatrix} + 0 cdot begin{vmatrix} 0 & λ-2 \ 0 & 0end{vmatrix}$$
$$Rightarrow$$
$$|lambda I - A| = (λ-2) cdot (λ-2)^2 + 0 + 0 = (λ-2)^3$$
The eigenvalues then, would simply be :
$$|lambda I - A| = 0 Rightarrow (lambda-2)^3 = 0 Leftrightarrow lambda = 2, ; text{with multiplicity of 3}$$
$endgroup$
$begingroup$
Would a valid strategy to find eigenvalues be to convert a non-triangular matrix into a triangular matrix to make finding the determinant easier?
$endgroup$
– Evan Kim
Dec 4 '18 at 19:59
$begingroup$
@EvanKim Well, that really depends on the given problem. If, for example, you have a $4 times 4$ or bigger dimension matrix, then if it's properly fixed so that it can be converted to upper triangular, it may be an easier way out then determinants since it takes a lot of time to calculate them explicitly. Other than that, on $2 times 2$ or $3 times 3$ matrices, the procedure to calculate the determinant is really fast anyway, so it wouldn't make much difference, except in the case that the given matrix is already in upper or lower triangular form (like your case).
$endgroup$
– Rebellos
Dec 4 '18 at 20:03
add a comment |
$begingroup$
A fast approach hint : The matrix given is in upper triangular form, thus the determinant is simply the product of the diagonal elements. Thus :
$$|lambda I - A | = prod_{n=1}^3 text{diag}_i(lambda I-A) = (lambda-2)^3$$
If you miss on that, calculate it the explicit way, by :
$$|lambda I - A| =
begin{vmatrix}
lambda - 2 & -1 & 0 \
0 & lambda - 2 & 0 \
0 & 0 & lambda - 2 \
end{vmatrix} = (λ-2)cdotbegin{vmatrix}λ-2 & 0 \ 0 & λ-2end{vmatrix} + 1cdot begin{vmatrix}0 & 0 \ 0 & λ-2end{vmatrix} + 0 cdot begin{vmatrix} 0 & λ-2 \ 0 & 0end{vmatrix}$$
$$Rightarrow$$
$$|lambda I - A| = (λ-2) cdot (λ-2)^2 + 0 + 0 = (λ-2)^3$$
The eigenvalues then, would simply be :
$$|lambda I - A| = 0 Rightarrow (lambda-2)^3 = 0 Leftrightarrow lambda = 2, ; text{with multiplicity of 3}$$
$endgroup$
$begingroup$
Would a valid strategy to find eigenvalues be to convert a non-triangular matrix into a triangular matrix to make finding the determinant easier?
$endgroup$
– Evan Kim
Dec 4 '18 at 19:59
$begingroup$
@EvanKim Well, that really depends on the given problem. If, for example, you have a $4 times 4$ or bigger dimension matrix, then if it's properly fixed so that it can be converted to upper triangular, it may be an easier way out then determinants since it takes a lot of time to calculate them explicitly. Other than that, on $2 times 2$ or $3 times 3$ matrices, the procedure to calculate the determinant is really fast anyway, so it wouldn't make much difference, except in the case that the given matrix is already in upper or lower triangular form (like your case).
$endgroup$
– Rebellos
Dec 4 '18 at 20:03
add a comment |
$begingroup$
A fast approach hint : The matrix given is in upper triangular form, thus the determinant is simply the product of the diagonal elements. Thus :
$$|lambda I - A | = prod_{n=1}^3 text{diag}_i(lambda I-A) = (lambda-2)^3$$
If you miss on that, calculate it the explicit way, by :
$$|lambda I - A| =
begin{vmatrix}
lambda - 2 & -1 & 0 \
0 & lambda - 2 & 0 \
0 & 0 & lambda - 2 \
end{vmatrix} = (λ-2)cdotbegin{vmatrix}λ-2 & 0 \ 0 & λ-2end{vmatrix} + 1cdot begin{vmatrix}0 & 0 \ 0 & λ-2end{vmatrix} + 0 cdot begin{vmatrix} 0 & λ-2 \ 0 & 0end{vmatrix}$$
$$Rightarrow$$
$$|lambda I - A| = (λ-2) cdot (λ-2)^2 + 0 + 0 = (λ-2)^3$$
The eigenvalues then, would simply be :
$$|lambda I - A| = 0 Rightarrow (lambda-2)^3 = 0 Leftrightarrow lambda = 2, ; text{with multiplicity of 3}$$
$endgroup$
A fast approach hint : The matrix given is in upper triangular form, thus the determinant is simply the product of the diagonal elements. Thus :
$$|lambda I - A | = prod_{n=1}^3 text{diag}_i(lambda I-A) = (lambda-2)^3$$
If you miss on that, calculate it the explicit way, by :
$$|lambda I - A| =
begin{vmatrix}
lambda - 2 & -1 & 0 \
0 & lambda - 2 & 0 \
0 & 0 & lambda - 2 \
end{vmatrix} = (λ-2)cdotbegin{vmatrix}λ-2 & 0 \ 0 & λ-2end{vmatrix} + 1cdot begin{vmatrix}0 & 0 \ 0 & λ-2end{vmatrix} + 0 cdot begin{vmatrix} 0 & λ-2 \ 0 & 0end{vmatrix}$$
$$Rightarrow$$
$$|lambda I - A| = (λ-2) cdot (λ-2)^2 + 0 + 0 = (λ-2)^3$$
The eigenvalues then, would simply be :
$$|lambda I - A| = 0 Rightarrow (lambda-2)^3 = 0 Leftrightarrow lambda = 2, ; text{with multiplicity of 3}$$
edited Dec 4 '18 at 19:59
answered Dec 4 '18 at 19:44
RebellosRebellos
14.5k31246
14.5k31246
$begingroup$
Would a valid strategy to find eigenvalues be to convert a non-triangular matrix into a triangular matrix to make finding the determinant easier?
$endgroup$
– Evan Kim
Dec 4 '18 at 19:59
$begingroup$
@EvanKim Well, that really depends on the given problem. If, for example, you have a $4 times 4$ or bigger dimension matrix, then if it's properly fixed so that it can be converted to upper triangular, it may be an easier way out then determinants since it takes a lot of time to calculate them explicitly. Other than that, on $2 times 2$ or $3 times 3$ matrices, the procedure to calculate the determinant is really fast anyway, so it wouldn't make much difference, except in the case that the given matrix is already in upper or lower triangular form (like your case).
$endgroup$
– Rebellos
Dec 4 '18 at 20:03
add a comment |
$begingroup$
Would a valid strategy to find eigenvalues be to convert a non-triangular matrix into a triangular matrix to make finding the determinant easier?
$endgroup$
– Evan Kim
Dec 4 '18 at 19:59
$begingroup$
@EvanKim Well, that really depends on the given problem. If, for example, you have a $4 times 4$ or bigger dimension matrix, then if it's properly fixed so that it can be converted to upper triangular, it may be an easier way out then determinants since it takes a lot of time to calculate them explicitly. Other than that, on $2 times 2$ or $3 times 3$ matrices, the procedure to calculate the determinant is really fast anyway, so it wouldn't make much difference, except in the case that the given matrix is already in upper or lower triangular form (like your case).
$endgroup$
– Rebellos
Dec 4 '18 at 20:03
$begingroup$
Would a valid strategy to find eigenvalues be to convert a non-triangular matrix into a triangular matrix to make finding the determinant easier?
$endgroup$
– Evan Kim
Dec 4 '18 at 19:59
$begingroup$
Would a valid strategy to find eigenvalues be to convert a non-triangular matrix into a triangular matrix to make finding the determinant easier?
$endgroup$
– Evan Kim
Dec 4 '18 at 19:59
$begingroup$
@EvanKim Well, that really depends on the given problem. If, for example, you have a $4 times 4$ or bigger dimension matrix, then if it's properly fixed so that it can be converted to upper triangular, it may be an easier way out then determinants since it takes a lot of time to calculate them explicitly. Other than that, on $2 times 2$ or $3 times 3$ matrices, the procedure to calculate the determinant is really fast anyway, so it wouldn't make much difference, except in the case that the given matrix is already in upper or lower triangular form (like your case).
$endgroup$
– Rebellos
Dec 4 '18 at 20:03
$begingroup$
@EvanKim Well, that really depends on the given problem. If, for example, you have a $4 times 4$ or bigger dimension matrix, then if it's properly fixed so that it can be converted to upper triangular, it may be an easier way out then determinants since it takes a lot of time to calculate them explicitly. Other than that, on $2 times 2$ or $3 times 3$ matrices, the procedure to calculate the determinant is really fast anyway, so it wouldn't make much difference, except in the case that the given matrix is already in upper or lower triangular form (like your case).
$endgroup$
– Rebellos
Dec 4 '18 at 20:03
add a comment |
$begingroup$
In fact, your matrix is special. it makes the computation easier.
Assume $kne 2$ is an other eigenvalue. then there will exist $x,y,z$ satisfying
$$(x,y,z)ne (0,0,0)$$
and
$$2x+y=kx$$
$$2y=ky$$
$$2z=kz$$
but
$$kne 2implies z=y=x=0$$
which is in contradiction with the assumption.
$endgroup$
add a comment |
$begingroup$
In fact, your matrix is special. it makes the computation easier.
Assume $kne 2$ is an other eigenvalue. then there will exist $x,y,z$ satisfying
$$(x,y,z)ne (0,0,0)$$
and
$$2x+y=kx$$
$$2y=ky$$
$$2z=kz$$
but
$$kne 2implies z=y=x=0$$
which is in contradiction with the assumption.
$endgroup$
add a comment |
$begingroup$
In fact, your matrix is special. it makes the computation easier.
Assume $kne 2$ is an other eigenvalue. then there will exist $x,y,z$ satisfying
$$(x,y,z)ne (0,0,0)$$
and
$$2x+y=kx$$
$$2y=ky$$
$$2z=kz$$
but
$$kne 2implies z=y=x=0$$
which is in contradiction with the assumption.
$endgroup$
In fact, your matrix is special. it makes the computation easier.
Assume $kne 2$ is an other eigenvalue. then there will exist $x,y,z$ satisfying
$$(x,y,z)ne (0,0,0)$$
and
$$2x+y=kx$$
$$2y=ky$$
$$2z=kz$$
but
$$kne 2implies z=y=x=0$$
which is in contradiction with the assumption.
answered Dec 4 '18 at 19:46
hamam_Abdallahhamam_Abdallah
38k21634
38k21634
add a comment |
add a comment |
Thanks for contributing an answer to Mathematics Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
Use MathJax to format equations. MathJax reference.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3026042%2fhow-to-find-eigenvalue-with-characteristic-equation%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
$begingroup$
Also note that in $lambda I-A$ the entry $(1,2)$ should be $-1$, not $1$
$endgroup$
– Federico
Dec 4 '18 at 19:56
$begingroup$
fixed, thank you
$endgroup$
– Evan Kim
Dec 4 '18 at 19:58