Find the cross product of (3, 2, 0) and (2, −1, −2), and use the dot product to confirm that your answer is correct.
To find the cross product, we form a determinant the first row of which is a unit vector, the second row is our first vector, and the third row is our second vector
"\\begin{pmatrix}\n 3 \\\\\n 2 \\\\\n 0\n\\end{pmatrix} \\times \\begin{pmatrix}\n 2 \\\\\n -1 \\\\\n -2\n\\end{pmatrix}= \\begin{vmatrix}\n i & j & k\\\\\n 3 & 2 & 0\\\\\n 2 & -1 & -2\n\\end{vmatrix}"
"\\begin{pmatrix}\n 3 \\\\\n 2 \\\\\n 0\n\\end{pmatrix} \\times \\begin{pmatrix}\n 2 \\\\\n -1 \\\\\n -2\n\\end{pmatrix}= \\begin{vmatrix}\n 2 & 0 \\\\\n -1 & -2 \n\\end{vmatrix}i - \\begin{vmatrix}\n 3 & 0 \\\\\n 2 & -2 \n\\end{vmatrix} j+\\begin{vmatrix}\n 3 & 2 \\\\\n 2 & -1\n\\end{vmatrix}k"
"((2).(-2)-(0).(-1))i-((3).(-2)-(0).(2))j+((3).(-1)-(2).(2))k"
"-4i+6j-7k"
"\\begin{pmatrix}\n 3 \\\\\n 2 \\\\\n 0\n\\end{pmatrix} \\times \\begin{pmatrix}\n 2 \\\\\n -1 \\\\\n -2\n\\end{pmatrix}= \\begin{pmatrix}\n -4 \\\\\n 6 \\\\\n -7\n\\end{pmatrix}"
To confirm that this vector is perpendicular we can check the dot product is zero:
"\u27e8 3, 2 , 0\u27e9\u22c5\u27e8 -4 , 6, -7\u27e9 = -12+ 12 + 0 = 0"
"\u27e8 2, -1 , -2\u27e9\u22c5\u27e8 -4 , 6, -7\u27e9 = -8 - 6 + 14= 0"
Comments
Leave a comment