Using Cramer's Rule to solve a system of linear equation
$begingroup$
I have trouble solving the following question:
Question
How I approached it initially was as follow:
1) Since the questions asks for x3 only, I replaced the x3 column with the particular solution.
Step 1
2) Cramer's Rule asks of us to divide the det(Substituted Matrix in Step 1) by the det(Initial Matrix)
Step 2
3) To find the det of each 4x4 matrix I did C(1,1)(det(3x3 sub Matrix)). So 1(det(3x3 sub Matrix)). I evaluated the 3x3 sub Matrix as follow: 3x3 sub Matrix The red arrows are added and then subtracted to the addition of the blue arrows. Thus det(Substituted Matrix) = 3aei + 3bfg + 2cdh - 3ceg - 2afh - 3bdi.
4) I did step 3 for the initial Matrix as well and got det(Initial Matrix) = aei + bfg + cdh - ceg - afh - bdi
Now, I am unsure how to work around the determinants I just got. I should factor out something and then cancel the rest, but I don't see what. Did I miss something?
linear-algebra
$endgroup$
add a comment |
$begingroup$
I have trouble solving the following question:
Question
How I approached it initially was as follow:
1) Since the questions asks for x3 only, I replaced the x3 column with the particular solution.
Step 1
2) Cramer's Rule asks of us to divide the det(Substituted Matrix in Step 1) by the det(Initial Matrix)
Step 2
3) To find the det of each 4x4 matrix I did C(1,1)(det(3x3 sub Matrix)). So 1(det(3x3 sub Matrix)). I evaluated the 3x3 sub Matrix as follow: 3x3 sub Matrix The red arrows are added and then subtracted to the addition of the blue arrows. Thus det(Substituted Matrix) = 3aei + 3bfg + 2cdh - 3ceg - 2afh - 3bdi.
4) I did step 3 for the initial Matrix as well and got det(Initial Matrix) = aei + bfg + cdh - ceg - afh - bdi
Now, I am unsure how to work around the determinants I just got. I should factor out something and then cancel the rest, but I don't see what. Did I miss something?
linear-algebra
$endgroup$
add a comment |
$begingroup$
I have trouble solving the following question:
Question
How I approached it initially was as follow:
1) Since the questions asks for x3 only, I replaced the x3 column with the particular solution.
Step 1
2) Cramer's Rule asks of us to divide the det(Substituted Matrix in Step 1) by the det(Initial Matrix)
Step 2
3) To find the det of each 4x4 matrix I did C(1,1)(det(3x3 sub Matrix)). So 1(det(3x3 sub Matrix)). I evaluated the 3x3 sub Matrix as follow: 3x3 sub Matrix The red arrows are added and then subtracted to the addition of the blue arrows. Thus det(Substituted Matrix) = 3aei + 3bfg + 2cdh - 3ceg - 2afh - 3bdi.
4) I did step 3 for the initial Matrix as well and got det(Initial Matrix) = aei + bfg + cdh - ceg - afh - bdi
Now, I am unsure how to work around the determinants I just got. I should factor out something and then cancel the rest, but I don't see what. Did I miss something?
linear-algebra
$endgroup$
I have trouble solving the following question:
Question
How I approached it initially was as follow:
1) Since the questions asks for x3 only, I replaced the x3 column with the particular solution.
Step 1
2) Cramer's Rule asks of us to divide the det(Substituted Matrix in Step 1) by the det(Initial Matrix)
Step 2
3) To find the det of each 4x4 matrix I did C(1,1)(det(3x3 sub Matrix)). So 1(det(3x3 sub Matrix)). I evaluated the 3x3 sub Matrix as follow: 3x3 sub Matrix The red arrows are added and then subtracted to the addition of the blue arrows. Thus det(Substituted Matrix) = 3aei + 3bfg + 2cdh - 3ceg - 2afh - 3bdi.
4) I did step 3 for the initial Matrix as well and got det(Initial Matrix) = aei + bfg + cdh - ceg - afh - bdi
Now, I am unsure how to work around the determinants I just got. I should factor out something and then cancel the rest, but I don't see what. Did I miss something?
linear-algebra
linear-algebra
asked Dec 13 '18 at 1:00
HeykanHeykan
11
11
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
$begingroup$
It is clear that $begin{bmatrix}x_1\x_2\x_3\x_4 end{bmatrix} = begin{bmatrix}0\0\3\2 end{bmatrix}$ without Cramer's rule...
What does Cramer say?
$x_1 = frac {detbegin{bmatrix}0&0&0&0\3b+2c&a&b&c\3e+2f&d&e&f\3h+2i&g&h&i end{bmatrix}}{detbegin{bmatrix}1&0&0&0\0&a&b&c\0&d&e&f\0&g&h&i end{bmatrix}} = 0$
We know this because one row is all 0's
$x_2 = frac {detbegin{bmatrix}1&0&0&0\0&3b+2c&b&c\0&3e+2f&e&f\0&3h+2i&h&i end{bmatrix}}{detbegin{bmatrix}1&0&0&0\0&a&b&c\0&d&e&f\0&g&h&i end{bmatrix}} = 0$
We know this because clearly the columns are not linearly independent.
$x_3 = frac {detbegin{bmatrix}1&0&0&0\0&a&3b+2c&c\0&d&3e+2f&f\0&g&3h+2i&i end{bmatrix}}{detbegin{bmatrix}1&0&0&0\0&a&b&c\0&d&e&f\0&g&h&i end{bmatrix}} = 0$
rather than calculating this out.
$begin{bmatrix}1&0&0&0\0&a&3b+2c&c\0&d&3e+2f&f\0&g&3h+2i&i end{bmatrix} = begin{bmatrix}1&0&0&0\0&a&b&c\0&d&e&f\0&g&h&i end{bmatrix}begin{bmatrix}1&0&0&0\0&2&3&0\0&0&1&0\0&0&0&1 end{bmatrix}$
The determinant of the product equals the product of the determinants. And
$detbegin{bmatrix}1&0&0&0\0&1&0&0\0&0&3&0\0&0&2&1 end{bmatrix} = 2$
And $x_4$ can be approached the same way.
$endgroup$
$begingroup$
You should get $3$. The last matrix is off slightly.
$endgroup$
– Chris Custer
Dec 13 '18 at 1:32
$begingroup$
I think it's $begin{pmatrix}1&0&0&0\0&1&0&0\0&0&3&0\0&0&2&1end{pmatrix}$.
$endgroup$
– Chris Custer
Dec 13 '18 at 1:45
$begingroup$
@ChrisCuster thanks, I something came up and rushed the ending.
$endgroup$
– Doug M
Dec 13 '18 at 16:38
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%2f3037460%2fusing-cramers-rule-to-solve-a-system-of-linear-equation%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$
It is clear that $begin{bmatrix}x_1\x_2\x_3\x_4 end{bmatrix} = begin{bmatrix}0\0\3\2 end{bmatrix}$ without Cramer's rule...
What does Cramer say?
$x_1 = frac {detbegin{bmatrix}0&0&0&0\3b+2c&a&b&c\3e+2f&d&e&f\3h+2i&g&h&i end{bmatrix}}{detbegin{bmatrix}1&0&0&0\0&a&b&c\0&d&e&f\0&g&h&i end{bmatrix}} = 0$
We know this because one row is all 0's
$x_2 = frac {detbegin{bmatrix}1&0&0&0\0&3b+2c&b&c\0&3e+2f&e&f\0&3h+2i&h&i end{bmatrix}}{detbegin{bmatrix}1&0&0&0\0&a&b&c\0&d&e&f\0&g&h&i end{bmatrix}} = 0$
We know this because clearly the columns are not linearly independent.
$x_3 = frac {detbegin{bmatrix}1&0&0&0\0&a&3b+2c&c\0&d&3e+2f&f\0&g&3h+2i&i end{bmatrix}}{detbegin{bmatrix}1&0&0&0\0&a&b&c\0&d&e&f\0&g&h&i end{bmatrix}} = 0$
rather than calculating this out.
$begin{bmatrix}1&0&0&0\0&a&3b+2c&c\0&d&3e+2f&f\0&g&3h+2i&i end{bmatrix} = begin{bmatrix}1&0&0&0\0&a&b&c\0&d&e&f\0&g&h&i end{bmatrix}begin{bmatrix}1&0&0&0\0&2&3&0\0&0&1&0\0&0&0&1 end{bmatrix}$
The determinant of the product equals the product of the determinants. And
$detbegin{bmatrix}1&0&0&0\0&1&0&0\0&0&3&0\0&0&2&1 end{bmatrix} = 2$
And $x_4$ can be approached the same way.
$endgroup$
$begingroup$
You should get $3$. The last matrix is off slightly.
$endgroup$
– Chris Custer
Dec 13 '18 at 1:32
$begingroup$
I think it's $begin{pmatrix}1&0&0&0\0&1&0&0\0&0&3&0\0&0&2&1end{pmatrix}$.
$endgroup$
– Chris Custer
Dec 13 '18 at 1:45
$begingroup$
@ChrisCuster thanks, I something came up and rushed the ending.
$endgroup$
– Doug M
Dec 13 '18 at 16:38
add a comment |
$begingroup$
It is clear that $begin{bmatrix}x_1\x_2\x_3\x_4 end{bmatrix} = begin{bmatrix}0\0\3\2 end{bmatrix}$ without Cramer's rule...
What does Cramer say?
$x_1 = frac {detbegin{bmatrix}0&0&0&0\3b+2c&a&b&c\3e+2f&d&e&f\3h+2i&g&h&i end{bmatrix}}{detbegin{bmatrix}1&0&0&0\0&a&b&c\0&d&e&f\0&g&h&i end{bmatrix}} = 0$
We know this because one row is all 0's
$x_2 = frac {detbegin{bmatrix}1&0&0&0\0&3b+2c&b&c\0&3e+2f&e&f\0&3h+2i&h&i end{bmatrix}}{detbegin{bmatrix}1&0&0&0\0&a&b&c\0&d&e&f\0&g&h&i end{bmatrix}} = 0$
We know this because clearly the columns are not linearly independent.
$x_3 = frac {detbegin{bmatrix}1&0&0&0\0&a&3b+2c&c\0&d&3e+2f&f\0&g&3h+2i&i end{bmatrix}}{detbegin{bmatrix}1&0&0&0\0&a&b&c\0&d&e&f\0&g&h&i end{bmatrix}} = 0$
rather than calculating this out.
$begin{bmatrix}1&0&0&0\0&a&3b+2c&c\0&d&3e+2f&f\0&g&3h+2i&i end{bmatrix} = begin{bmatrix}1&0&0&0\0&a&b&c\0&d&e&f\0&g&h&i end{bmatrix}begin{bmatrix}1&0&0&0\0&2&3&0\0&0&1&0\0&0&0&1 end{bmatrix}$
The determinant of the product equals the product of the determinants. And
$detbegin{bmatrix}1&0&0&0\0&1&0&0\0&0&3&0\0&0&2&1 end{bmatrix} = 2$
And $x_4$ can be approached the same way.
$endgroup$
$begingroup$
You should get $3$. The last matrix is off slightly.
$endgroup$
– Chris Custer
Dec 13 '18 at 1:32
$begingroup$
I think it's $begin{pmatrix}1&0&0&0\0&1&0&0\0&0&3&0\0&0&2&1end{pmatrix}$.
$endgroup$
– Chris Custer
Dec 13 '18 at 1:45
$begingroup$
@ChrisCuster thanks, I something came up and rushed the ending.
$endgroup$
– Doug M
Dec 13 '18 at 16:38
add a comment |
$begingroup$
It is clear that $begin{bmatrix}x_1\x_2\x_3\x_4 end{bmatrix} = begin{bmatrix}0\0\3\2 end{bmatrix}$ without Cramer's rule...
What does Cramer say?
$x_1 = frac {detbegin{bmatrix}0&0&0&0\3b+2c&a&b&c\3e+2f&d&e&f\3h+2i&g&h&i end{bmatrix}}{detbegin{bmatrix}1&0&0&0\0&a&b&c\0&d&e&f\0&g&h&i end{bmatrix}} = 0$
We know this because one row is all 0's
$x_2 = frac {detbegin{bmatrix}1&0&0&0\0&3b+2c&b&c\0&3e+2f&e&f\0&3h+2i&h&i end{bmatrix}}{detbegin{bmatrix}1&0&0&0\0&a&b&c\0&d&e&f\0&g&h&i end{bmatrix}} = 0$
We know this because clearly the columns are not linearly independent.
$x_3 = frac {detbegin{bmatrix}1&0&0&0\0&a&3b+2c&c\0&d&3e+2f&f\0&g&3h+2i&i end{bmatrix}}{detbegin{bmatrix}1&0&0&0\0&a&b&c\0&d&e&f\0&g&h&i end{bmatrix}} = 0$
rather than calculating this out.
$begin{bmatrix}1&0&0&0\0&a&3b+2c&c\0&d&3e+2f&f\0&g&3h+2i&i end{bmatrix} = begin{bmatrix}1&0&0&0\0&a&b&c\0&d&e&f\0&g&h&i end{bmatrix}begin{bmatrix}1&0&0&0\0&2&3&0\0&0&1&0\0&0&0&1 end{bmatrix}$
The determinant of the product equals the product of the determinants. And
$detbegin{bmatrix}1&0&0&0\0&1&0&0\0&0&3&0\0&0&2&1 end{bmatrix} = 2$
And $x_4$ can be approached the same way.
$endgroup$
It is clear that $begin{bmatrix}x_1\x_2\x_3\x_4 end{bmatrix} = begin{bmatrix}0\0\3\2 end{bmatrix}$ without Cramer's rule...
What does Cramer say?
$x_1 = frac {detbegin{bmatrix}0&0&0&0\3b+2c&a&b&c\3e+2f&d&e&f\3h+2i&g&h&i end{bmatrix}}{detbegin{bmatrix}1&0&0&0\0&a&b&c\0&d&e&f\0&g&h&i end{bmatrix}} = 0$
We know this because one row is all 0's
$x_2 = frac {detbegin{bmatrix}1&0&0&0\0&3b+2c&b&c\0&3e+2f&e&f\0&3h+2i&h&i end{bmatrix}}{detbegin{bmatrix}1&0&0&0\0&a&b&c\0&d&e&f\0&g&h&i end{bmatrix}} = 0$
We know this because clearly the columns are not linearly independent.
$x_3 = frac {detbegin{bmatrix}1&0&0&0\0&a&3b+2c&c\0&d&3e+2f&f\0&g&3h+2i&i end{bmatrix}}{detbegin{bmatrix}1&0&0&0\0&a&b&c\0&d&e&f\0&g&h&i end{bmatrix}} = 0$
rather than calculating this out.
$begin{bmatrix}1&0&0&0\0&a&3b+2c&c\0&d&3e+2f&f\0&g&3h+2i&i end{bmatrix} = begin{bmatrix}1&0&0&0\0&a&b&c\0&d&e&f\0&g&h&i end{bmatrix}begin{bmatrix}1&0&0&0\0&2&3&0\0&0&1&0\0&0&0&1 end{bmatrix}$
The determinant of the product equals the product of the determinants. And
$detbegin{bmatrix}1&0&0&0\0&1&0&0\0&0&3&0\0&0&2&1 end{bmatrix} = 2$
And $x_4$ can be approached the same way.
edited Dec 13 '18 at 16:37
answered Dec 13 '18 at 1:18
Doug MDoug M
44.8k31854
44.8k31854
$begingroup$
You should get $3$. The last matrix is off slightly.
$endgroup$
– Chris Custer
Dec 13 '18 at 1:32
$begingroup$
I think it's $begin{pmatrix}1&0&0&0\0&1&0&0\0&0&3&0\0&0&2&1end{pmatrix}$.
$endgroup$
– Chris Custer
Dec 13 '18 at 1:45
$begingroup$
@ChrisCuster thanks, I something came up and rushed the ending.
$endgroup$
– Doug M
Dec 13 '18 at 16:38
add a comment |
$begingroup$
You should get $3$. The last matrix is off slightly.
$endgroup$
– Chris Custer
Dec 13 '18 at 1:32
$begingroup$
I think it's $begin{pmatrix}1&0&0&0\0&1&0&0\0&0&3&0\0&0&2&1end{pmatrix}$.
$endgroup$
– Chris Custer
Dec 13 '18 at 1:45
$begingroup$
@ChrisCuster thanks, I something came up and rushed the ending.
$endgroup$
– Doug M
Dec 13 '18 at 16:38
$begingroup$
You should get $3$. The last matrix is off slightly.
$endgroup$
– Chris Custer
Dec 13 '18 at 1:32
$begingroup$
You should get $3$. The last matrix is off slightly.
$endgroup$
– Chris Custer
Dec 13 '18 at 1:32
$begingroup$
I think it's $begin{pmatrix}1&0&0&0\0&1&0&0\0&0&3&0\0&0&2&1end{pmatrix}$.
$endgroup$
– Chris Custer
Dec 13 '18 at 1:45
$begingroup$
I think it's $begin{pmatrix}1&0&0&0\0&1&0&0\0&0&3&0\0&0&2&1end{pmatrix}$.
$endgroup$
– Chris Custer
Dec 13 '18 at 1:45
$begingroup$
@ChrisCuster thanks, I something came up and rushed the ending.
$endgroup$
– Doug M
Dec 13 '18 at 16:38
$begingroup$
@ChrisCuster thanks, I something came up and rushed the ending.
$endgroup$
– Doug M
Dec 13 '18 at 16:38
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%2f3037460%2fusing-cramers-rule-to-solve-a-system-of-linear-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