What is the value of the variables in the equation?
$begingroup$
$$x_1 + y_1 = 3$$
$$y_1 - x_3 = -1$$
$$x_3 + y_3 = 7$$
$$x_1 - y_3 = -3$$
Find the values of $x_1$, $x_3$, $y_1$ and $y_3$.
All I am getting is $x_1 + x_3 = 4$ and $y_1 + y_3 = 6$.
linear-algebra systems-of-equations
$endgroup$
add a comment |
$begingroup$
$$x_1 + y_1 = 3$$
$$y_1 - x_3 = -1$$
$$x_3 + y_3 = 7$$
$$x_1 - y_3 = -3$$
Find the values of $x_1$, $x_3$, $y_1$ and $y_3$.
All I am getting is $x_1 + x_3 = 4$ and $y_1 + y_3 = 6$.
linear-algebra systems-of-equations
$endgroup$
1
$begingroup$
This system has infinitely many solutions of the form, $x_1=a$, $x_3=4-a$, $y_1 = 3-a$ and $y_2 = a+3$ for any $ain R$.
$endgroup$
– Faiq Irfan
Feb 1 at 15:32
add a comment |
$begingroup$
$$x_1 + y_1 = 3$$
$$y_1 - x_3 = -1$$
$$x_3 + y_3 = 7$$
$$x_1 - y_3 = -3$$
Find the values of $x_1$, $x_3$, $y_1$ and $y_3$.
All I am getting is $x_1 + x_3 = 4$ and $y_1 + y_3 = 6$.
linear-algebra systems-of-equations
$endgroup$
$$x_1 + y_1 = 3$$
$$y_1 - x_3 = -1$$
$$x_3 + y_3 = 7$$
$$x_1 - y_3 = -3$$
Find the values of $x_1$, $x_3$, $y_1$ and $y_3$.
All I am getting is $x_1 + x_3 = 4$ and $y_1 + y_3 = 6$.
linear-algebra systems-of-equations
linear-algebra systems-of-equations
edited Feb 1 at 16:16
Michael Rozenberg
110k1896201
110k1896201
asked Feb 1 at 15:22
Sagar SharmaSagar Sharma
143
143
1
$begingroup$
This system has infinitely many solutions of the form, $x_1=a$, $x_3=4-a$, $y_1 = 3-a$ and $y_2 = a+3$ for any $ain R$.
$endgroup$
– Faiq Irfan
Feb 1 at 15:32
add a comment |
1
$begingroup$
This system has infinitely many solutions of the form, $x_1=a$, $x_3=4-a$, $y_1 = 3-a$ and $y_2 = a+3$ for any $ain R$.
$endgroup$
– Faiq Irfan
Feb 1 at 15:32
1
1
$begingroup$
This system has infinitely many solutions of the form, $x_1=a$, $x_3=4-a$, $y_1 = 3-a$ and $y_2 = a+3$ for any $ain R$.
$endgroup$
– Faiq Irfan
Feb 1 at 15:32
$begingroup$
This system has infinitely many solutions of the form, $x_1=a$, $x_3=4-a$, $y_1 = 3-a$ and $y_2 = a+3$ for any $ain R$.
$endgroup$
– Faiq Irfan
Feb 1 at 15:32
add a comment |
2 Answers
2
active
oldest
votes
$begingroup$
Let $x_1=a$, $y_1=b$, $x_3=c$ and $y_3=d$.
Thus, $b=3-a$ and from the second we obtain $c=4-a$, which from the third gives $d=3+a$ and we see that the fourth holds.
Id est, got infinitely many solutions:
$${(a,3-a,4-a,3+a)}$$
$endgroup$
add a comment |
$begingroup$
With this sort of system one should note that it can be represented as a matrix, where the elements are the coefficients for each variable:
$$M = left[begin{array}{cccccc|c} 1 & 0 & 0 & 1 & 0 & 0 & 3\
0 & 0 & -1 & 1 & 0 & 0 & -1\
0 & 0 & 1 & 0 & 0 & 1 & 7\
1 & 0 & 0 & 0 & 0 & -1 & -3end{array} right]$$
Of course, to find a solution (if one exists), one must change the matrix $M$ into reduced row-echelon form, denoted here as $M_{rrf}$, which is as follows:
$$M_{rrf} = left[begin{array}{cccccc|c} 1 & 0 & 0 & 0 & 0 & 0 & 3 \
0 & 0 & 1 & 0 & 0 & 0 & 1 \
0 & 0 & 0 & 1 & 0 & 0 & 0 \
0 & 0 & 0 & 0 & 0 & 1 & 6end{array} right] \ text{this was carried out by the following $it row$ operations:} \
-R_1 + R_4 to R_4 \ R_2 + R_3 to R_3 \R_4 + R_3 to R_3 \ -R_4 to R_4 \ -R_3 + R_2 to R_2 \ -R_3 + R_1 to R_1 \ -R_2 to R_2 \$$
Thus, since the 3rd row of $M_{rrf}$ is $left[begin{array}{cccccc|c} 0 & 0 & 0 & 1 & 0 & 0 & 0end{array}right]$, we have that $text{dim kerM} = 1$ (recall that the dimension of the kernel is defined as the nullity, $text{null M}$ of the matrix). Since, $null(M) = 1$, the system has infinitely many solutions.
Now, as shown by Michael's answer, we can parametrize our solution to create an expression that generates all of the solutions. Begin by defining the following: $$x_1 = 3 = a \ x_3 = 1 = b \ y_1 = 0 = c \ y_3 = 6 = d$$ which gives us $$ a = a
\ a + c = 3 \ -b + c = -1 \ a - d = -3 \ text{which simplifies to:} \ a = a \ b = c + 1 = 4 - a \ c = 3 - a \ d = a + 3 $$
Therefore, the solution set for the system is $ {a, 4-a, 3-a, 3+a }$
$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%2f3096351%2fwhat-is-the-value-of-the-variables-in-the-equation%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$
Let $x_1=a$, $y_1=b$, $x_3=c$ and $y_3=d$.
Thus, $b=3-a$ and from the second we obtain $c=4-a$, which from the third gives $d=3+a$ and we see that the fourth holds.
Id est, got infinitely many solutions:
$${(a,3-a,4-a,3+a)}$$
$endgroup$
add a comment |
$begingroup$
Let $x_1=a$, $y_1=b$, $x_3=c$ and $y_3=d$.
Thus, $b=3-a$ and from the second we obtain $c=4-a$, which from the third gives $d=3+a$ and we see that the fourth holds.
Id est, got infinitely many solutions:
$${(a,3-a,4-a,3+a)}$$
$endgroup$
add a comment |
$begingroup$
Let $x_1=a$, $y_1=b$, $x_3=c$ and $y_3=d$.
Thus, $b=3-a$ and from the second we obtain $c=4-a$, which from the third gives $d=3+a$ and we see that the fourth holds.
Id est, got infinitely many solutions:
$${(a,3-a,4-a,3+a)}$$
$endgroup$
Let $x_1=a$, $y_1=b$, $x_3=c$ and $y_3=d$.
Thus, $b=3-a$ and from the second we obtain $c=4-a$, which from the third gives $d=3+a$ and we see that the fourth holds.
Id est, got infinitely many solutions:
$${(a,3-a,4-a,3+a)}$$
answered Feb 1 at 15:31
Michael RozenbergMichael Rozenberg
110k1896201
110k1896201
add a comment |
add a comment |
$begingroup$
With this sort of system one should note that it can be represented as a matrix, where the elements are the coefficients for each variable:
$$M = left[begin{array}{cccccc|c} 1 & 0 & 0 & 1 & 0 & 0 & 3\
0 & 0 & -1 & 1 & 0 & 0 & -1\
0 & 0 & 1 & 0 & 0 & 1 & 7\
1 & 0 & 0 & 0 & 0 & -1 & -3end{array} right]$$
Of course, to find a solution (if one exists), one must change the matrix $M$ into reduced row-echelon form, denoted here as $M_{rrf}$, which is as follows:
$$M_{rrf} = left[begin{array}{cccccc|c} 1 & 0 & 0 & 0 & 0 & 0 & 3 \
0 & 0 & 1 & 0 & 0 & 0 & 1 \
0 & 0 & 0 & 1 & 0 & 0 & 0 \
0 & 0 & 0 & 0 & 0 & 1 & 6end{array} right] \ text{this was carried out by the following $it row$ operations:} \
-R_1 + R_4 to R_4 \ R_2 + R_3 to R_3 \R_4 + R_3 to R_3 \ -R_4 to R_4 \ -R_3 + R_2 to R_2 \ -R_3 + R_1 to R_1 \ -R_2 to R_2 \$$
Thus, since the 3rd row of $M_{rrf}$ is $left[begin{array}{cccccc|c} 0 & 0 & 0 & 1 & 0 & 0 & 0end{array}right]$, we have that $text{dim kerM} = 1$ (recall that the dimension of the kernel is defined as the nullity, $text{null M}$ of the matrix). Since, $null(M) = 1$, the system has infinitely many solutions.
Now, as shown by Michael's answer, we can parametrize our solution to create an expression that generates all of the solutions. Begin by defining the following: $$x_1 = 3 = a \ x_3 = 1 = b \ y_1 = 0 = c \ y_3 = 6 = d$$ which gives us $$ a = a
\ a + c = 3 \ -b + c = -1 \ a - d = -3 \ text{which simplifies to:} \ a = a \ b = c + 1 = 4 - a \ c = 3 - a \ d = a + 3 $$
Therefore, the solution set for the system is $ {a, 4-a, 3-a, 3+a }$
$endgroup$
add a comment |
$begingroup$
With this sort of system one should note that it can be represented as a matrix, where the elements are the coefficients for each variable:
$$M = left[begin{array}{cccccc|c} 1 & 0 & 0 & 1 & 0 & 0 & 3\
0 & 0 & -1 & 1 & 0 & 0 & -1\
0 & 0 & 1 & 0 & 0 & 1 & 7\
1 & 0 & 0 & 0 & 0 & -1 & -3end{array} right]$$
Of course, to find a solution (if one exists), one must change the matrix $M$ into reduced row-echelon form, denoted here as $M_{rrf}$, which is as follows:
$$M_{rrf} = left[begin{array}{cccccc|c} 1 & 0 & 0 & 0 & 0 & 0 & 3 \
0 & 0 & 1 & 0 & 0 & 0 & 1 \
0 & 0 & 0 & 1 & 0 & 0 & 0 \
0 & 0 & 0 & 0 & 0 & 1 & 6end{array} right] \ text{this was carried out by the following $it row$ operations:} \
-R_1 + R_4 to R_4 \ R_2 + R_3 to R_3 \R_4 + R_3 to R_3 \ -R_4 to R_4 \ -R_3 + R_2 to R_2 \ -R_3 + R_1 to R_1 \ -R_2 to R_2 \$$
Thus, since the 3rd row of $M_{rrf}$ is $left[begin{array}{cccccc|c} 0 & 0 & 0 & 1 & 0 & 0 & 0end{array}right]$, we have that $text{dim kerM} = 1$ (recall that the dimension of the kernel is defined as the nullity, $text{null M}$ of the matrix). Since, $null(M) = 1$, the system has infinitely many solutions.
Now, as shown by Michael's answer, we can parametrize our solution to create an expression that generates all of the solutions. Begin by defining the following: $$x_1 = 3 = a \ x_3 = 1 = b \ y_1 = 0 = c \ y_3 = 6 = d$$ which gives us $$ a = a
\ a + c = 3 \ -b + c = -1 \ a - d = -3 \ text{which simplifies to:} \ a = a \ b = c + 1 = 4 - a \ c = 3 - a \ d = a + 3 $$
Therefore, the solution set for the system is $ {a, 4-a, 3-a, 3+a }$
$endgroup$
add a comment |
$begingroup$
With this sort of system one should note that it can be represented as a matrix, where the elements are the coefficients for each variable:
$$M = left[begin{array}{cccccc|c} 1 & 0 & 0 & 1 & 0 & 0 & 3\
0 & 0 & -1 & 1 & 0 & 0 & -1\
0 & 0 & 1 & 0 & 0 & 1 & 7\
1 & 0 & 0 & 0 & 0 & -1 & -3end{array} right]$$
Of course, to find a solution (if one exists), one must change the matrix $M$ into reduced row-echelon form, denoted here as $M_{rrf}$, which is as follows:
$$M_{rrf} = left[begin{array}{cccccc|c} 1 & 0 & 0 & 0 & 0 & 0 & 3 \
0 & 0 & 1 & 0 & 0 & 0 & 1 \
0 & 0 & 0 & 1 & 0 & 0 & 0 \
0 & 0 & 0 & 0 & 0 & 1 & 6end{array} right] \ text{this was carried out by the following $it row$ operations:} \
-R_1 + R_4 to R_4 \ R_2 + R_3 to R_3 \R_4 + R_3 to R_3 \ -R_4 to R_4 \ -R_3 + R_2 to R_2 \ -R_3 + R_1 to R_1 \ -R_2 to R_2 \$$
Thus, since the 3rd row of $M_{rrf}$ is $left[begin{array}{cccccc|c} 0 & 0 & 0 & 1 & 0 & 0 & 0end{array}right]$, we have that $text{dim kerM} = 1$ (recall that the dimension of the kernel is defined as the nullity, $text{null M}$ of the matrix). Since, $null(M) = 1$, the system has infinitely many solutions.
Now, as shown by Michael's answer, we can parametrize our solution to create an expression that generates all of the solutions. Begin by defining the following: $$x_1 = 3 = a \ x_3 = 1 = b \ y_1 = 0 = c \ y_3 = 6 = d$$ which gives us $$ a = a
\ a + c = 3 \ -b + c = -1 \ a - d = -3 \ text{which simplifies to:} \ a = a \ b = c + 1 = 4 - a \ c = 3 - a \ d = a + 3 $$
Therefore, the solution set for the system is $ {a, 4-a, 3-a, 3+a }$
$endgroup$
With this sort of system one should note that it can be represented as a matrix, where the elements are the coefficients for each variable:
$$M = left[begin{array}{cccccc|c} 1 & 0 & 0 & 1 & 0 & 0 & 3\
0 & 0 & -1 & 1 & 0 & 0 & -1\
0 & 0 & 1 & 0 & 0 & 1 & 7\
1 & 0 & 0 & 0 & 0 & -1 & -3end{array} right]$$
Of course, to find a solution (if one exists), one must change the matrix $M$ into reduced row-echelon form, denoted here as $M_{rrf}$, which is as follows:
$$M_{rrf} = left[begin{array}{cccccc|c} 1 & 0 & 0 & 0 & 0 & 0 & 3 \
0 & 0 & 1 & 0 & 0 & 0 & 1 \
0 & 0 & 0 & 1 & 0 & 0 & 0 \
0 & 0 & 0 & 0 & 0 & 1 & 6end{array} right] \ text{this was carried out by the following $it row$ operations:} \
-R_1 + R_4 to R_4 \ R_2 + R_3 to R_3 \R_4 + R_3 to R_3 \ -R_4 to R_4 \ -R_3 + R_2 to R_2 \ -R_3 + R_1 to R_1 \ -R_2 to R_2 \$$
Thus, since the 3rd row of $M_{rrf}$ is $left[begin{array}{cccccc|c} 0 & 0 & 0 & 1 & 0 & 0 & 0end{array}right]$, we have that $text{dim kerM} = 1$ (recall that the dimension of the kernel is defined as the nullity, $text{null M}$ of the matrix). Since, $null(M) = 1$, the system has infinitely many solutions.
Now, as shown by Michael's answer, we can parametrize our solution to create an expression that generates all of the solutions. Begin by defining the following: $$x_1 = 3 = a \ x_3 = 1 = b \ y_1 = 0 = c \ y_3 = 6 = d$$ which gives us $$ a = a
\ a + c = 3 \ -b + c = -1 \ a - d = -3 \ text{which simplifies to:} \ a = a \ b = c + 1 = 4 - a \ c = 3 - a \ d = a + 3 $$
Therefore, the solution set for the system is $ {a, 4-a, 3-a, 3+a }$
answered Feb 1 at 16:24
Victoria MVictoria M
42618
42618
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%2f3096351%2fwhat-is-the-value-of-the-variables-in-the-equation%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$
This system has infinitely many solutions of the form, $x_1=a$, $x_3=4-a$, $y_1 = 3-a$ and $y_2 = a+3$ for any $ain R$.
$endgroup$
– Faiq Irfan
Feb 1 at 15:32