Simplify the matrix of a linear system knowing that some of the solutions are equal
$begingroup$
In order to improve the efficiency of my python program I'm trying to take advantage of some properties of a linear system I need to solve.
I have a linear system $Ax = b$ and I know beforehand that some of the solutions are equal, though I don't know their values before solving the system (i.e. $x_1 = x_{10}$, $x_3 = x_5$, ...).
Is there any way I can simplify my system ($A$ and b) for faster solving? My first thought was to eliminate one of the two unknowns for each pair and to do the sum of both columns associated with the elements of the pair, weighted by 1/2, but I'm not sure at all that this is mathematically correct.
linear-algebra matrices systems-of-equations
$endgroup$
add a comment |
$begingroup$
In order to improve the efficiency of my python program I'm trying to take advantage of some properties of a linear system I need to solve.
I have a linear system $Ax = b$ and I know beforehand that some of the solutions are equal, though I don't know their values before solving the system (i.e. $x_1 = x_{10}$, $x_3 = x_5$, ...).
Is there any way I can simplify my system ($A$ and b) for faster solving? My first thought was to eliminate one of the two unknowns for each pair and to do the sum of both columns associated with the elements of the pair, weighted by 1/2, but I'm not sure at all that this is mathematically correct.
linear-algebra matrices systems-of-equations
$endgroup$
1
$begingroup$
Don't weight by $1/2$ !
$endgroup$
– Damien
Dec 15 '18 at 18:38
1
$begingroup$
You don't have to modify $b$
$endgroup$
– Damien
Dec 15 '18 at 18:45
add a comment |
$begingroup$
In order to improve the efficiency of my python program I'm trying to take advantage of some properties of a linear system I need to solve.
I have a linear system $Ax = b$ and I know beforehand that some of the solutions are equal, though I don't know their values before solving the system (i.e. $x_1 = x_{10}$, $x_3 = x_5$, ...).
Is there any way I can simplify my system ($A$ and b) for faster solving? My first thought was to eliminate one of the two unknowns for each pair and to do the sum of both columns associated with the elements of the pair, weighted by 1/2, but I'm not sure at all that this is mathematically correct.
linear-algebra matrices systems-of-equations
$endgroup$
In order to improve the efficiency of my python program I'm trying to take advantage of some properties of a linear system I need to solve.
I have a linear system $Ax = b$ and I know beforehand that some of the solutions are equal, though I don't know their values before solving the system (i.e. $x_1 = x_{10}$, $x_3 = x_5$, ...).
Is there any way I can simplify my system ($A$ and b) for faster solving? My first thought was to eliminate one of the two unknowns for each pair and to do the sum of both columns associated with the elements of the pair, weighted by 1/2, but I'm not sure at all that this is mathematically correct.
linear-algebra matrices systems-of-equations
linear-algebra matrices systems-of-equations
asked Dec 15 '18 at 17:08
FredVFredV
876
876
1
$begingroup$
Don't weight by $1/2$ !
$endgroup$
– Damien
Dec 15 '18 at 18:38
1
$begingroup$
You don't have to modify $b$
$endgroup$
– Damien
Dec 15 '18 at 18:45
add a comment |
1
$begingroup$
Don't weight by $1/2$ !
$endgroup$
– Damien
Dec 15 '18 at 18:38
1
$begingroup$
You don't have to modify $b$
$endgroup$
– Damien
Dec 15 '18 at 18:45
1
1
$begingroup$
Don't weight by $1/2$ !
$endgroup$
– Damien
Dec 15 '18 at 18:38
$begingroup$
Don't weight by $1/2$ !
$endgroup$
– Damien
Dec 15 '18 at 18:38
1
1
$begingroup$
You don't have to modify $b$
$endgroup$
– Damien
Dec 15 '18 at 18:45
$begingroup$
You don't have to modify $b$
$endgroup$
– Damien
Dec 15 '18 at 18:45
add a comment |
1 Answer
1
active
oldest
votes
$begingroup$
Let us call $(c_i)_i$ the columns of$A$.
The equation can be written as:
$$b = sum_{i=1}^{n} x_ic_i $$
If for example we know that $x_1 = x_2$, the equation becomes:
$$b = x_2(c_1 + c_2) + sum_{i=3}^{n} x_ic_i $$
The procedure follows:
- Replace $c_2$ by $c_1 + c_2$
- Suppress $c_1$
- Remove $x_1$ from the set of unknown values
- Don't modify $b$
$endgroup$
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%2f3041718%2fsimplify-the-matrix-of-a-linear-system-knowing-that-some-of-the-solutions-are-eq%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$
Let us call $(c_i)_i$ the columns of$A$.
The equation can be written as:
$$b = sum_{i=1}^{n} x_ic_i $$
If for example we know that $x_1 = x_2$, the equation becomes:
$$b = x_2(c_1 + c_2) + sum_{i=3}^{n} x_ic_i $$
The procedure follows:
- Replace $c_2$ by $c_1 + c_2$
- Suppress $c_1$
- Remove $x_1$ from the set of unknown values
- Don't modify $b$
$endgroup$
add a comment |
$begingroup$
Let us call $(c_i)_i$ the columns of$A$.
The equation can be written as:
$$b = sum_{i=1}^{n} x_ic_i $$
If for example we know that $x_1 = x_2$, the equation becomes:
$$b = x_2(c_1 + c_2) + sum_{i=3}^{n} x_ic_i $$
The procedure follows:
- Replace $c_2$ by $c_1 + c_2$
- Suppress $c_1$
- Remove $x_1$ from the set of unknown values
- Don't modify $b$
$endgroup$
add a comment |
$begingroup$
Let us call $(c_i)_i$ the columns of$A$.
The equation can be written as:
$$b = sum_{i=1}^{n} x_ic_i $$
If for example we know that $x_1 = x_2$, the equation becomes:
$$b = x_2(c_1 + c_2) + sum_{i=3}^{n} x_ic_i $$
The procedure follows:
- Replace $c_2$ by $c_1 + c_2$
- Suppress $c_1$
- Remove $x_1$ from the set of unknown values
- Don't modify $b$
$endgroup$
Let us call $(c_i)_i$ the columns of$A$.
The equation can be written as:
$$b = sum_{i=1}^{n} x_ic_i $$
If for example we know that $x_1 = x_2$, the equation becomes:
$$b = x_2(c_1 + c_2) + sum_{i=3}^{n} x_ic_i $$
The procedure follows:
- Replace $c_2$ by $c_1 + c_2$
- Suppress $c_1$
- Remove $x_1$ from the set of unknown values
- Don't modify $b$
answered Dec 15 '18 at 19:50
DamienDamien
59714
59714
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%2f3041718%2fsimplify-the-matrix-of-a-linear-system-knowing-that-some-of-the-solutions-are-eq%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
1
$begingroup$
Don't weight by $1/2$ !
$endgroup$
– Damien
Dec 15 '18 at 18:38
1
$begingroup$
You don't have to modify $b$
$endgroup$
– Damien
Dec 15 '18 at 18:45