How do I find the volume of a parallelepiped given 4 vertices?
$begingroup$
"Find the volume of the parallelepiped by four vertices: $(0,1,0), (2,2,2), (0,3,0),$ and $(3,1,2)$.
I know the formula to find this volume is: $|vec{a} circ(vec{b}times vec{c})|$, and I know how to carry out the computation to get the actual value. What I need to know is the process of how I set up the values of the vectors $vec{a},vec{b},$ and $vec{c}$ using the given points?
calculus multivariable-calculus volume
$endgroup$
add a comment |
$begingroup$
"Find the volume of the parallelepiped by four vertices: $(0,1,0), (2,2,2), (0,3,0),$ and $(3,1,2)$.
I know the formula to find this volume is: $|vec{a} circ(vec{b}times vec{c})|$, and I know how to carry out the computation to get the actual value. What I need to know is the process of how I set up the values of the vectors $vec{a},vec{b},$ and $vec{c}$ using the given points?
calculus multivariable-calculus volume
$endgroup$
$begingroup$
Form three difference vectors at a vertex and find scalar triple product ...
$endgroup$
– Narasimham
Dec 16 '18 at 7:09
add a comment |
$begingroup$
"Find the volume of the parallelepiped by four vertices: $(0,1,0), (2,2,2), (0,3,0),$ and $(3,1,2)$.
I know the formula to find this volume is: $|vec{a} circ(vec{b}times vec{c})|$, and I know how to carry out the computation to get the actual value. What I need to know is the process of how I set up the values of the vectors $vec{a},vec{b},$ and $vec{c}$ using the given points?
calculus multivariable-calculus volume
$endgroup$
"Find the volume of the parallelepiped by four vertices: $(0,1,0), (2,2,2), (0,3,0),$ and $(3,1,2)$.
I know the formula to find this volume is: $|vec{a} circ(vec{b}times vec{c})|$, and I know how to carry out the computation to get the actual value. What I need to know is the process of how I set up the values of the vectors $vec{a},vec{b},$ and $vec{c}$ using the given points?
calculus multivariable-calculus volume
calculus multivariable-calculus volume
edited Dec 16 '18 at 0:32
Key Flex
7,77461232
7,77461232
asked Dec 16 '18 at 0:26
JaigusJaigus
2218
2218
$begingroup$
Form three difference vectors at a vertex and find scalar triple product ...
$endgroup$
– Narasimham
Dec 16 '18 at 7:09
add a comment |
$begingroup$
Form three difference vectors at a vertex and find scalar triple product ...
$endgroup$
– Narasimham
Dec 16 '18 at 7:09
$begingroup$
Form three difference vectors at a vertex and find scalar triple product ...
$endgroup$
– Narasimham
Dec 16 '18 at 7:09
$begingroup$
Form three difference vectors at a vertex and find scalar triple product ...
$endgroup$
– Narasimham
Dec 16 '18 at 7:09
add a comment |
2 Answers
2
active
oldest
votes
$begingroup$
The volume of a parallelepiped determined by the vectors a, b ,c (where a, b and c share the same initial point) is the magnitude of their scalar triple product:
Take four points as $P=(0,1,0),Q=(2,2,2),R=(0,3,0),S=(3,1,2)$ and find
$$PQ=a=langle2-0,2-1,2-0rangle=langle2,1,2rangle$$
$$PR=b=langle0-0,3-1,0-0rangle=langle0,2,0rangle$$
$$PS=c=langle3-0,1-1,2-0rangle=langle3,0,2rangle$$
Then find $|acdot(btimes c)|$
$endgroup$
$begingroup$
Thanks, this is great, but can you just elaborate a bit about PQ, PR, PS, i.e. why you chose them the way you did, what they represent, and would it matter if we arranged them in a different pairing (such as QR, QS, etc.).
$endgroup$
– Jaigus
Dec 16 '18 at 0:41
$begingroup$
@Jaigus Yes, you can rearrange in any manner like $QR,QS$. Since the volume is determined by vectors, we first find the distance between any two points to get the vectors $a,b,c$.
$endgroup$
– Key Flex
Dec 16 '18 at 1:10
add a comment |
$begingroup$
Translate the parallelepiped such that one of the vertices is the origin. Then the volume has not changed and you can use your formula.
$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%2f3042107%2fhow-do-i-find-the-volume-of-a-parallelepiped-given-4-vertices%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$
The volume of a parallelepiped determined by the vectors a, b ,c (where a, b and c share the same initial point) is the magnitude of their scalar triple product:
Take four points as $P=(0,1,0),Q=(2,2,2),R=(0,3,0),S=(3,1,2)$ and find
$$PQ=a=langle2-0,2-1,2-0rangle=langle2,1,2rangle$$
$$PR=b=langle0-0,3-1,0-0rangle=langle0,2,0rangle$$
$$PS=c=langle3-0,1-1,2-0rangle=langle3,0,2rangle$$
Then find $|acdot(btimes c)|$
$endgroup$
$begingroup$
Thanks, this is great, but can you just elaborate a bit about PQ, PR, PS, i.e. why you chose them the way you did, what they represent, and would it matter if we arranged them in a different pairing (such as QR, QS, etc.).
$endgroup$
– Jaigus
Dec 16 '18 at 0:41
$begingroup$
@Jaigus Yes, you can rearrange in any manner like $QR,QS$. Since the volume is determined by vectors, we first find the distance between any two points to get the vectors $a,b,c$.
$endgroup$
– Key Flex
Dec 16 '18 at 1:10
add a comment |
$begingroup$
The volume of a parallelepiped determined by the vectors a, b ,c (where a, b and c share the same initial point) is the magnitude of their scalar triple product:
Take four points as $P=(0,1,0),Q=(2,2,2),R=(0,3,0),S=(3,1,2)$ and find
$$PQ=a=langle2-0,2-1,2-0rangle=langle2,1,2rangle$$
$$PR=b=langle0-0,3-1,0-0rangle=langle0,2,0rangle$$
$$PS=c=langle3-0,1-1,2-0rangle=langle3,0,2rangle$$
Then find $|acdot(btimes c)|$
$endgroup$
$begingroup$
Thanks, this is great, but can you just elaborate a bit about PQ, PR, PS, i.e. why you chose them the way you did, what they represent, and would it matter if we arranged them in a different pairing (such as QR, QS, etc.).
$endgroup$
– Jaigus
Dec 16 '18 at 0:41
$begingroup$
@Jaigus Yes, you can rearrange in any manner like $QR,QS$. Since the volume is determined by vectors, we first find the distance between any two points to get the vectors $a,b,c$.
$endgroup$
– Key Flex
Dec 16 '18 at 1:10
add a comment |
$begingroup$
The volume of a parallelepiped determined by the vectors a, b ,c (where a, b and c share the same initial point) is the magnitude of their scalar triple product:
Take four points as $P=(0,1,0),Q=(2,2,2),R=(0,3,0),S=(3,1,2)$ and find
$$PQ=a=langle2-0,2-1,2-0rangle=langle2,1,2rangle$$
$$PR=b=langle0-0,3-1,0-0rangle=langle0,2,0rangle$$
$$PS=c=langle3-0,1-1,2-0rangle=langle3,0,2rangle$$
Then find $|acdot(btimes c)|$
$endgroup$
The volume of a parallelepiped determined by the vectors a, b ,c (where a, b and c share the same initial point) is the magnitude of their scalar triple product:
Take four points as $P=(0,1,0),Q=(2,2,2),R=(0,3,0),S=(3,1,2)$ and find
$$PQ=a=langle2-0,2-1,2-0rangle=langle2,1,2rangle$$
$$PR=b=langle0-0,3-1,0-0rangle=langle0,2,0rangle$$
$$PS=c=langle3-0,1-1,2-0rangle=langle3,0,2rangle$$
Then find $|acdot(btimes c)|$
answered Dec 16 '18 at 0:28
Key FlexKey Flex
7,77461232
7,77461232
$begingroup$
Thanks, this is great, but can you just elaborate a bit about PQ, PR, PS, i.e. why you chose them the way you did, what they represent, and would it matter if we arranged them in a different pairing (such as QR, QS, etc.).
$endgroup$
– Jaigus
Dec 16 '18 at 0:41
$begingroup$
@Jaigus Yes, you can rearrange in any manner like $QR,QS$. Since the volume is determined by vectors, we first find the distance between any two points to get the vectors $a,b,c$.
$endgroup$
– Key Flex
Dec 16 '18 at 1:10
add a comment |
$begingroup$
Thanks, this is great, but can you just elaborate a bit about PQ, PR, PS, i.e. why you chose them the way you did, what they represent, and would it matter if we arranged them in a different pairing (such as QR, QS, etc.).
$endgroup$
– Jaigus
Dec 16 '18 at 0:41
$begingroup$
@Jaigus Yes, you can rearrange in any manner like $QR,QS$. Since the volume is determined by vectors, we first find the distance between any two points to get the vectors $a,b,c$.
$endgroup$
– Key Flex
Dec 16 '18 at 1:10
$begingroup$
Thanks, this is great, but can you just elaborate a bit about PQ, PR, PS, i.e. why you chose them the way you did, what they represent, and would it matter if we arranged them in a different pairing (such as QR, QS, etc.).
$endgroup$
– Jaigus
Dec 16 '18 at 0:41
$begingroup$
Thanks, this is great, but can you just elaborate a bit about PQ, PR, PS, i.e. why you chose them the way you did, what they represent, and would it matter if we arranged them in a different pairing (such as QR, QS, etc.).
$endgroup$
– Jaigus
Dec 16 '18 at 0:41
$begingroup$
@Jaigus Yes, you can rearrange in any manner like $QR,QS$. Since the volume is determined by vectors, we first find the distance between any two points to get the vectors $a,b,c$.
$endgroup$
– Key Flex
Dec 16 '18 at 1:10
$begingroup$
@Jaigus Yes, you can rearrange in any manner like $QR,QS$. Since the volume is determined by vectors, we first find the distance between any two points to get the vectors $a,b,c$.
$endgroup$
– Key Flex
Dec 16 '18 at 1:10
add a comment |
$begingroup$
Translate the parallelepiped such that one of the vertices is the origin. Then the volume has not changed and you can use your formula.
$endgroup$
add a comment |
$begingroup$
Translate the parallelepiped such that one of the vertices is the origin. Then the volume has not changed and you can use your formula.
$endgroup$
add a comment |
$begingroup$
Translate the parallelepiped such that one of the vertices is the origin. Then the volume has not changed and you can use your formula.
$endgroup$
Translate the parallelepiped such that one of the vertices is the origin. Then the volume has not changed and you can use your formula.
answered Dec 16 '18 at 0:28
SmileyCraftSmileyCraft
3,401516
3,401516
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%2f3042107%2fhow-do-i-find-the-volume-of-a-parallelepiped-given-4-vertices%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
$begingroup$
Form three difference vectors at a vertex and find scalar triple product ...
$endgroup$
– Narasimham
Dec 16 '18 at 7:09