Gaussian Elimination without pivot
$begingroup$
click here for question
I understand Gaussian elim and the inverse, but am new to Gaussian elim without pivot. Wordiness of the question is also throwing me off. Any help will be much appreciated, thanks in advance!
calculus matrices numerical-methods gaussian-elimination
$endgroup$
add a comment |
$begingroup$
click here for question
I understand Gaussian elim and the inverse, but am new to Gaussian elim without pivot. Wordiness of the question is also throwing me off. Any help will be much appreciated, thanks in advance!
calculus matrices numerical-methods gaussian-elimination
$endgroup$
$begingroup$
You need to find $(I-A)^{-1}$?
$endgroup$
– Mehrdad Zandigohar
Mar 8 '18 at 13:52
$begingroup$
Yeah not sure how to do it without pivot
$endgroup$
– RBadger
Mar 8 '18 at 14:20
$begingroup$
First of all, you need to find $B=I-A$. Then, anything you do for finally calculating by GE should also be applied to $I$, then after all steps, you applied to $I$ you will find a matrix that is $(I-A)_{-1}$. Can you take it from here?
$endgroup$
– Mehrdad Zandigohar
Mar 8 '18 at 14:52
$begingroup$
If you need a comprehensive answer, include matrix $A$ in your question here.
$endgroup$
– Mehrdad Zandigohar
Mar 8 '18 at 15:02
$begingroup$
I don’t understand how to get matrix A, I think after I get the matrix I should be okay
$endgroup$
– RBadger
Mar 9 '18 at 13:02
add a comment |
$begingroup$
click here for question
I understand Gaussian elim and the inverse, but am new to Gaussian elim without pivot. Wordiness of the question is also throwing me off. Any help will be much appreciated, thanks in advance!
calculus matrices numerical-methods gaussian-elimination
$endgroup$
click here for question
I understand Gaussian elim and the inverse, but am new to Gaussian elim without pivot. Wordiness of the question is also throwing me off. Any help will be much appreciated, thanks in advance!
calculus matrices numerical-methods gaussian-elimination
calculus matrices numerical-methods gaussian-elimination
asked Mar 8 '18 at 13:49
RBadgerRBadger
113
113
$begingroup$
You need to find $(I-A)^{-1}$?
$endgroup$
– Mehrdad Zandigohar
Mar 8 '18 at 13:52
$begingroup$
Yeah not sure how to do it without pivot
$endgroup$
– RBadger
Mar 8 '18 at 14:20
$begingroup$
First of all, you need to find $B=I-A$. Then, anything you do for finally calculating by GE should also be applied to $I$, then after all steps, you applied to $I$ you will find a matrix that is $(I-A)_{-1}$. Can you take it from here?
$endgroup$
– Mehrdad Zandigohar
Mar 8 '18 at 14:52
$begingroup$
If you need a comprehensive answer, include matrix $A$ in your question here.
$endgroup$
– Mehrdad Zandigohar
Mar 8 '18 at 15:02
$begingroup$
I don’t understand how to get matrix A, I think after I get the matrix I should be okay
$endgroup$
– RBadger
Mar 9 '18 at 13:02
add a comment |
$begingroup$
You need to find $(I-A)^{-1}$?
$endgroup$
– Mehrdad Zandigohar
Mar 8 '18 at 13:52
$begingroup$
Yeah not sure how to do it without pivot
$endgroup$
– RBadger
Mar 8 '18 at 14:20
$begingroup$
First of all, you need to find $B=I-A$. Then, anything you do for finally calculating by GE should also be applied to $I$, then after all steps, you applied to $I$ you will find a matrix that is $(I-A)_{-1}$. Can you take it from here?
$endgroup$
– Mehrdad Zandigohar
Mar 8 '18 at 14:52
$begingroup$
If you need a comprehensive answer, include matrix $A$ in your question here.
$endgroup$
– Mehrdad Zandigohar
Mar 8 '18 at 15:02
$begingroup$
I don’t understand how to get matrix A, I think after I get the matrix I should be okay
$endgroup$
– RBadger
Mar 9 '18 at 13:02
$begingroup$
You need to find $(I-A)^{-1}$?
$endgroup$
– Mehrdad Zandigohar
Mar 8 '18 at 13:52
$begingroup$
You need to find $(I-A)^{-1}$?
$endgroup$
– Mehrdad Zandigohar
Mar 8 '18 at 13:52
$begingroup$
Yeah not sure how to do it without pivot
$endgroup$
– RBadger
Mar 8 '18 at 14:20
$begingroup$
Yeah not sure how to do it without pivot
$endgroup$
– RBadger
Mar 8 '18 at 14:20
$begingroup$
First of all, you need to find $B=I-A$. Then, anything you do for finally calculating by GE should also be applied to $I$, then after all steps, you applied to $I$ you will find a matrix that is $(I-A)_{-1}$. Can you take it from here?
$endgroup$
– Mehrdad Zandigohar
Mar 8 '18 at 14:52
$begingroup$
First of all, you need to find $B=I-A$. Then, anything you do for finally calculating by GE should also be applied to $I$, then after all steps, you applied to $I$ you will find a matrix that is $(I-A)_{-1}$. Can you take it from here?
$endgroup$
– Mehrdad Zandigohar
Mar 8 '18 at 14:52
$begingroup$
If you need a comprehensive answer, include matrix $A$ in your question here.
$endgroup$
– Mehrdad Zandigohar
Mar 8 '18 at 15:02
$begingroup$
If you need a comprehensive answer, include matrix $A$ in your question here.
$endgroup$
– Mehrdad Zandigohar
Mar 8 '18 at 15:02
$begingroup$
I don’t understand how to get matrix A, I think after I get the matrix I should be okay
$endgroup$
– RBadger
Mar 9 '18 at 13:02
$begingroup$
I don’t understand how to get matrix A, I think after I get the matrix I should be okay
$endgroup$
– RBadger
Mar 9 '18 at 13:02
add a comment |
1 Answer
1
active
oldest
votes
$begingroup$
Judging from how the question is worded, they seem to ask us not to use a permutation matrix, which in a literal sense means "pivoting" a matrix.
So solving with an A = LU Factorization should suffice. Which would involve working out E = I - A and then finding the inverse, as opposed to the more complete form PA = LU.
There wouldn't be a Gaussian Elimination without pivots, back substitution works on the fundamental idea of having pivots.
I hope that helps.
EDIT:
http://nptel.ac.in/courses/122104019/numerical-analysis/kadalbajoo/lec1/fnode5.html
Here is a small link depicting all three:
- No Pivoting.
- Partial Pivoting.
- Fully Pivoting.
$endgroup$
$begingroup$
In the last section of the image, it clearly states gaussian elimination without pivoting.
$endgroup$
– Mehrdad Zandigohar
Mar 8 '18 at 14:49
$begingroup$
@MehrdadZandigohar Yes, just like I am saying "pivoting" a matrix in a more literal way means exchanging rows. The question doesn't want us to "pivot" a matrix partially or fully. "Pivot elements" are called so because of those operations. We commonly refer to them as "pivots" but because of the operations required to find them.
$endgroup$
– Shaurya Singh
Mar 8 '18 at 14:55
$begingroup$
"There wouldn't be a Gaussian Elimination without pivots", that's not true if no diagonal elements are zero in solving steps for the division. You do not need to guess whether pivoting is needed or not when the question clearly states use GE without pivoting unless the question is wrong but it is not.
$endgroup$
– Mehrdad Zandigohar
Mar 8 '18 at 14:59
$begingroup$
I know what pivoting is! You can see here some GE method examples that are solved without pivoting. :) en.wikipedia.org/wiki/Gaussian_elimination
$endgroup$
– Mehrdad Zandigohar
Mar 8 '18 at 15:10
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%2f2682375%2fgaussian-elimination-without-pivot%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
$begingroup$
Judging from how the question is worded, they seem to ask us not to use a permutation matrix, which in a literal sense means "pivoting" a matrix.
So solving with an A = LU Factorization should suffice. Which would involve working out E = I - A and then finding the inverse, as opposed to the more complete form PA = LU.
There wouldn't be a Gaussian Elimination without pivots, back substitution works on the fundamental idea of having pivots.
I hope that helps.
EDIT:
http://nptel.ac.in/courses/122104019/numerical-analysis/kadalbajoo/lec1/fnode5.html
Here is a small link depicting all three:
- No Pivoting.
- Partial Pivoting.
- Fully Pivoting.
$endgroup$
$begingroup$
In the last section of the image, it clearly states gaussian elimination without pivoting.
$endgroup$
– Mehrdad Zandigohar
Mar 8 '18 at 14:49
$begingroup$
@MehrdadZandigohar Yes, just like I am saying "pivoting" a matrix in a more literal way means exchanging rows. The question doesn't want us to "pivot" a matrix partially or fully. "Pivot elements" are called so because of those operations. We commonly refer to them as "pivots" but because of the operations required to find them.
$endgroup$
– Shaurya Singh
Mar 8 '18 at 14:55
$begingroup$
"There wouldn't be a Gaussian Elimination without pivots", that's not true if no diagonal elements are zero in solving steps for the division. You do not need to guess whether pivoting is needed or not when the question clearly states use GE without pivoting unless the question is wrong but it is not.
$endgroup$
– Mehrdad Zandigohar
Mar 8 '18 at 14:59
$begingroup$
I know what pivoting is! You can see here some GE method examples that are solved without pivoting. :) en.wikipedia.org/wiki/Gaussian_elimination
$endgroup$
– Mehrdad Zandigohar
Mar 8 '18 at 15:10
add a comment |
$begingroup$
Judging from how the question is worded, they seem to ask us not to use a permutation matrix, which in a literal sense means "pivoting" a matrix.
So solving with an A = LU Factorization should suffice. Which would involve working out E = I - A and then finding the inverse, as opposed to the more complete form PA = LU.
There wouldn't be a Gaussian Elimination without pivots, back substitution works on the fundamental idea of having pivots.
I hope that helps.
EDIT:
http://nptel.ac.in/courses/122104019/numerical-analysis/kadalbajoo/lec1/fnode5.html
Here is a small link depicting all three:
- No Pivoting.
- Partial Pivoting.
- Fully Pivoting.
$endgroup$
$begingroup$
In the last section of the image, it clearly states gaussian elimination without pivoting.
$endgroup$
– Mehrdad Zandigohar
Mar 8 '18 at 14:49
$begingroup$
@MehrdadZandigohar Yes, just like I am saying "pivoting" a matrix in a more literal way means exchanging rows. The question doesn't want us to "pivot" a matrix partially or fully. "Pivot elements" are called so because of those operations. We commonly refer to them as "pivots" but because of the operations required to find them.
$endgroup$
– Shaurya Singh
Mar 8 '18 at 14:55
$begingroup$
"There wouldn't be a Gaussian Elimination without pivots", that's not true if no diagonal elements are zero in solving steps for the division. You do not need to guess whether pivoting is needed or not when the question clearly states use GE without pivoting unless the question is wrong but it is not.
$endgroup$
– Mehrdad Zandigohar
Mar 8 '18 at 14:59
$begingroup$
I know what pivoting is! You can see here some GE method examples that are solved without pivoting. :) en.wikipedia.org/wiki/Gaussian_elimination
$endgroup$
– Mehrdad Zandigohar
Mar 8 '18 at 15:10
add a comment |
$begingroup$
Judging from how the question is worded, they seem to ask us not to use a permutation matrix, which in a literal sense means "pivoting" a matrix.
So solving with an A = LU Factorization should suffice. Which would involve working out E = I - A and then finding the inverse, as opposed to the more complete form PA = LU.
There wouldn't be a Gaussian Elimination without pivots, back substitution works on the fundamental idea of having pivots.
I hope that helps.
EDIT:
http://nptel.ac.in/courses/122104019/numerical-analysis/kadalbajoo/lec1/fnode5.html
Here is a small link depicting all three:
- No Pivoting.
- Partial Pivoting.
- Fully Pivoting.
$endgroup$
Judging from how the question is worded, they seem to ask us not to use a permutation matrix, which in a literal sense means "pivoting" a matrix.
So solving with an A = LU Factorization should suffice. Which would involve working out E = I - A and then finding the inverse, as opposed to the more complete form PA = LU.
There wouldn't be a Gaussian Elimination without pivots, back substitution works on the fundamental idea of having pivots.
I hope that helps.
EDIT:
http://nptel.ac.in/courses/122104019/numerical-analysis/kadalbajoo/lec1/fnode5.html
Here is a small link depicting all three:
- No Pivoting.
- Partial Pivoting.
- Fully Pivoting.
edited Mar 8 '18 at 15:18
answered Mar 8 '18 at 14:37
Shaurya SinghShaurya Singh
113
113
$begingroup$
In the last section of the image, it clearly states gaussian elimination without pivoting.
$endgroup$
– Mehrdad Zandigohar
Mar 8 '18 at 14:49
$begingroup$
@MehrdadZandigohar Yes, just like I am saying "pivoting" a matrix in a more literal way means exchanging rows. The question doesn't want us to "pivot" a matrix partially or fully. "Pivot elements" are called so because of those operations. We commonly refer to them as "pivots" but because of the operations required to find them.
$endgroup$
– Shaurya Singh
Mar 8 '18 at 14:55
$begingroup$
"There wouldn't be a Gaussian Elimination without pivots", that's not true if no diagonal elements are zero in solving steps for the division. You do not need to guess whether pivoting is needed or not when the question clearly states use GE without pivoting unless the question is wrong but it is not.
$endgroup$
– Mehrdad Zandigohar
Mar 8 '18 at 14:59
$begingroup$
I know what pivoting is! You can see here some GE method examples that are solved without pivoting. :) en.wikipedia.org/wiki/Gaussian_elimination
$endgroup$
– Mehrdad Zandigohar
Mar 8 '18 at 15:10
add a comment |
$begingroup$
In the last section of the image, it clearly states gaussian elimination without pivoting.
$endgroup$
– Mehrdad Zandigohar
Mar 8 '18 at 14:49
$begingroup$
@MehrdadZandigohar Yes, just like I am saying "pivoting" a matrix in a more literal way means exchanging rows. The question doesn't want us to "pivot" a matrix partially or fully. "Pivot elements" are called so because of those operations. We commonly refer to them as "pivots" but because of the operations required to find them.
$endgroup$
– Shaurya Singh
Mar 8 '18 at 14:55
$begingroup$
"There wouldn't be a Gaussian Elimination without pivots", that's not true if no diagonal elements are zero in solving steps for the division. You do not need to guess whether pivoting is needed or not when the question clearly states use GE without pivoting unless the question is wrong but it is not.
$endgroup$
– Mehrdad Zandigohar
Mar 8 '18 at 14:59
$begingroup$
I know what pivoting is! You can see here some GE method examples that are solved without pivoting. :) en.wikipedia.org/wiki/Gaussian_elimination
$endgroup$
– Mehrdad Zandigohar
Mar 8 '18 at 15:10
$begingroup$
In the last section of the image, it clearly states gaussian elimination without pivoting.
$endgroup$
– Mehrdad Zandigohar
Mar 8 '18 at 14:49
$begingroup$
In the last section of the image, it clearly states gaussian elimination without pivoting.
$endgroup$
– Mehrdad Zandigohar
Mar 8 '18 at 14:49
$begingroup$
@MehrdadZandigohar Yes, just like I am saying "pivoting" a matrix in a more literal way means exchanging rows. The question doesn't want us to "pivot" a matrix partially or fully. "Pivot elements" are called so because of those operations. We commonly refer to them as "pivots" but because of the operations required to find them.
$endgroup$
– Shaurya Singh
Mar 8 '18 at 14:55
$begingroup$
@MehrdadZandigohar Yes, just like I am saying "pivoting" a matrix in a more literal way means exchanging rows. The question doesn't want us to "pivot" a matrix partially or fully. "Pivot elements" are called so because of those operations. We commonly refer to them as "pivots" but because of the operations required to find them.
$endgroup$
– Shaurya Singh
Mar 8 '18 at 14:55
$begingroup$
"There wouldn't be a Gaussian Elimination without pivots", that's not true if no diagonal elements are zero in solving steps for the division. You do not need to guess whether pivoting is needed or not when the question clearly states use GE without pivoting unless the question is wrong but it is not.
$endgroup$
– Mehrdad Zandigohar
Mar 8 '18 at 14:59
$begingroup$
"There wouldn't be a Gaussian Elimination without pivots", that's not true if no diagonal elements are zero in solving steps for the division. You do not need to guess whether pivoting is needed or not when the question clearly states use GE without pivoting unless the question is wrong but it is not.
$endgroup$
– Mehrdad Zandigohar
Mar 8 '18 at 14:59
$begingroup$
I know what pivoting is! You can see here some GE method examples that are solved without pivoting. :) en.wikipedia.org/wiki/Gaussian_elimination
$endgroup$
– Mehrdad Zandigohar
Mar 8 '18 at 15:10
$begingroup$
I know what pivoting is! You can see here some GE method examples that are solved without pivoting. :) en.wikipedia.org/wiki/Gaussian_elimination
$endgroup$
– Mehrdad Zandigohar
Mar 8 '18 at 15:10
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%2f2682375%2fgaussian-elimination-without-pivot%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$
You need to find $(I-A)^{-1}$?
$endgroup$
– Mehrdad Zandigohar
Mar 8 '18 at 13:52
$begingroup$
Yeah not sure how to do it without pivot
$endgroup$
– RBadger
Mar 8 '18 at 14:20
$begingroup$
First of all, you need to find $B=I-A$. Then, anything you do for finally calculating by GE should also be applied to $I$, then after all steps, you applied to $I$ you will find a matrix that is $(I-A)_{-1}$. Can you take it from here?
$endgroup$
– Mehrdad Zandigohar
Mar 8 '18 at 14:52
$begingroup$
If you need a comprehensive answer, include matrix $A$ in your question here.
$endgroup$
– Mehrdad Zandigohar
Mar 8 '18 at 15:02
$begingroup$
I don’t understand how to get matrix A, I think after I get the matrix I should be okay
$endgroup$
– RBadger
Mar 9 '18 at 13:02