Optimal pivoting strategy in LU factorization
up vote
0
down vote
favorite
I'm currently reading the book Numerical Linear Algebra by Lloyd N. Trefethen and David Bau, III, working my way through the required lectures for my Numerical Analysis class. The current subject is LU factorization, and while reading Lecture 21 about Pivoting (in Gaussian Elimination), I came across the statement that in practice, partial pivoting is equally as good as complete pivoting, while requiring inspection of a much smaller number of entries.
I'm pretty sure I understand correctly what partial and complete pivoting mean, namely with complete pivoting the entire $A_{k:m, k:m}$ submatrix is examined while with partial pivoting only the $A_{k:m, k}$ column is examined for an optimal pivot (the largest possible value, that is (right?)).
This seems very wrong to me and I'm surely missing some trivial argument for why this must be true. How can we be sure that part of the $k$th column of A always contains the biggest value in the entire submatrix? Am I right in assuming that the author meant to say that the increased gain from choosing the optimal value in the entire submatrix would be vastly overshadowed by the sheer amount of time needed to find it, and that only considering the first column of the submatrix yields good results?
numerical-methods numerical-linear-algebra gaussian-elimination lu-decomposition
add a comment |
up vote
0
down vote
favorite
I'm currently reading the book Numerical Linear Algebra by Lloyd N. Trefethen and David Bau, III, working my way through the required lectures for my Numerical Analysis class. The current subject is LU factorization, and while reading Lecture 21 about Pivoting (in Gaussian Elimination), I came across the statement that in practice, partial pivoting is equally as good as complete pivoting, while requiring inspection of a much smaller number of entries.
I'm pretty sure I understand correctly what partial and complete pivoting mean, namely with complete pivoting the entire $A_{k:m, k:m}$ submatrix is examined while with partial pivoting only the $A_{k:m, k}$ column is examined for an optimal pivot (the largest possible value, that is (right?)).
This seems very wrong to me and I'm surely missing some trivial argument for why this must be true. How can we be sure that part of the $k$th column of A always contains the biggest value in the entire submatrix? Am I right in assuming that the author meant to say that the increased gain from choosing the optimal value in the entire submatrix would be vastly overshadowed by the sheer amount of time needed to find it, and that only considering the first column of the submatrix yields good results?
numerical-methods numerical-linear-algebra gaussian-elimination lu-decomposition
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
I'm currently reading the book Numerical Linear Algebra by Lloyd N. Trefethen and David Bau, III, working my way through the required lectures for my Numerical Analysis class. The current subject is LU factorization, and while reading Lecture 21 about Pivoting (in Gaussian Elimination), I came across the statement that in practice, partial pivoting is equally as good as complete pivoting, while requiring inspection of a much smaller number of entries.
I'm pretty sure I understand correctly what partial and complete pivoting mean, namely with complete pivoting the entire $A_{k:m, k:m}$ submatrix is examined while with partial pivoting only the $A_{k:m, k}$ column is examined for an optimal pivot (the largest possible value, that is (right?)).
This seems very wrong to me and I'm surely missing some trivial argument for why this must be true. How can we be sure that part of the $k$th column of A always contains the biggest value in the entire submatrix? Am I right in assuming that the author meant to say that the increased gain from choosing the optimal value in the entire submatrix would be vastly overshadowed by the sheer amount of time needed to find it, and that only considering the first column of the submatrix yields good results?
numerical-methods numerical-linear-algebra gaussian-elimination lu-decomposition
I'm currently reading the book Numerical Linear Algebra by Lloyd N. Trefethen and David Bau, III, working my way through the required lectures for my Numerical Analysis class. The current subject is LU factorization, and while reading Lecture 21 about Pivoting (in Gaussian Elimination), I came across the statement that in practice, partial pivoting is equally as good as complete pivoting, while requiring inspection of a much smaller number of entries.
I'm pretty sure I understand correctly what partial and complete pivoting mean, namely with complete pivoting the entire $A_{k:m, k:m}$ submatrix is examined while with partial pivoting only the $A_{k:m, k}$ column is examined for an optimal pivot (the largest possible value, that is (right?)).
This seems very wrong to me and I'm surely missing some trivial argument for why this must be true. How can we be sure that part of the $k$th column of A always contains the biggest value in the entire submatrix? Am I right in assuming that the author meant to say that the increased gain from choosing the optimal value in the entire submatrix would be vastly overshadowed by the sheer amount of time needed to find it, and that only considering the first column of the submatrix yields good results?
numerical-methods numerical-linear-algebra gaussian-elimination lu-decomposition
numerical-methods numerical-linear-algebra gaussian-elimination lu-decomposition
asked Nov 17 at 20:14
Peiffap
346
346
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
1
down vote
accepted
The authors do not claim that the partial and complete pivoting are equivalent and that the optimal pivot at each step of the elimination must be in the first column of the working sub-matrix.
What they claim merely is that partial and complete pivoting strategies are equally good in the sense that the growth factor obtained by the partial pivoting strategy is not much worse than that obtained with the complete pivoting for vast majority of matrices arising in practice. There is no way how to prove this as there is no rigorous definition of what a practical matrix is and this claim is simply a result of decades of experience.
There are well known examples showing that the partial pivoting can be much worse than the complete pivoting so this claim is not generally true.
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
accepted
The authors do not claim that the partial and complete pivoting are equivalent and that the optimal pivot at each step of the elimination must be in the first column of the working sub-matrix.
What they claim merely is that partial and complete pivoting strategies are equally good in the sense that the growth factor obtained by the partial pivoting strategy is not much worse than that obtained with the complete pivoting for vast majority of matrices arising in practice. There is no way how to prove this as there is no rigorous definition of what a practical matrix is and this claim is simply a result of decades of experience.
There are well known examples showing that the partial pivoting can be much worse than the complete pivoting so this claim is not generally true.
add a comment |
up vote
1
down vote
accepted
The authors do not claim that the partial and complete pivoting are equivalent and that the optimal pivot at each step of the elimination must be in the first column of the working sub-matrix.
What they claim merely is that partial and complete pivoting strategies are equally good in the sense that the growth factor obtained by the partial pivoting strategy is not much worse than that obtained with the complete pivoting for vast majority of matrices arising in practice. There is no way how to prove this as there is no rigorous definition of what a practical matrix is and this claim is simply a result of decades of experience.
There are well known examples showing that the partial pivoting can be much worse than the complete pivoting so this claim is not generally true.
add a comment |
up vote
1
down vote
accepted
up vote
1
down vote
accepted
The authors do not claim that the partial and complete pivoting are equivalent and that the optimal pivot at each step of the elimination must be in the first column of the working sub-matrix.
What they claim merely is that partial and complete pivoting strategies are equally good in the sense that the growth factor obtained by the partial pivoting strategy is not much worse than that obtained with the complete pivoting for vast majority of matrices arising in practice. There is no way how to prove this as there is no rigorous definition of what a practical matrix is and this claim is simply a result of decades of experience.
There are well known examples showing that the partial pivoting can be much worse than the complete pivoting so this claim is not generally true.
The authors do not claim that the partial and complete pivoting are equivalent and that the optimal pivot at each step of the elimination must be in the first column of the working sub-matrix.
What they claim merely is that partial and complete pivoting strategies are equally good in the sense that the growth factor obtained by the partial pivoting strategy is not much worse than that obtained with the complete pivoting for vast majority of matrices arising in practice. There is no way how to prove this as there is no rigorous definition of what a practical matrix is and this claim is simply a result of decades of experience.
There are well known examples showing that the partial pivoting can be much worse than the complete pivoting so this claim is not generally true.
answered Nov 22 at 14:24
Algebraic Pavel
16.1k31839
16.1k31839
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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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.
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%2f3002763%2foptimal-pivoting-strategy-in-lu-factorization%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