Mark's Calc III - Individual question feedhttp://calc3.askbot.com/questions/Open source question and answer forum written in Python and DjangoenCopyright Askbot, 2010-2011.Wed, 30 Jul 2014 20:31:06 -0500Exam III review sheethttp://calc3.askbot.com/question/200/exam-iii-review-sheet/So I am completely confused on how to solve #1 on the final exam review sheet: Let $D$ denote the solid pyramid with vertices located at $(4,0,0),(0,1,0),(0,0,2)$ and the origin. Set up $$\iiint_D f(x,y,z)dV$$ in the order $dzdydx$. We did one similar to this in class but we were given an equation for the plane. I guess the real question is, how would we go about finding an equation of a plane that we could work with?Wed, 30 Jul 2014 10:08:58 -0500http://calc3.askbot.com/question/200/exam-iii-review-sheet/Answer by Wes for Exam III review sheet http://calc3.askbot.com/question/200/exam-iii-review-sheet/?answer=201#post-id-201We find the equation of a plane by taking the cross product of 2 vectors from the differences between 2 sets of points. So we start with our points. Let's make $A=(4,0,0)$, $B = (0,1,0)$, and $C=(0,0,2)$. If we take the differences between the points $A$ and $B$, and $B$ and $C$, we create vectors $\overrightarrow{AB} = \langle 4, -1, 0 \rangle$ and $\overrightarrow{BC} = \langle 0,1,-2\rangle$. We then take the cross product of these vectors $\overrightarrow{AB} \times \overrightarrow{BC}$ and get the matrix $$\begin{vmatrix} I & J & K\\ 4 & -1 & 0\\ 0 & 1& -2\\ \end{vmatrix} $$ This matrix equals $2I -8J +5K$, and if we pick our favorite of the three original points, we can create an equation. I chose point $A$ and found the equation $$2(x -4) -8(y-0)+5(z-0) = 0$$ which, if we distribute, equals $$2x-8y+5z = 8$$ which we can easily use to find our integral. I hope this helps! *EDIT: Well, I don't know how to get the matrix working, but pretend it's 3 rows and three columns!*Wed, 30 Jul 2014 10:50:02 -0500http://calc3.askbot.com/question/200/exam-iii-review-sheet/?answer=201#post-id-201Answer by Justin for Exam III review sheet http://calc3.askbot.com/question/200/exam-iii-review-sheet/?answer=203#post-id-203I agree with Wes about almost everything that he did. However, when I compute the cross product, I obtain the vector $\langle 2, 8, 4 \rangle$ (notice that the $z$ component is equal to $4$, not $5$. This results in the following equation for the plane: $$2(x-4) + 8(y-0) + 4(z-0) = 0$$ $$2x - 8 + 8y + 4z = 0$$ $$2x + 8y + 4z = 8$$ We can verify that this is the correct equation by plugging in all three of our original points to make sure they satisfy this equation. ---------- $(4, 0, 0)$: $$2(4) + 8(0) + 4(0) = 8$$ $$ 8 = 8 $$ The point $(4, 0, 0)$ works and is legit. ---------- $(0, 1, 0)$: $$2(0) + 8(1) + 4(0) = 8$$ $$ 8 = 8 $$ The point $(0, 1, 0)$ works and is legit. ---------- $(0, 0, 2)$: $$2(0) + 8(0) + 4(2) = 8$$ $$ 8 = 8 $$ The point $(0, 0, 2)$ works and is legit. ---------- All three points work, so $2x + 8y + 4z = 8$ is an equation for the plane in question.Wed, 30 Jul 2014 15:41:14 -0500http://calc3.askbot.com/question/200/exam-iii-review-sheet/?answer=203#post-id-203Answer by Tiffany for Exam III review sheet http://calc3.askbot.com/question/200/exam-iii-review-sheet/?answer=207#post-id-207So with using the equation that Justin came up with for the plane, do we just use that equation as our $ f(x,y,z) $ ?If so, I ended up with $$ \int _0 ^4 \int _0^1 \int _0^2 2x +8y +4z \delta z \delta y \delta x $$ and I'm not sure if that was the right way to go from here?Wed, 30 Jul 2014 20:31:06 -0500http://calc3.askbot.com/question/200/exam-iii-review-sheet/?answer=207#post-id-207