What is the computational complexity of $Ax = b$ and $AX = B$?
Suppose $A, A_i$ are $mtimes m$-matrices, $x_i, b_i$ are $m times 1$, $X$ and $B$ are $m times n$-matrices.
What is the total computational burden of solving $A_ix_i = b_i$ for $i = 1, 2, dots, n$ versus $AX = B$ (where we might assume $A_1 =A_2 = dots A_n = A$).
calculus linear-algebra computational-complexity
add a comment |
Suppose $A, A_i$ are $mtimes m$-matrices, $x_i, b_i$ are $m times 1$, $X$ and $B$ are $m times n$-matrices.
What is the total computational burden of solving $A_ix_i = b_i$ for $i = 1, 2, dots, n$ versus $AX = B$ (where we might assume $A_1 =A_2 = dots A_n = A$).
calculus linear-algebra computational-complexity
add a comment |
Suppose $A, A_i$ are $mtimes m$-matrices, $x_i, b_i$ are $m times 1$, $X$ and $B$ are $m times n$-matrices.
What is the total computational burden of solving $A_ix_i = b_i$ for $i = 1, 2, dots, n$ versus $AX = B$ (where we might assume $A_1 =A_2 = dots A_n = A$).
calculus linear-algebra computational-complexity
Suppose $A, A_i$ are $mtimes m$-matrices, $x_i, b_i$ are $m times 1$, $X$ and $B$ are $m times n$-matrices.
What is the total computational burden of solving $A_ix_i = b_i$ for $i = 1, 2, dots, n$ versus $AX = B$ (where we might assume $A_1 =A_2 = dots A_n = A$).
calculus linear-algebra computational-complexity
calculus linear-algebra computational-complexity
edited Nov 26 '18 at 7:59
Björn Friedrich
2,58961831
2,58961831
asked Nov 26 '18 at 5:43
shani
1208
1208
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
This is the general question of linear programming, and there are a number of works on the question. In short, linear programming is in P.
This is an older paper surveying some results: Megiddo, Nimrod. On the complexity of linear programming. IBM Thomas J. Watson Research Division, 1986. https://theory.stanford.edu/~megiddo/pdf/wcongres_4.0.a.pdf
(I assumed you were not asking how much longer it takes to solve N different problems as it does to solve 1. Obviously it takes approximately N times as long to solve N different problems as it does to solve 1.)
– David Manheim
Nov 26 '18 at 8:40
I am asking how much computation time can be saved by doing $AX=B$ vs solving it as n number of $Ax=b$. Is there any computational advantage?
– shani
Nov 26 '18 at 9:08
The second way is MUCH more complex. In essence, the question you are asking is about the computational complexity of combining the answers to many $Ax=b$. I think, intuitively, that it will be roughly as high as solving $AX=B$, meaning all the computation you do to solve the individual equations is wasted - but I don't know how to show this.
– David Manheim
Nov 27 '18 at 6:58
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%2f3013896%2fwhat-is-the-computational-complexity-of-ax-b-and-ax-b%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
This is the general question of linear programming, and there are a number of works on the question. In short, linear programming is in P.
This is an older paper surveying some results: Megiddo, Nimrod. On the complexity of linear programming. IBM Thomas J. Watson Research Division, 1986. https://theory.stanford.edu/~megiddo/pdf/wcongres_4.0.a.pdf
(I assumed you were not asking how much longer it takes to solve N different problems as it does to solve 1. Obviously it takes approximately N times as long to solve N different problems as it does to solve 1.)
– David Manheim
Nov 26 '18 at 8:40
I am asking how much computation time can be saved by doing $AX=B$ vs solving it as n number of $Ax=b$. Is there any computational advantage?
– shani
Nov 26 '18 at 9:08
The second way is MUCH more complex. In essence, the question you are asking is about the computational complexity of combining the answers to many $Ax=b$. I think, intuitively, that it will be roughly as high as solving $AX=B$, meaning all the computation you do to solve the individual equations is wasted - but I don't know how to show this.
– David Manheim
Nov 27 '18 at 6:58
add a comment |
This is the general question of linear programming, and there are a number of works on the question. In short, linear programming is in P.
This is an older paper surveying some results: Megiddo, Nimrod. On the complexity of linear programming. IBM Thomas J. Watson Research Division, 1986. https://theory.stanford.edu/~megiddo/pdf/wcongres_4.0.a.pdf
(I assumed you were not asking how much longer it takes to solve N different problems as it does to solve 1. Obviously it takes approximately N times as long to solve N different problems as it does to solve 1.)
– David Manheim
Nov 26 '18 at 8:40
I am asking how much computation time can be saved by doing $AX=B$ vs solving it as n number of $Ax=b$. Is there any computational advantage?
– shani
Nov 26 '18 at 9:08
The second way is MUCH more complex. In essence, the question you are asking is about the computational complexity of combining the answers to many $Ax=b$. I think, intuitively, that it will be roughly as high as solving $AX=B$, meaning all the computation you do to solve the individual equations is wasted - but I don't know how to show this.
– David Manheim
Nov 27 '18 at 6:58
add a comment |
This is the general question of linear programming, and there are a number of works on the question. In short, linear programming is in P.
This is an older paper surveying some results: Megiddo, Nimrod. On the complexity of linear programming. IBM Thomas J. Watson Research Division, 1986. https://theory.stanford.edu/~megiddo/pdf/wcongres_4.0.a.pdf
This is the general question of linear programming, and there are a number of works on the question. In short, linear programming is in P.
This is an older paper surveying some results: Megiddo, Nimrod. On the complexity of linear programming. IBM Thomas J. Watson Research Division, 1986. https://theory.stanford.edu/~megiddo/pdf/wcongres_4.0.a.pdf
answered Nov 26 '18 at 8:36
David Manheim
175111
175111
(I assumed you were not asking how much longer it takes to solve N different problems as it does to solve 1. Obviously it takes approximately N times as long to solve N different problems as it does to solve 1.)
– David Manheim
Nov 26 '18 at 8:40
I am asking how much computation time can be saved by doing $AX=B$ vs solving it as n number of $Ax=b$. Is there any computational advantage?
– shani
Nov 26 '18 at 9:08
The second way is MUCH more complex. In essence, the question you are asking is about the computational complexity of combining the answers to many $Ax=b$. I think, intuitively, that it will be roughly as high as solving $AX=B$, meaning all the computation you do to solve the individual equations is wasted - but I don't know how to show this.
– David Manheim
Nov 27 '18 at 6:58
add a comment |
(I assumed you were not asking how much longer it takes to solve N different problems as it does to solve 1. Obviously it takes approximately N times as long to solve N different problems as it does to solve 1.)
– David Manheim
Nov 26 '18 at 8:40
I am asking how much computation time can be saved by doing $AX=B$ vs solving it as n number of $Ax=b$. Is there any computational advantage?
– shani
Nov 26 '18 at 9:08
The second way is MUCH more complex. In essence, the question you are asking is about the computational complexity of combining the answers to many $Ax=b$. I think, intuitively, that it will be roughly as high as solving $AX=B$, meaning all the computation you do to solve the individual equations is wasted - but I don't know how to show this.
– David Manheim
Nov 27 '18 at 6:58
(I assumed you were not asking how much longer it takes to solve N different problems as it does to solve 1. Obviously it takes approximately N times as long to solve N different problems as it does to solve 1.)
– David Manheim
Nov 26 '18 at 8:40
(I assumed you were not asking how much longer it takes to solve N different problems as it does to solve 1. Obviously it takes approximately N times as long to solve N different problems as it does to solve 1.)
– David Manheim
Nov 26 '18 at 8:40
I am asking how much computation time can be saved by doing $AX=B$ vs solving it as n number of $Ax=b$. Is there any computational advantage?
– shani
Nov 26 '18 at 9:08
I am asking how much computation time can be saved by doing $AX=B$ vs solving it as n number of $Ax=b$. Is there any computational advantage?
– shani
Nov 26 '18 at 9:08
The second way is MUCH more complex. In essence, the question you are asking is about the computational complexity of combining the answers to many $Ax=b$. I think, intuitively, that it will be roughly as high as solving $AX=B$, meaning all the computation you do to solve the individual equations is wasted - but I don't know how to show this.
– David Manheim
Nov 27 '18 at 6:58
The second way is MUCH more complex. In essence, the question you are asking is about the computational complexity of combining the answers to many $Ax=b$. I think, intuitively, that it will be roughly as high as solving $AX=B$, meaning all the computation you do to solve the individual equations is wasted - but I don't know how to show this.
– David Manheim
Nov 27 '18 at 6:58
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%2f3013896%2fwhat-is-the-computational-complexity-of-ax-b-and-ax-b%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