Eigenvalue problem - Right hand matrix is singular
$begingroup$
I am constructing an eigenvalue problem of the form
$$[R]{c} = lambda [F]{c}$$
The matrices are populated by the results of some integrals
$$
I_{i,j} = int f(x,y,i,j) dxdy quad for quad i=1,..,N quad j=1,...,M
$$
All the numbers are coming out wrong the eigenvalues are nonsensical and do not converge as the matrices get larger, they just get larger in turn, and I am trying to troubleshoot. I noticed that $[F]$ always is singular. I added some "salt" ($1e-10$) so that the program did not rebel on me but I am thinkning that this might indicate some deeper issue about my problem formulation/computation, although I am not really sure what.
So my question is: Does the fact that $[F]$ is singular, point to any such problems and if yes how should I go about correcting it? Furthermore any advice on where to focus the troubleshooting?
Cheers
eigenvalues-eigenvectors programming
$endgroup$
|
show 8 more comments
$begingroup$
I am constructing an eigenvalue problem of the form
$$[R]{c} = lambda [F]{c}$$
The matrices are populated by the results of some integrals
$$
I_{i,j} = int f(x,y,i,j) dxdy quad for quad i=1,..,N quad j=1,...,M
$$
All the numbers are coming out wrong the eigenvalues are nonsensical and do not converge as the matrices get larger, they just get larger in turn, and I am trying to troubleshoot. I noticed that $[F]$ always is singular. I added some "salt" ($1e-10$) so that the program did not rebel on me but I am thinkning that this might indicate some deeper issue about my problem formulation/computation, although I am not really sure what.
So my question is: Does the fact that $[F]$ is singular, point to any such problems and if yes how should I go about correcting it? Furthermore any advice on where to focus the troubleshooting?
Cheers
eigenvalues-eigenvectors programming
$endgroup$
$begingroup$
Your issue is about the so-called "generalized eigenvalue problem". See paragraph 7.3 in en.wikipedia.org/wiki/Eigendecomposition_of_a_matrix.
$endgroup$
– Jean Marie
Nov 22 '18 at 11:25
$begingroup$
I would try at first to convert your issue into the eigenvalue problem $F^+Rc=lambda c$ where $F^+$ is the pseudo-inverse of $F$.
$endgroup$
– Jean Marie
Nov 22 '18 at 11:29
1
$begingroup$
I am trying to find the lowest value that would cause buckling on a composite plate. This would be the lowest eigenvalue, and the program should converge on that solution as the matrices get larger. Here is a sample $R$ matrix: Here an F matrix:
$endgroup$
– Tristan Greenwood
Nov 24 '18 at 17:25
1
$begingroup$
$$R = begin{array}{cccc} 0.8334971 & 4.17815877 & 13.86869435 & 34.56910269\ 4.63449654 & 13.83872632 & 33.52342807 & 69.92804483\ 16.28196565 & 35.93753681 & 69.83052589 & 126.14788633\ 41.73478583 & 78.23144509 & 132.15137615 & 216.12985001\ end{array} $$
$endgroup$
– Tristan Greenwood
Nov 24 '18 at 17:39
1
$begingroup$
Typical (singular) F matrix $$ F = begin{array}{cccc} 2.4674011 & 2.4674011 & 2.4674011 & 2.4674011\ 9.8696044 & 9.8696044 & 9.8696044 & 9.8696044\ 22.2066099 & 22.2066099 & 22.2066099 & 22.2066099\ 39.4784176 & 39.4784176 & 39.4784176 & 39.4784176\ end{array} $$
$endgroup$
– Tristan Greenwood
Nov 24 '18 at 17:54
|
show 8 more comments
$begingroup$
I am constructing an eigenvalue problem of the form
$$[R]{c} = lambda [F]{c}$$
The matrices are populated by the results of some integrals
$$
I_{i,j} = int f(x,y,i,j) dxdy quad for quad i=1,..,N quad j=1,...,M
$$
All the numbers are coming out wrong the eigenvalues are nonsensical and do not converge as the matrices get larger, they just get larger in turn, and I am trying to troubleshoot. I noticed that $[F]$ always is singular. I added some "salt" ($1e-10$) so that the program did not rebel on me but I am thinkning that this might indicate some deeper issue about my problem formulation/computation, although I am not really sure what.
So my question is: Does the fact that $[F]$ is singular, point to any such problems and if yes how should I go about correcting it? Furthermore any advice on where to focus the troubleshooting?
Cheers
eigenvalues-eigenvectors programming
$endgroup$
I am constructing an eigenvalue problem of the form
$$[R]{c} = lambda [F]{c}$$
The matrices are populated by the results of some integrals
$$
I_{i,j} = int f(x,y,i,j) dxdy quad for quad i=1,..,N quad j=1,...,M
$$
All the numbers are coming out wrong the eigenvalues are nonsensical and do not converge as the matrices get larger, they just get larger in turn, and I am trying to troubleshoot. I noticed that $[F]$ always is singular. I added some "salt" ($1e-10$) so that the program did not rebel on me but I am thinkning that this might indicate some deeper issue about my problem formulation/computation, although I am not really sure what.
So my question is: Does the fact that $[F]$ is singular, point to any such problems and if yes how should I go about correcting it? Furthermore any advice on where to focus the troubleshooting?
Cheers
eigenvalues-eigenvectors programming
eigenvalues-eigenvectors programming
edited Jan 9 at 11:02
Tristan Greenwood
asked Nov 22 '18 at 11:17
Tristan GreenwoodTristan Greenwood
266
266
$begingroup$
Your issue is about the so-called "generalized eigenvalue problem". See paragraph 7.3 in en.wikipedia.org/wiki/Eigendecomposition_of_a_matrix.
$endgroup$
– Jean Marie
Nov 22 '18 at 11:25
$begingroup$
I would try at first to convert your issue into the eigenvalue problem $F^+Rc=lambda c$ where $F^+$ is the pseudo-inverse of $F$.
$endgroup$
– Jean Marie
Nov 22 '18 at 11:29
1
$begingroup$
I am trying to find the lowest value that would cause buckling on a composite plate. This would be the lowest eigenvalue, and the program should converge on that solution as the matrices get larger. Here is a sample $R$ matrix: Here an F matrix:
$endgroup$
– Tristan Greenwood
Nov 24 '18 at 17:25
1
$begingroup$
$$R = begin{array}{cccc} 0.8334971 & 4.17815877 & 13.86869435 & 34.56910269\ 4.63449654 & 13.83872632 & 33.52342807 & 69.92804483\ 16.28196565 & 35.93753681 & 69.83052589 & 126.14788633\ 41.73478583 & 78.23144509 & 132.15137615 & 216.12985001\ end{array} $$
$endgroup$
– Tristan Greenwood
Nov 24 '18 at 17:39
1
$begingroup$
Typical (singular) F matrix $$ F = begin{array}{cccc} 2.4674011 & 2.4674011 & 2.4674011 & 2.4674011\ 9.8696044 & 9.8696044 & 9.8696044 & 9.8696044\ 22.2066099 & 22.2066099 & 22.2066099 & 22.2066099\ 39.4784176 & 39.4784176 & 39.4784176 & 39.4784176\ end{array} $$
$endgroup$
– Tristan Greenwood
Nov 24 '18 at 17:54
|
show 8 more comments
$begingroup$
Your issue is about the so-called "generalized eigenvalue problem". See paragraph 7.3 in en.wikipedia.org/wiki/Eigendecomposition_of_a_matrix.
$endgroup$
– Jean Marie
Nov 22 '18 at 11:25
$begingroup$
I would try at first to convert your issue into the eigenvalue problem $F^+Rc=lambda c$ where $F^+$ is the pseudo-inverse of $F$.
$endgroup$
– Jean Marie
Nov 22 '18 at 11:29
1
$begingroup$
I am trying to find the lowest value that would cause buckling on a composite plate. This would be the lowest eigenvalue, and the program should converge on that solution as the matrices get larger. Here is a sample $R$ matrix: Here an F matrix:
$endgroup$
– Tristan Greenwood
Nov 24 '18 at 17:25
1
$begingroup$
$$R = begin{array}{cccc} 0.8334971 & 4.17815877 & 13.86869435 & 34.56910269\ 4.63449654 & 13.83872632 & 33.52342807 & 69.92804483\ 16.28196565 & 35.93753681 & 69.83052589 & 126.14788633\ 41.73478583 & 78.23144509 & 132.15137615 & 216.12985001\ end{array} $$
$endgroup$
– Tristan Greenwood
Nov 24 '18 at 17:39
1
$begingroup$
Typical (singular) F matrix $$ F = begin{array}{cccc} 2.4674011 & 2.4674011 & 2.4674011 & 2.4674011\ 9.8696044 & 9.8696044 & 9.8696044 & 9.8696044\ 22.2066099 & 22.2066099 & 22.2066099 & 22.2066099\ 39.4784176 & 39.4784176 & 39.4784176 & 39.4784176\ end{array} $$
$endgroup$
– Tristan Greenwood
Nov 24 '18 at 17:54
$begingroup$
Your issue is about the so-called "generalized eigenvalue problem". See paragraph 7.3 in en.wikipedia.org/wiki/Eigendecomposition_of_a_matrix.
$endgroup$
– Jean Marie
Nov 22 '18 at 11:25
$begingroup$
Your issue is about the so-called "generalized eigenvalue problem". See paragraph 7.3 in en.wikipedia.org/wiki/Eigendecomposition_of_a_matrix.
$endgroup$
– Jean Marie
Nov 22 '18 at 11:25
$begingroup$
I would try at first to convert your issue into the eigenvalue problem $F^+Rc=lambda c$ where $F^+$ is the pseudo-inverse of $F$.
$endgroup$
– Jean Marie
Nov 22 '18 at 11:29
$begingroup$
I would try at first to convert your issue into the eigenvalue problem $F^+Rc=lambda c$ where $F^+$ is the pseudo-inverse of $F$.
$endgroup$
– Jean Marie
Nov 22 '18 at 11:29
1
1
$begingroup$
I am trying to find the lowest value that would cause buckling on a composite plate. This would be the lowest eigenvalue, and the program should converge on that solution as the matrices get larger. Here is a sample $R$ matrix: Here an F matrix:
$endgroup$
– Tristan Greenwood
Nov 24 '18 at 17:25
$begingroup$
I am trying to find the lowest value that would cause buckling on a composite plate. This would be the lowest eigenvalue, and the program should converge on that solution as the matrices get larger. Here is a sample $R$ matrix: Here an F matrix:
$endgroup$
– Tristan Greenwood
Nov 24 '18 at 17:25
1
1
$begingroup$
$$R = begin{array}{cccc} 0.8334971 & 4.17815877 & 13.86869435 & 34.56910269\ 4.63449654 & 13.83872632 & 33.52342807 & 69.92804483\ 16.28196565 & 35.93753681 & 69.83052589 & 126.14788633\ 41.73478583 & 78.23144509 & 132.15137615 & 216.12985001\ end{array} $$
$endgroup$
– Tristan Greenwood
Nov 24 '18 at 17:39
$begingroup$
$$R = begin{array}{cccc} 0.8334971 & 4.17815877 & 13.86869435 & 34.56910269\ 4.63449654 & 13.83872632 & 33.52342807 & 69.92804483\ 16.28196565 & 35.93753681 & 69.83052589 & 126.14788633\ 41.73478583 & 78.23144509 & 132.15137615 & 216.12985001\ end{array} $$
$endgroup$
– Tristan Greenwood
Nov 24 '18 at 17:39
1
1
$begingroup$
Typical (singular) F matrix $$ F = begin{array}{cccc} 2.4674011 & 2.4674011 & 2.4674011 & 2.4674011\ 9.8696044 & 9.8696044 & 9.8696044 & 9.8696044\ 22.2066099 & 22.2066099 & 22.2066099 & 22.2066099\ 39.4784176 & 39.4784176 & 39.4784176 & 39.4784176\ end{array} $$
$endgroup$
– Tristan Greenwood
Nov 24 '18 at 17:54
$begingroup$
Typical (singular) F matrix $$ F = begin{array}{cccc} 2.4674011 & 2.4674011 & 2.4674011 & 2.4674011\ 9.8696044 & 9.8696044 & 9.8696044 & 9.8696044\ 22.2066099 & 22.2066099 & 22.2066099 & 22.2066099\ 39.4784176 & 39.4784176 & 39.4784176 & 39.4784176\ end{array} $$
$endgroup$
– Tristan Greenwood
Nov 24 '18 at 17:54
|
show 8 more comments
2 Answers
2
active
oldest
votes
$begingroup$
I don't see how I can mark a comment as the correct answer but after much pain and tears, using the pseudo-inverse matrix as suggested by Jean Marie yielded the best results. Not completely there yet, the resulting eigenvalues are always what I am looking for divided by 2 for some reason, but it's getting there.
$endgroup$
add a comment |
$begingroup$
If $F$ is rank one (as in the example you gave) the generalized eigenproblem
$$Rc=lambda Fc tag{1}$$
has indeed (according to you terms) a "deeper" issue.
Indeed, if $F$ is rank one, we can write it under the form :
$$F=C mathbb{U}^T tag{2}$$
with $C$ any column of $F$, (e.g. $2.4, 9.8,22.2,39.4$ in the example you have given) and $ mathbb{U}$ the column vector of $mathbb{R^4}$ with null entries.
Thus (1) becomes $Rc=lambda C(mathbb{U}^T c)$ ; as parentheses enclose in fact a number, one gets $Rc=mu C$ for a certain $mu$ ; otherwise said (provided $R$ is invertible):
$$c=mu R^{-1}C tag{3}$$
giving a a unique family of (generalized) eigenvectors ($mu$ has no constraint on it).
Having an eigenvector, it is of course easy to get the corresponding eigenvalue.
Remark : in fact, of course, this reasoning works as well in nD.
$endgroup$
$begingroup$
$ mu = lambda (U^{T}c)$ ?
$endgroup$
– Tristan Greenwood
Nov 26 '18 at 11:47
$begingroup$
Yes, exactly...
$endgroup$
– Jean Marie
Nov 26 '18 at 18:18
$begingroup$
Has my answer been satisfying for you ?
$endgroup$
– Jean Marie
Dec 19 '18 at 21:19
$begingroup$
The final answer has not been much of a help to be honest, but the suggestion of the pseudoinverse has helped a lot, mainly since I was not aware of its existence sadly. After a lot more tweaking on different parts of the code it yielded the best results. Thank you very much for taking all this time to help
$endgroup$
– Tristan Greenwood
Jan 9 at 10:55
$begingroup$
I understand. Nevertheless, there was another side in my contribution : the remark that your matrix has identical columns (= rank one).
$endgroup$
– Jean Marie
Jan 9 at 11:12
|
show 4 more comments
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%2f3009015%2feigenvalue-problem-right-hand-matrix-is-singular%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$
I don't see how I can mark a comment as the correct answer but after much pain and tears, using the pseudo-inverse matrix as suggested by Jean Marie yielded the best results. Not completely there yet, the resulting eigenvalues are always what I am looking for divided by 2 for some reason, but it's getting there.
$endgroup$
add a comment |
$begingroup$
I don't see how I can mark a comment as the correct answer but after much pain and tears, using the pseudo-inverse matrix as suggested by Jean Marie yielded the best results. Not completely there yet, the resulting eigenvalues are always what I am looking for divided by 2 for some reason, but it's getting there.
$endgroup$
add a comment |
$begingroup$
I don't see how I can mark a comment as the correct answer but after much pain and tears, using the pseudo-inverse matrix as suggested by Jean Marie yielded the best results. Not completely there yet, the resulting eigenvalues are always what I am looking for divided by 2 for some reason, but it's getting there.
$endgroup$
I don't see how I can mark a comment as the correct answer but after much pain and tears, using the pseudo-inverse matrix as suggested by Jean Marie yielded the best results. Not completely there yet, the resulting eigenvalues are always what I am looking for divided by 2 for some reason, but it's getting there.
answered Jan 9 at 11:07
Tristan GreenwoodTristan Greenwood
266
266
add a comment |
add a comment |
$begingroup$
If $F$ is rank one (as in the example you gave) the generalized eigenproblem
$$Rc=lambda Fc tag{1}$$
has indeed (according to you terms) a "deeper" issue.
Indeed, if $F$ is rank one, we can write it under the form :
$$F=C mathbb{U}^T tag{2}$$
with $C$ any column of $F$, (e.g. $2.4, 9.8,22.2,39.4$ in the example you have given) and $ mathbb{U}$ the column vector of $mathbb{R^4}$ with null entries.
Thus (1) becomes $Rc=lambda C(mathbb{U}^T c)$ ; as parentheses enclose in fact a number, one gets $Rc=mu C$ for a certain $mu$ ; otherwise said (provided $R$ is invertible):
$$c=mu R^{-1}C tag{3}$$
giving a a unique family of (generalized) eigenvectors ($mu$ has no constraint on it).
Having an eigenvector, it is of course easy to get the corresponding eigenvalue.
Remark : in fact, of course, this reasoning works as well in nD.
$endgroup$
$begingroup$
$ mu = lambda (U^{T}c)$ ?
$endgroup$
– Tristan Greenwood
Nov 26 '18 at 11:47
$begingroup$
Yes, exactly...
$endgroup$
– Jean Marie
Nov 26 '18 at 18:18
$begingroup$
Has my answer been satisfying for you ?
$endgroup$
– Jean Marie
Dec 19 '18 at 21:19
$begingroup$
The final answer has not been much of a help to be honest, but the suggestion of the pseudoinverse has helped a lot, mainly since I was not aware of its existence sadly. After a lot more tweaking on different parts of the code it yielded the best results. Thank you very much for taking all this time to help
$endgroup$
– Tristan Greenwood
Jan 9 at 10:55
$begingroup$
I understand. Nevertheless, there was another side in my contribution : the remark that your matrix has identical columns (= rank one).
$endgroup$
– Jean Marie
Jan 9 at 11:12
|
show 4 more comments
$begingroup$
If $F$ is rank one (as in the example you gave) the generalized eigenproblem
$$Rc=lambda Fc tag{1}$$
has indeed (according to you terms) a "deeper" issue.
Indeed, if $F$ is rank one, we can write it under the form :
$$F=C mathbb{U}^T tag{2}$$
with $C$ any column of $F$, (e.g. $2.4, 9.8,22.2,39.4$ in the example you have given) and $ mathbb{U}$ the column vector of $mathbb{R^4}$ with null entries.
Thus (1) becomes $Rc=lambda C(mathbb{U}^T c)$ ; as parentheses enclose in fact a number, one gets $Rc=mu C$ for a certain $mu$ ; otherwise said (provided $R$ is invertible):
$$c=mu R^{-1}C tag{3}$$
giving a a unique family of (generalized) eigenvectors ($mu$ has no constraint on it).
Having an eigenvector, it is of course easy to get the corresponding eigenvalue.
Remark : in fact, of course, this reasoning works as well in nD.
$endgroup$
$begingroup$
$ mu = lambda (U^{T}c)$ ?
$endgroup$
– Tristan Greenwood
Nov 26 '18 at 11:47
$begingroup$
Yes, exactly...
$endgroup$
– Jean Marie
Nov 26 '18 at 18:18
$begingroup$
Has my answer been satisfying for you ?
$endgroup$
– Jean Marie
Dec 19 '18 at 21:19
$begingroup$
The final answer has not been much of a help to be honest, but the suggestion of the pseudoinverse has helped a lot, mainly since I was not aware of its existence sadly. After a lot more tweaking on different parts of the code it yielded the best results. Thank you very much for taking all this time to help
$endgroup$
– Tristan Greenwood
Jan 9 at 10:55
$begingroup$
I understand. Nevertheless, there was another side in my contribution : the remark that your matrix has identical columns (= rank one).
$endgroup$
– Jean Marie
Jan 9 at 11:12
|
show 4 more comments
$begingroup$
If $F$ is rank one (as in the example you gave) the generalized eigenproblem
$$Rc=lambda Fc tag{1}$$
has indeed (according to you terms) a "deeper" issue.
Indeed, if $F$ is rank one, we can write it under the form :
$$F=C mathbb{U}^T tag{2}$$
with $C$ any column of $F$, (e.g. $2.4, 9.8,22.2,39.4$ in the example you have given) and $ mathbb{U}$ the column vector of $mathbb{R^4}$ with null entries.
Thus (1) becomes $Rc=lambda C(mathbb{U}^T c)$ ; as parentheses enclose in fact a number, one gets $Rc=mu C$ for a certain $mu$ ; otherwise said (provided $R$ is invertible):
$$c=mu R^{-1}C tag{3}$$
giving a a unique family of (generalized) eigenvectors ($mu$ has no constraint on it).
Having an eigenvector, it is of course easy to get the corresponding eigenvalue.
Remark : in fact, of course, this reasoning works as well in nD.
$endgroup$
If $F$ is rank one (as in the example you gave) the generalized eigenproblem
$$Rc=lambda Fc tag{1}$$
has indeed (according to you terms) a "deeper" issue.
Indeed, if $F$ is rank one, we can write it under the form :
$$F=C mathbb{U}^T tag{2}$$
with $C$ any column of $F$, (e.g. $2.4, 9.8,22.2,39.4$ in the example you have given) and $ mathbb{U}$ the column vector of $mathbb{R^4}$ with null entries.
Thus (1) becomes $Rc=lambda C(mathbb{U}^T c)$ ; as parentheses enclose in fact a number, one gets $Rc=mu C$ for a certain $mu$ ; otherwise said (provided $R$ is invertible):
$$c=mu R^{-1}C tag{3}$$
giving a a unique family of (generalized) eigenvectors ($mu$ has no constraint on it).
Having an eigenvector, it is of course easy to get the corresponding eigenvalue.
Remark : in fact, of course, this reasoning works as well in nD.
edited Nov 25 '18 at 17:41
answered Nov 25 '18 at 11:18
Jean MarieJean Marie
30.3k42051
30.3k42051
$begingroup$
$ mu = lambda (U^{T}c)$ ?
$endgroup$
– Tristan Greenwood
Nov 26 '18 at 11:47
$begingroup$
Yes, exactly...
$endgroup$
– Jean Marie
Nov 26 '18 at 18:18
$begingroup$
Has my answer been satisfying for you ?
$endgroup$
– Jean Marie
Dec 19 '18 at 21:19
$begingroup$
The final answer has not been much of a help to be honest, but the suggestion of the pseudoinverse has helped a lot, mainly since I was not aware of its existence sadly. After a lot more tweaking on different parts of the code it yielded the best results. Thank you very much for taking all this time to help
$endgroup$
– Tristan Greenwood
Jan 9 at 10:55
$begingroup$
I understand. Nevertheless, there was another side in my contribution : the remark that your matrix has identical columns (= rank one).
$endgroup$
– Jean Marie
Jan 9 at 11:12
|
show 4 more comments
$begingroup$
$ mu = lambda (U^{T}c)$ ?
$endgroup$
– Tristan Greenwood
Nov 26 '18 at 11:47
$begingroup$
Yes, exactly...
$endgroup$
– Jean Marie
Nov 26 '18 at 18:18
$begingroup$
Has my answer been satisfying for you ?
$endgroup$
– Jean Marie
Dec 19 '18 at 21:19
$begingroup$
The final answer has not been much of a help to be honest, but the suggestion of the pseudoinverse has helped a lot, mainly since I was not aware of its existence sadly. After a lot more tweaking on different parts of the code it yielded the best results. Thank you very much for taking all this time to help
$endgroup$
– Tristan Greenwood
Jan 9 at 10:55
$begingroup$
I understand. Nevertheless, there was another side in my contribution : the remark that your matrix has identical columns (= rank one).
$endgroup$
– Jean Marie
Jan 9 at 11:12
$begingroup$
$ mu = lambda (U^{T}c)$ ?
$endgroup$
– Tristan Greenwood
Nov 26 '18 at 11:47
$begingroup$
$ mu = lambda (U^{T}c)$ ?
$endgroup$
– Tristan Greenwood
Nov 26 '18 at 11:47
$begingroup$
Yes, exactly...
$endgroup$
– Jean Marie
Nov 26 '18 at 18:18
$begingroup$
Yes, exactly...
$endgroup$
– Jean Marie
Nov 26 '18 at 18:18
$begingroup$
Has my answer been satisfying for you ?
$endgroup$
– Jean Marie
Dec 19 '18 at 21:19
$begingroup$
Has my answer been satisfying for you ?
$endgroup$
– Jean Marie
Dec 19 '18 at 21:19
$begingroup$
The final answer has not been much of a help to be honest, but the suggestion of the pseudoinverse has helped a lot, mainly since I was not aware of its existence sadly. After a lot more tweaking on different parts of the code it yielded the best results. Thank you very much for taking all this time to help
$endgroup$
– Tristan Greenwood
Jan 9 at 10:55
$begingroup$
The final answer has not been much of a help to be honest, but the suggestion of the pseudoinverse has helped a lot, mainly since I was not aware of its existence sadly. After a lot more tweaking on different parts of the code it yielded the best results. Thank you very much for taking all this time to help
$endgroup$
– Tristan Greenwood
Jan 9 at 10:55
$begingroup$
I understand. Nevertheless, there was another side in my contribution : the remark that your matrix has identical columns (= rank one).
$endgroup$
– Jean Marie
Jan 9 at 11:12
$begingroup$
I understand. Nevertheless, there was another side in my contribution : the remark that your matrix has identical columns (= rank one).
$endgroup$
– Jean Marie
Jan 9 at 11:12
|
show 4 more comments
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%2f3009015%2feigenvalue-problem-right-hand-matrix-is-singular%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$
Your issue is about the so-called "generalized eigenvalue problem". See paragraph 7.3 in en.wikipedia.org/wiki/Eigendecomposition_of_a_matrix.
$endgroup$
– Jean Marie
Nov 22 '18 at 11:25
$begingroup$
I would try at first to convert your issue into the eigenvalue problem $F^+Rc=lambda c$ where $F^+$ is the pseudo-inverse of $F$.
$endgroup$
– Jean Marie
Nov 22 '18 at 11:29
1
$begingroup$
I am trying to find the lowest value that would cause buckling on a composite plate. This would be the lowest eigenvalue, and the program should converge on that solution as the matrices get larger. Here is a sample $R$ matrix: Here an F matrix:
$endgroup$
– Tristan Greenwood
Nov 24 '18 at 17:25
1
$begingroup$
$$R = begin{array}{cccc} 0.8334971 & 4.17815877 & 13.86869435 & 34.56910269\ 4.63449654 & 13.83872632 & 33.52342807 & 69.92804483\ 16.28196565 & 35.93753681 & 69.83052589 & 126.14788633\ 41.73478583 & 78.23144509 & 132.15137615 & 216.12985001\ end{array} $$
$endgroup$
– Tristan Greenwood
Nov 24 '18 at 17:39
1
$begingroup$
Typical (singular) F matrix $$ F = begin{array}{cccc} 2.4674011 & 2.4674011 & 2.4674011 & 2.4674011\ 9.8696044 & 9.8696044 & 9.8696044 & 9.8696044\ 22.2066099 & 22.2066099 & 22.2066099 & 22.2066099\ 39.4784176 & 39.4784176 & 39.4784176 & 39.4784176\ end{array} $$
$endgroup$
– Tristan Greenwood
Nov 24 '18 at 17:54