183_notes:cross_product

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
183_notes:cross_product [2014/11/18 15:23] – created caballero183_notes:cross_product [2014/11/18 15:33] (current) caballero
Line 3: Line 3:
 To take the cross product of two vectors (B×C) in Cartesian coordinates in general, we set up a special 3-by-3 matrix that has as its rows the Cartesian unit vectors (ˆx, ˆy, and ˆz), the components of the first vector (Bx, By, and Bz), and the components of the second vector (Cx, Cy, and Cz). The columns are organized by component. The determinant of this matrix will give us the cross product of the two vectors: To take the cross product of two vectors (B×C) in Cartesian coordinates in general, we set up a special 3-by-3 matrix that has as its rows the Cartesian unit vectors (ˆx, ˆy, and ˆz), the components of the first vector (Bx, By, and Bz), and the components of the second vector (Cx, Cy, and Cz). The columns are organized by component. The determinant of this matrix will give us the cross product of the two vectors:
  
-B×C
+$$\vec{B} \times \vec{C} = det\begin{vmatrix} 
 +\hat{x} & \hat{y} & \hat{z} \\ 
 +B_x & B_y & B_z \\ 
 +C_x & C_y & C_z \\ 
 +\end{vmatrix}$$
  
 +A useful way to remember how to take the determinant is [[http://en.wikipedia.org/wiki/Determinant#3.C2.A0.C3.97.C2.A03_matrices|given online]] and uses cross-multiplication. We apply that method to find the 2-by-2 determinants that can be computed.
  
 +$$\vec{B} \times \vec{C} = det\begin{vmatrix}
 +\hat{x} & \hat{y} & \hat{z} \\
 +B_x & B_y & B_z \\
 +C_x & C_y & C_z \\
 +\end{vmatrix} = \hat{x}\begin{vmatrix}
 +B_y & B_z \\
 +C_y & C_z \\
 +\end{vmatrix} - \hat{y} \begin{vmatrix}
 +B_x & B_z \\
 +C_x & C_z \\
 +\end{vmatrix} + \hat{z} \begin{vmatrix}
 +B_x & B_y \\
 +C_x & C_y \\
 +\end{vmatrix}$$
 +
 +We further cross-multiply to find the determinants of the 2-by-2 matrices,
 +
 +B×C=ˆx(ByCzCyBz)ˆy(BxCzCxBz)+ˆz(BxCyCxBy)
 +
 +So, in general, the cross product in Cartesian coordinates is given by,
 +
 +B×C=ByCzCyBz,CxBzBxCz,BxCyCxBy
  • 183_notes/cross_product.1416324207.txt.gz
  • Last modified: 2014/11/18 15:23
  • by caballero