What are the implications when matrix's lowest eigenvalue is equal to 0?What is the eigenvalue of the...
Fermat's statement about the ancients: How serious was he?
What is the logic behind charging tax _in the form of money_ for owning property when the property does not produce money?
How do we say "within a kilometer radius spherically"?
Can we completely replace inheritance using strategy pattern and dependency injection?
2019 gold coins to share
How do free-speech protections in the United States apply in public to corporate misrepresentations?
Is using 'echo' to display attacker-controlled data on the terminal dangerous?
Difference between prepositions in "...killed during/in the war"
Does the new finding on "reversing a quantum jump mid-flight" rule out any interpretations of QM?
Possible runaway argument using circuitikz
C++ logging library
Is there a set of positive integers of density 1 which contains no infinite arithmetic progression?
Who voices the small round football sized demon in Good Omens?
Are polynomials with the same roots identical?
How can I make 12 tone and atonal melodies sound interesting?
Reference to understand the notation of orbital charts
Why does this query, missing a FROM clause, not error out?
Why the output signal of my amplifier is heavily distorted
Getting UPS Power from One Room to Another
Confused with atmospheric pressure equals plastic balloon’s inner pressure
Section numbering in binary
Electricity free spaceship
Grep Match and extract
What is the best color to differentiate male and female?
What are the implications when matrix's lowest eigenvalue is equal to 0?
What is the eigenvalue of the matrix?Eigenvectors of a $2 times 2$ matrix when the eigenvalues are not integersIn what cases are the eigenvalue equal to the pole points?Eigenvectors of $left( begin{array}{ccc} a & 0 \ 0 & -b end{array} right)$Phase portrait with one eigenvalue equal to zero?Determining the stability of a system with a zero eigenvalueMultiplying an eigenvalue equation by a non-invertible matrix: what eigenvalue characteristics are retained?Is the given value an eigenvalue of a matrix.Finding the square of an eigenvalue in a Generalized eigenvalue problemIs there a fast way to compute the lowest eigenvalue of this symmetric PD matrix in this specific scenario?
$begingroup$
I have a task to solve where only eigenvalues are given and I need to calculate a matrix condition number. The formula for it requires division by the lowest eigenvalue (which is zero). In such case the condition number cannot be calculated.
Can equation system be solved if the lowest matrix eigenvalue is 0?
linear-algebra matrices eigenvalues-eigenvectors
$endgroup$
add a comment |
$begingroup$
I have a task to solve where only eigenvalues are given and I need to calculate a matrix condition number. The formula for it requires division by the lowest eigenvalue (which is zero). In such case the condition number cannot be calculated.
Can equation system be solved if the lowest matrix eigenvalue is 0?
linear-algebra matrices eigenvalues-eigenvectors
$endgroup$
add a comment |
$begingroup$
I have a task to solve where only eigenvalues are given and I need to calculate a matrix condition number. The formula for it requires division by the lowest eigenvalue (which is zero). In such case the condition number cannot be calculated.
Can equation system be solved if the lowest matrix eigenvalue is 0?
linear-algebra matrices eigenvalues-eigenvectors
$endgroup$
I have a task to solve where only eigenvalues are given and I need to calculate a matrix condition number. The formula for it requires division by the lowest eigenvalue (which is zero). In such case the condition number cannot be calculated.
Can equation system be solved if the lowest matrix eigenvalue is 0?
linear-algebra matrices eigenvalues-eigenvectors
linear-algebra matrices eigenvalues-eigenvectors
edited 7 hours ago
belford
1033
1033
asked 8 hours ago
MikeMike
1236
1236
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
$begingroup$
Recall that a matrix is invertible if and only if its determinant is non-zero, and the determinant is the product of the eigenvalues. So, having an eigenvalue of zero means that the matrix is not invertible.
Since the condition number measures how close to singular your matrix is, with larger values implying closer to singular, it makes sense that you cannot calculate it!
It is worth mentioning that for a non-singular, square matrix, the condition number induced by the $2$-norm is $kappa_2(A)=sigma_1/sigma_n$, where $sigma_1$ and $sigma_n$ denote the largest and smallest singular values of $A$, not the eigenvalues. These are not always the same as the eigenvalues of $A$ (although, if $A$ is singular, then $A^TA$ does not have full rank, and so we will have a singular value of $0$).
$endgroup$
$begingroup$
Downvoted because...?
$endgroup$
– cmk
2 hours ago
add a comment |
$begingroup$
As the previous answer suggests, the matrix is not invertible. From a different perspective we can argue that if an eigenvalue is zero, then at least two columns (or rows) are dependent. Thus, since the colums (or rows) are not independent, the matrix is singular. Therefore, it is not invertible.
$endgroup$
add a comment |
Your Answer
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%2f3255569%2fwhat-are-the-implications-when-matrixs-lowest-eigenvalue-is-equal-to-0%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
$begingroup$
Recall that a matrix is invertible if and only if its determinant is non-zero, and the determinant is the product of the eigenvalues. So, having an eigenvalue of zero means that the matrix is not invertible.
Since the condition number measures how close to singular your matrix is, with larger values implying closer to singular, it makes sense that you cannot calculate it!
It is worth mentioning that for a non-singular, square matrix, the condition number induced by the $2$-norm is $kappa_2(A)=sigma_1/sigma_n$, where $sigma_1$ and $sigma_n$ denote the largest and smallest singular values of $A$, not the eigenvalues. These are not always the same as the eigenvalues of $A$ (although, if $A$ is singular, then $A^TA$ does not have full rank, and so we will have a singular value of $0$).
$endgroup$
$begingroup$
Downvoted because...?
$endgroup$
– cmk
2 hours ago
add a comment |
$begingroup$
Recall that a matrix is invertible if and only if its determinant is non-zero, and the determinant is the product of the eigenvalues. So, having an eigenvalue of zero means that the matrix is not invertible.
Since the condition number measures how close to singular your matrix is, with larger values implying closer to singular, it makes sense that you cannot calculate it!
It is worth mentioning that for a non-singular, square matrix, the condition number induced by the $2$-norm is $kappa_2(A)=sigma_1/sigma_n$, where $sigma_1$ and $sigma_n$ denote the largest and smallest singular values of $A$, not the eigenvalues. These are not always the same as the eigenvalues of $A$ (although, if $A$ is singular, then $A^TA$ does not have full rank, and so we will have a singular value of $0$).
$endgroup$
$begingroup$
Downvoted because...?
$endgroup$
– cmk
2 hours ago
add a comment |
$begingroup$
Recall that a matrix is invertible if and only if its determinant is non-zero, and the determinant is the product of the eigenvalues. So, having an eigenvalue of zero means that the matrix is not invertible.
Since the condition number measures how close to singular your matrix is, with larger values implying closer to singular, it makes sense that you cannot calculate it!
It is worth mentioning that for a non-singular, square matrix, the condition number induced by the $2$-norm is $kappa_2(A)=sigma_1/sigma_n$, where $sigma_1$ and $sigma_n$ denote the largest and smallest singular values of $A$, not the eigenvalues. These are not always the same as the eigenvalues of $A$ (although, if $A$ is singular, then $A^TA$ does not have full rank, and so we will have a singular value of $0$).
$endgroup$
Recall that a matrix is invertible if and only if its determinant is non-zero, and the determinant is the product of the eigenvalues. So, having an eigenvalue of zero means that the matrix is not invertible.
Since the condition number measures how close to singular your matrix is, with larger values implying closer to singular, it makes sense that you cannot calculate it!
It is worth mentioning that for a non-singular, square matrix, the condition number induced by the $2$-norm is $kappa_2(A)=sigma_1/sigma_n$, where $sigma_1$ and $sigma_n$ denote the largest and smallest singular values of $A$, not the eigenvalues. These are not always the same as the eigenvalues of $A$ (although, if $A$ is singular, then $A^TA$ does not have full rank, and so we will have a singular value of $0$).
edited 8 hours ago
answered 8 hours ago
cmkcmk
2,245319
2,245319
$begingroup$
Downvoted because...?
$endgroup$
– cmk
2 hours ago
add a comment |
$begingroup$
Downvoted because...?
$endgroup$
– cmk
2 hours ago
$begingroup$
Downvoted because...?
$endgroup$
– cmk
2 hours ago
$begingroup$
Downvoted because...?
$endgroup$
– cmk
2 hours ago
add a comment |
$begingroup$
As the previous answer suggests, the matrix is not invertible. From a different perspective we can argue that if an eigenvalue is zero, then at least two columns (or rows) are dependent. Thus, since the colums (or rows) are not independent, the matrix is singular. Therefore, it is not invertible.
$endgroup$
add a comment |
$begingroup$
As the previous answer suggests, the matrix is not invertible. From a different perspective we can argue that if an eigenvalue is zero, then at least two columns (or rows) are dependent. Thus, since the colums (or rows) are not independent, the matrix is singular. Therefore, it is not invertible.
$endgroup$
add a comment |
$begingroup$
As the previous answer suggests, the matrix is not invertible. From a different perspective we can argue that if an eigenvalue is zero, then at least two columns (or rows) are dependent. Thus, since the colums (or rows) are not independent, the matrix is singular. Therefore, it is not invertible.
$endgroup$
As the previous answer suggests, the matrix is not invertible. From a different perspective we can argue that if an eigenvalue is zero, then at least two columns (or rows) are dependent. Thus, since the colums (or rows) are not independent, the matrix is singular. Therefore, it is not invertible.
answered 8 hours ago
DunkelDunkel
401211
401211
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%2f3255569%2fwhat-are-the-implications-when-matrixs-lowest-eigenvalue-is-equal-to-0%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