Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
183_notes:cross_product [2014/11/18 15:23] – created caballero | 183_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:// | ||
+ | $$\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(ByCz−CyBz)−ˆy(BxCz−CxBz)+ˆz(BxCy−CxBy) | ||
+ | |||
+ | So, in general, the cross product in Cartesian coordinates is given by, | ||
+ | |||
+ | →B×→C=⟨ByCz−CyBz,CxBz−BxCz,BxCy−CxBy⟩ |