Value of k to give matrix infinite, 0, 1 solutions.
$begingroup$
I have a question that goes:
For which values of the constant $k$ does the system of equations below have:
- a unique solution,
- no solutions at all,
- infinitely many solutions?
$$
begin{cases}
x &- 3y & &= 6\
x & &+ 3z &= -3\
2x &+ ky &+ (3-k)z &= 1
end{cases}
$$
I tried putting the system of equations into matrix in reduced row echelon form, ended up with the last line being
$$
begin{matrix}
0 & k+6 & 3-k &| 1,
end{matrix}
$$ which I don't think would make sense.
linear-algebra
$endgroup$
add a comment |
$begingroup$
I have a question that goes:
For which values of the constant $k$ does the system of equations below have:
- a unique solution,
- no solutions at all,
- infinitely many solutions?
$$
begin{cases}
x &- 3y & &= 6\
x & &+ 3z &= -3\
2x &+ ky &+ (3-k)z &= 1
end{cases}
$$
I tried putting the system of equations into matrix in reduced row echelon form, ended up with the last line being
$$
begin{matrix}
0 & k+6 & 3-k &| 1,
end{matrix}
$$ which I don't think would make sense.
linear-algebra
$endgroup$
add a comment |
$begingroup$
I have a question that goes:
For which values of the constant $k$ does the system of equations below have:
- a unique solution,
- no solutions at all,
- infinitely many solutions?
$$
begin{cases}
x &- 3y & &= 6\
x & &+ 3z &= -3\
2x &+ ky &+ (3-k)z &= 1
end{cases}
$$
I tried putting the system of equations into matrix in reduced row echelon form, ended up with the last line being
$$
begin{matrix}
0 & k+6 & 3-k &| 1,
end{matrix}
$$ which I don't think would make sense.
linear-algebra
$endgroup$
I have a question that goes:
For which values of the constant $k$ does the system of equations below have:
- a unique solution,
- no solutions at all,
- infinitely many solutions?
$$
begin{cases}
x &- 3y & &= 6\
x & &+ 3z &= -3\
2x &+ ky &+ (3-k)z &= 1
end{cases}
$$
I tried putting the system of equations into matrix in reduced row echelon form, ended up with the last line being
$$
begin{matrix}
0 & k+6 & 3-k &| 1,
end{matrix}
$$ which I don't think would make sense.
linear-algebra
linear-algebra
edited Dec 27 '18 at 16:26
gt6989b
35k22557
35k22557
asked Dec 27 '18 at 16:09
Jamie WhitakerJamie Whitaker
162
162
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
$begingroup$
You have
$$
begin{pmatrix}
1 & -3 & 0 & 6 \
1 & 0 & 3 & -3 \
2 & k & 3-k & 1
end{pmatrix}
to
begin{pmatrix}
1 & -3 & 0 & 6 \
0 & 3 & 3 & -9 \
0 & k+6 & 3-k & -11
end{pmatrix}
to\
begin{pmatrix}
1 & 0 & 3 & -3 \
0 & 1 & 1 & -3 \
0 & 0 & 3-k-(k+6) & -11 + 3(k+6)
end{pmatrix}
to \
begin{pmatrix}
1 & 0 & 3 & -3 \
0 & 1 & 1 & -3 \
0 & 0 & -3-2k& 7 + 3k
end{pmatrix}
$$
What happens in $-3-2k=0$? Can you finish this?
$endgroup$
add a comment |
$begingroup$
Hint: From the first equation we get
$$x=6+3y$$ plug this in the second equation we obtain
$$y+z=-3$$
and with the third equation we obtain
$$(6+k)y+(3-k)z=1$$
with $$y=-3-z$$ we obtain $$(6+k)(-3-z)+(3-k)z=-11$$
so we get
$$z(-k-3)=9+3k$$
Can you finish?
$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%2f3054104%2fvalue-of-k-to-give-matrix-infinite-0-1-solutions%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$
You have
$$
begin{pmatrix}
1 & -3 & 0 & 6 \
1 & 0 & 3 & -3 \
2 & k & 3-k & 1
end{pmatrix}
to
begin{pmatrix}
1 & -3 & 0 & 6 \
0 & 3 & 3 & -9 \
0 & k+6 & 3-k & -11
end{pmatrix}
to\
begin{pmatrix}
1 & 0 & 3 & -3 \
0 & 1 & 1 & -3 \
0 & 0 & 3-k-(k+6) & -11 + 3(k+6)
end{pmatrix}
to \
begin{pmatrix}
1 & 0 & 3 & -3 \
0 & 1 & 1 & -3 \
0 & 0 & -3-2k& 7 + 3k
end{pmatrix}
$$
What happens in $-3-2k=0$? Can you finish this?
$endgroup$
add a comment |
$begingroup$
You have
$$
begin{pmatrix}
1 & -3 & 0 & 6 \
1 & 0 & 3 & -3 \
2 & k & 3-k & 1
end{pmatrix}
to
begin{pmatrix}
1 & -3 & 0 & 6 \
0 & 3 & 3 & -9 \
0 & k+6 & 3-k & -11
end{pmatrix}
to\
begin{pmatrix}
1 & 0 & 3 & -3 \
0 & 1 & 1 & -3 \
0 & 0 & 3-k-(k+6) & -11 + 3(k+6)
end{pmatrix}
to \
begin{pmatrix}
1 & 0 & 3 & -3 \
0 & 1 & 1 & -3 \
0 & 0 & -3-2k& 7 + 3k
end{pmatrix}
$$
What happens in $-3-2k=0$? Can you finish this?
$endgroup$
add a comment |
$begingroup$
You have
$$
begin{pmatrix}
1 & -3 & 0 & 6 \
1 & 0 & 3 & -3 \
2 & k & 3-k & 1
end{pmatrix}
to
begin{pmatrix}
1 & -3 & 0 & 6 \
0 & 3 & 3 & -9 \
0 & k+6 & 3-k & -11
end{pmatrix}
to\
begin{pmatrix}
1 & 0 & 3 & -3 \
0 & 1 & 1 & -3 \
0 & 0 & 3-k-(k+6) & -11 + 3(k+6)
end{pmatrix}
to \
begin{pmatrix}
1 & 0 & 3 & -3 \
0 & 1 & 1 & -3 \
0 & 0 & -3-2k& 7 + 3k
end{pmatrix}
$$
What happens in $-3-2k=0$? Can you finish this?
$endgroup$
You have
$$
begin{pmatrix}
1 & -3 & 0 & 6 \
1 & 0 & 3 & -3 \
2 & k & 3-k & 1
end{pmatrix}
to
begin{pmatrix}
1 & -3 & 0 & 6 \
0 & 3 & 3 & -9 \
0 & k+6 & 3-k & -11
end{pmatrix}
to\
begin{pmatrix}
1 & 0 & 3 & -3 \
0 & 1 & 1 & -3 \
0 & 0 & 3-k-(k+6) & -11 + 3(k+6)
end{pmatrix}
to \
begin{pmatrix}
1 & 0 & 3 & -3 \
0 & 1 & 1 & -3 \
0 & 0 & -3-2k& 7 + 3k
end{pmatrix}
$$
What happens in $-3-2k=0$? Can you finish this?
answered Dec 27 '18 at 16:23
gt6989bgt6989b
35k22557
35k22557
add a comment |
add a comment |
$begingroup$
Hint: From the first equation we get
$$x=6+3y$$ plug this in the second equation we obtain
$$y+z=-3$$
and with the third equation we obtain
$$(6+k)y+(3-k)z=1$$
with $$y=-3-z$$ we obtain $$(6+k)(-3-z)+(3-k)z=-11$$
so we get
$$z(-k-3)=9+3k$$
Can you finish?
$endgroup$
add a comment |
$begingroup$
Hint: From the first equation we get
$$x=6+3y$$ plug this in the second equation we obtain
$$y+z=-3$$
and with the third equation we obtain
$$(6+k)y+(3-k)z=1$$
with $$y=-3-z$$ we obtain $$(6+k)(-3-z)+(3-k)z=-11$$
so we get
$$z(-k-3)=9+3k$$
Can you finish?
$endgroup$
add a comment |
$begingroup$
Hint: From the first equation we get
$$x=6+3y$$ plug this in the second equation we obtain
$$y+z=-3$$
and with the third equation we obtain
$$(6+k)y+(3-k)z=1$$
with $$y=-3-z$$ we obtain $$(6+k)(-3-z)+(3-k)z=-11$$
so we get
$$z(-k-3)=9+3k$$
Can you finish?
$endgroup$
Hint: From the first equation we get
$$x=6+3y$$ plug this in the second equation we obtain
$$y+z=-3$$
and with the third equation we obtain
$$(6+k)y+(3-k)z=1$$
with $$y=-3-z$$ we obtain $$(6+k)(-3-z)+(3-k)z=-11$$
so we get
$$z(-k-3)=9+3k$$
Can you finish?
answered Dec 27 '18 at 16:25
Dr. Sonnhard GraubnerDr. Sonnhard Graubner
77.9k42866
77.9k42866
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%2f3054104%2fvalue-of-k-to-give-matrix-infinite-0-1-solutions%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