Finding the sec. Eigenvector, when knowing the first Eigenvector and Eigenvalue
$begingroup$
So here is my problem,
Let A be a symmetric Matrix (2x2) with EV=(-2, 3) and the Eigenvalue being -5.
Find the 2. Eigenvector to the second Eigenvalue.
The only info i can think of is that the EV of a symmetric matrix have to be orthogonal, so the dot product has to be 0.
So -2x1 +3x2 =0
I then can fix x1=a for example and then calculate, x2=2/3
$$ (1, 2/3)^t *a, $$
for all a Elements of R without 0
Is this the correct answer it seems a bit too simple....
linear-algebra eigenvalues-eigenvectors
$endgroup$
add a comment |
$begingroup$
So here is my problem,
Let A be a symmetric Matrix (2x2) with EV=(-2, 3) and the Eigenvalue being -5.
Find the 2. Eigenvector to the second Eigenvalue.
The only info i can think of is that the EV of a symmetric matrix have to be orthogonal, so the dot product has to be 0.
So -2x1 +3x2 =0
I then can fix x1=a for example and then calculate, x2=2/3
$$ (1, 2/3)^t *a, $$
for all a Elements of R without 0
Is this the correct answer it seems a bit too simple....
linear-algebra eigenvalues-eigenvectors
$endgroup$
add a comment |
$begingroup$
So here is my problem,
Let A be a symmetric Matrix (2x2) with EV=(-2, 3) and the Eigenvalue being -5.
Find the 2. Eigenvector to the second Eigenvalue.
The only info i can think of is that the EV of a symmetric matrix have to be orthogonal, so the dot product has to be 0.
So -2x1 +3x2 =0
I then can fix x1=a for example and then calculate, x2=2/3
$$ (1, 2/3)^t *a, $$
for all a Elements of R without 0
Is this the correct answer it seems a bit too simple....
linear-algebra eigenvalues-eigenvectors
$endgroup$
So here is my problem,
Let A be a symmetric Matrix (2x2) with EV=(-2, 3) and the Eigenvalue being -5.
Find the 2. Eigenvector to the second Eigenvalue.
The only info i can think of is that the EV of a symmetric matrix have to be orthogonal, so the dot product has to be 0.
So -2x1 +3x2 =0
I then can fix x1=a for example and then calculate, x2=2/3
$$ (1, 2/3)^t *a, $$
for all a Elements of R without 0
Is this the correct answer it seems a bit too simple....
linear-algebra eigenvalues-eigenvectors
linear-algebra eigenvalues-eigenvectors
asked Dec 9 '18 at 19:50
LillysLillys
778
778
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
$begingroup$
You know that $begin{pmatrix}-2\3end{pmatrix}$ is an eigenvector relative to $-5$. You correctly argue that the eigenvectors relative to the other eigenvalues are orthogonal to this one, so we find $-2x_1+3x_2=0$. Any such vector is good, so we can take $begin{pmatrix}3\2end{pmatrix}$.
You are correct.
The spectral theorem says that
$$
A=-5vv^T+lambda ww^T
$$
where $v$ and $w$ are the normalization of the two eigenvectors. There is no way to determine the second eigenvalue from the given data. You have
$$
A=-frac{5}{13}begin{pmatrix} 4 & -6 \ -6 & 9end{pmatrix}
+frac{lambda}{13}begin{pmatrix} 9 & 6 \ 6 & 4end{pmatrix}
$$
$endgroup$
add a comment |
$begingroup$
Your solution and reasoning are correct. Every $2times2$ symmetric matrix has a pair of orthogonal eigenvectors. Thus, having one of the two eigenvectors specifies the other, as in two dimensions there are only two orthogonal directions.
If you want to see this algebraically, it follows from
begin{multline}
left[begin{matrix} a & b \ b & cend{matrix}right]left[begin{matrix} x \ yend{matrix}right] = lambda_1 left[begin{matrix} x \ yend{matrix}right]Longrightarrowbegin{matrix}a x + b y = lambda_1 x \ b x + c y = lambda_1 yend{matrix}Longrightarrowbegin{matrix} (c-lambda_1)y + b x =0 \ -b y +(lambda_1 - a)x = 0end{matrix} \ Longrightarrowbegin{matrix} -(a - a - c + lambda_1)y + b x =0 \ -b y +(c - c + lambda_1 - a)x = 0end{matrix}Longrightarrowbegin{matrix} -ay + b x = -(a+c-lambda_1)y \ -b y +c x = (a + c -lambda_1) x end{matrix}\Longrightarrowleft[begin{matrix} a & b \ b & cend{matrix}right]left[begin{matrix} -y \ xend{matrix}right]=(a + c - lambda_1) left[begin{matrix} -y \ xend{matrix}right].
end{multline}
$endgroup$
add a comment |
$begingroup$
If $$M=begin{pmatrix}
a & b \ b & c
end{pmatrix}.$$
Then $lambda+ lambda ' = a+c$ and $lambda lambda ' = ac-b^2$ and $$-2a+3b =10$$ $$-2b+3c =-15$$
Let $b=6t$ and $lambda ' = -5$ then $$a= 9t-5$$ $$c= 4t-5$$
so we have $lambda = 13t-5$. Now we see that your matrix is not uniqely determined: $$M=begin{pmatrix}
9t-5 & 6t \ 6t & 4t-5
end{pmatrix}.$$
$endgroup$
$begingroup$
Sorry I still don’t get it. U used the trace, and than that the product of the eigenvalues =the determinant?? I have never heard of it. How did you get to the equations and how do i solve them for an Eigenvector, i have 3 variables and two equations.
$endgroup$
– Lillys
Dec 9 '18 at 20:06
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%2f3032882%2ffinding-the-sec-eigenvector-when-knowing-the-first-eigenvector-and-eigenvalue%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$
You know that $begin{pmatrix}-2\3end{pmatrix}$ is an eigenvector relative to $-5$. You correctly argue that the eigenvectors relative to the other eigenvalues are orthogonal to this one, so we find $-2x_1+3x_2=0$. Any such vector is good, so we can take $begin{pmatrix}3\2end{pmatrix}$.
You are correct.
The spectral theorem says that
$$
A=-5vv^T+lambda ww^T
$$
where $v$ and $w$ are the normalization of the two eigenvectors. There is no way to determine the second eigenvalue from the given data. You have
$$
A=-frac{5}{13}begin{pmatrix} 4 & -6 \ -6 & 9end{pmatrix}
+frac{lambda}{13}begin{pmatrix} 9 & 6 \ 6 & 4end{pmatrix}
$$
$endgroup$
add a comment |
$begingroup$
You know that $begin{pmatrix}-2\3end{pmatrix}$ is an eigenvector relative to $-5$. You correctly argue that the eigenvectors relative to the other eigenvalues are orthogonal to this one, so we find $-2x_1+3x_2=0$. Any such vector is good, so we can take $begin{pmatrix}3\2end{pmatrix}$.
You are correct.
The spectral theorem says that
$$
A=-5vv^T+lambda ww^T
$$
where $v$ and $w$ are the normalization of the two eigenvectors. There is no way to determine the second eigenvalue from the given data. You have
$$
A=-frac{5}{13}begin{pmatrix} 4 & -6 \ -6 & 9end{pmatrix}
+frac{lambda}{13}begin{pmatrix} 9 & 6 \ 6 & 4end{pmatrix}
$$
$endgroup$
add a comment |
$begingroup$
You know that $begin{pmatrix}-2\3end{pmatrix}$ is an eigenvector relative to $-5$. You correctly argue that the eigenvectors relative to the other eigenvalues are orthogonal to this one, so we find $-2x_1+3x_2=0$. Any such vector is good, so we can take $begin{pmatrix}3\2end{pmatrix}$.
You are correct.
The spectral theorem says that
$$
A=-5vv^T+lambda ww^T
$$
where $v$ and $w$ are the normalization of the two eigenvectors. There is no way to determine the second eigenvalue from the given data. You have
$$
A=-frac{5}{13}begin{pmatrix} 4 & -6 \ -6 & 9end{pmatrix}
+frac{lambda}{13}begin{pmatrix} 9 & 6 \ 6 & 4end{pmatrix}
$$
$endgroup$
You know that $begin{pmatrix}-2\3end{pmatrix}$ is an eigenvector relative to $-5$. You correctly argue that the eigenvectors relative to the other eigenvalues are orthogonal to this one, so we find $-2x_1+3x_2=0$. Any such vector is good, so we can take $begin{pmatrix}3\2end{pmatrix}$.
You are correct.
The spectral theorem says that
$$
A=-5vv^T+lambda ww^T
$$
where $v$ and $w$ are the normalization of the two eigenvectors. There is no way to determine the second eigenvalue from the given data. You have
$$
A=-frac{5}{13}begin{pmatrix} 4 & -6 \ -6 & 9end{pmatrix}
+frac{lambda}{13}begin{pmatrix} 9 & 6 \ 6 & 4end{pmatrix}
$$
answered Dec 9 '18 at 21:07
egregegreg
181k1485202
181k1485202
add a comment |
add a comment |
$begingroup$
Your solution and reasoning are correct. Every $2times2$ symmetric matrix has a pair of orthogonal eigenvectors. Thus, having one of the two eigenvectors specifies the other, as in two dimensions there are only two orthogonal directions.
If you want to see this algebraically, it follows from
begin{multline}
left[begin{matrix} a & b \ b & cend{matrix}right]left[begin{matrix} x \ yend{matrix}right] = lambda_1 left[begin{matrix} x \ yend{matrix}right]Longrightarrowbegin{matrix}a x + b y = lambda_1 x \ b x + c y = lambda_1 yend{matrix}Longrightarrowbegin{matrix} (c-lambda_1)y + b x =0 \ -b y +(lambda_1 - a)x = 0end{matrix} \ Longrightarrowbegin{matrix} -(a - a - c + lambda_1)y + b x =0 \ -b y +(c - c + lambda_1 - a)x = 0end{matrix}Longrightarrowbegin{matrix} -ay + b x = -(a+c-lambda_1)y \ -b y +c x = (a + c -lambda_1) x end{matrix}\Longrightarrowleft[begin{matrix} a & b \ b & cend{matrix}right]left[begin{matrix} -y \ xend{matrix}right]=(a + c - lambda_1) left[begin{matrix} -y \ xend{matrix}right].
end{multline}
$endgroup$
add a comment |
$begingroup$
Your solution and reasoning are correct. Every $2times2$ symmetric matrix has a pair of orthogonal eigenvectors. Thus, having one of the two eigenvectors specifies the other, as in two dimensions there are only two orthogonal directions.
If you want to see this algebraically, it follows from
begin{multline}
left[begin{matrix} a & b \ b & cend{matrix}right]left[begin{matrix} x \ yend{matrix}right] = lambda_1 left[begin{matrix} x \ yend{matrix}right]Longrightarrowbegin{matrix}a x + b y = lambda_1 x \ b x + c y = lambda_1 yend{matrix}Longrightarrowbegin{matrix} (c-lambda_1)y + b x =0 \ -b y +(lambda_1 - a)x = 0end{matrix} \ Longrightarrowbegin{matrix} -(a - a - c + lambda_1)y + b x =0 \ -b y +(c - c + lambda_1 - a)x = 0end{matrix}Longrightarrowbegin{matrix} -ay + b x = -(a+c-lambda_1)y \ -b y +c x = (a + c -lambda_1) x end{matrix}\Longrightarrowleft[begin{matrix} a & b \ b & cend{matrix}right]left[begin{matrix} -y \ xend{matrix}right]=(a + c - lambda_1) left[begin{matrix} -y \ xend{matrix}right].
end{multline}
$endgroup$
add a comment |
$begingroup$
Your solution and reasoning are correct. Every $2times2$ symmetric matrix has a pair of orthogonal eigenvectors. Thus, having one of the two eigenvectors specifies the other, as in two dimensions there are only two orthogonal directions.
If you want to see this algebraically, it follows from
begin{multline}
left[begin{matrix} a & b \ b & cend{matrix}right]left[begin{matrix} x \ yend{matrix}right] = lambda_1 left[begin{matrix} x \ yend{matrix}right]Longrightarrowbegin{matrix}a x + b y = lambda_1 x \ b x + c y = lambda_1 yend{matrix}Longrightarrowbegin{matrix} (c-lambda_1)y + b x =0 \ -b y +(lambda_1 - a)x = 0end{matrix} \ Longrightarrowbegin{matrix} -(a - a - c + lambda_1)y + b x =0 \ -b y +(c - c + lambda_1 - a)x = 0end{matrix}Longrightarrowbegin{matrix} -ay + b x = -(a+c-lambda_1)y \ -b y +c x = (a + c -lambda_1) x end{matrix}\Longrightarrowleft[begin{matrix} a & b \ b & cend{matrix}right]left[begin{matrix} -y \ xend{matrix}right]=(a + c - lambda_1) left[begin{matrix} -y \ xend{matrix}right].
end{multline}
$endgroup$
Your solution and reasoning are correct. Every $2times2$ symmetric matrix has a pair of orthogonal eigenvectors. Thus, having one of the two eigenvectors specifies the other, as in two dimensions there are only two orthogonal directions.
If you want to see this algebraically, it follows from
begin{multline}
left[begin{matrix} a & b \ b & cend{matrix}right]left[begin{matrix} x \ yend{matrix}right] = lambda_1 left[begin{matrix} x \ yend{matrix}right]Longrightarrowbegin{matrix}a x + b y = lambda_1 x \ b x + c y = lambda_1 yend{matrix}Longrightarrowbegin{matrix} (c-lambda_1)y + b x =0 \ -b y +(lambda_1 - a)x = 0end{matrix} \ Longrightarrowbegin{matrix} -(a - a - c + lambda_1)y + b x =0 \ -b y +(c - c + lambda_1 - a)x = 0end{matrix}Longrightarrowbegin{matrix} -ay + b x = -(a+c-lambda_1)y \ -b y +c x = (a + c -lambda_1) x end{matrix}\Longrightarrowleft[begin{matrix} a & b \ b & cend{matrix}right]left[begin{matrix} -y \ xend{matrix}right]=(a + c - lambda_1) left[begin{matrix} -y \ xend{matrix}right].
end{multline}
answered Dec 9 '18 at 21:00
eyeballfrogeyeballfrog
6,103629
6,103629
add a comment |
add a comment |
$begingroup$
If $$M=begin{pmatrix}
a & b \ b & c
end{pmatrix}.$$
Then $lambda+ lambda ' = a+c$ and $lambda lambda ' = ac-b^2$ and $$-2a+3b =10$$ $$-2b+3c =-15$$
Let $b=6t$ and $lambda ' = -5$ then $$a= 9t-5$$ $$c= 4t-5$$
so we have $lambda = 13t-5$. Now we see that your matrix is not uniqely determined: $$M=begin{pmatrix}
9t-5 & 6t \ 6t & 4t-5
end{pmatrix}.$$
$endgroup$
$begingroup$
Sorry I still don’t get it. U used the trace, and than that the product of the eigenvalues =the determinant?? I have never heard of it. How did you get to the equations and how do i solve them for an Eigenvector, i have 3 variables and two equations.
$endgroup$
– Lillys
Dec 9 '18 at 20:06
add a comment |
$begingroup$
If $$M=begin{pmatrix}
a & b \ b & c
end{pmatrix}.$$
Then $lambda+ lambda ' = a+c$ and $lambda lambda ' = ac-b^2$ and $$-2a+3b =10$$ $$-2b+3c =-15$$
Let $b=6t$ and $lambda ' = -5$ then $$a= 9t-5$$ $$c= 4t-5$$
so we have $lambda = 13t-5$. Now we see that your matrix is not uniqely determined: $$M=begin{pmatrix}
9t-5 & 6t \ 6t & 4t-5
end{pmatrix}.$$
$endgroup$
$begingroup$
Sorry I still don’t get it. U used the trace, and than that the product of the eigenvalues =the determinant?? I have never heard of it. How did you get to the equations and how do i solve them for an Eigenvector, i have 3 variables and two equations.
$endgroup$
– Lillys
Dec 9 '18 at 20:06
add a comment |
$begingroup$
If $$M=begin{pmatrix}
a & b \ b & c
end{pmatrix}.$$
Then $lambda+ lambda ' = a+c$ and $lambda lambda ' = ac-b^2$ and $$-2a+3b =10$$ $$-2b+3c =-15$$
Let $b=6t$ and $lambda ' = -5$ then $$a= 9t-5$$ $$c= 4t-5$$
so we have $lambda = 13t-5$. Now we see that your matrix is not uniqely determined: $$M=begin{pmatrix}
9t-5 & 6t \ 6t & 4t-5
end{pmatrix}.$$
$endgroup$
If $$M=begin{pmatrix}
a & b \ b & c
end{pmatrix}.$$
Then $lambda+ lambda ' = a+c$ and $lambda lambda ' = ac-b^2$ and $$-2a+3b =10$$ $$-2b+3c =-15$$
Let $b=6t$ and $lambda ' = -5$ then $$a= 9t-5$$ $$c= 4t-5$$
so we have $lambda = 13t-5$. Now we see that your matrix is not uniqely determined: $$M=begin{pmatrix}
9t-5 & 6t \ 6t & 4t-5
end{pmatrix}.$$
edited Dec 9 '18 at 20:15
answered Dec 9 '18 at 19:58
greedoidgreedoid
40.1k114799
40.1k114799
$begingroup$
Sorry I still don’t get it. U used the trace, and than that the product of the eigenvalues =the determinant?? I have never heard of it. How did you get to the equations and how do i solve them for an Eigenvector, i have 3 variables and two equations.
$endgroup$
– Lillys
Dec 9 '18 at 20:06
add a comment |
$begingroup$
Sorry I still don’t get it. U used the trace, and than that the product of the eigenvalues =the determinant?? I have never heard of it. How did you get to the equations and how do i solve them for an Eigenvector, i have 3 variables and two equations.
$endgroup$
– Lillys
Dec 9 '18 at 20:06
$begingroup$
Sorry I still don’t get it. U used the trace, and than that the product of the eigenvalues =the determinant?? I have never heard of it. How did you get to the equations and how do i solve them for an Eigenvector, i have 3 variables and two equations.
$endgroup$
– Lillys
Dec 9 '18 at 20:06
$begingroup$
Sorry I still don’t get it. U used the trace, and than that the product of the eigenvalues =the determinant?? I have never heard of it. How did you get to the equations and how do i solve them for an Eigenvector, i have 3 variables and two equations.
$endgroup$
– Lillys
Dec 9 '18 at 20:06
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%2f3032882%2ffinding-the-sec-eigenvector-when-knowing-the-first-eigenvector-and-eigenvalue%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