Anyone have a clear definition of how to do a cross product?

Click For Summary
SUMMARY

The cross product of two vectors, denoted as \(\vec C\), is defined by the formula \(|\vec C|=|\vec A||\vec B|\sin(\theta)\), where \(\theta\) is the angle between the vectors \(\vec A\) and \(\vec B\). To compute the cross product using components, one forms a 3x3 determinant with the vectors' components. The resulting vector is calculated using the formula \(A \times B = [A_2B_3 - A_3B_2, A_3B_1 - A_1B_3, A_1B_2 - A_2B_1]\). The order of the vectors is crucial, as reversing them yields a vector in the opposite direction.

PREREQUISITES
  • Understanding of vector notation and components
  • Familiarity with the right-hand rule for vector direction
  • Basic knowledge of determinants and matrix operations
  • Concept of vector magnitude and angle between vectors
NEXT STEPS
  • Study the properties of vector products in linear algebra
  • Explore applications of cross products in physics, particularly in torque and angular momentum
  • Learn about the geometric interpretation of cross products
  • Investigate computational methods for cross products in programming languages like Python or MATLAB
USEFUL FOR

Students and professionals in mathematics, physics, and engineering who need to understand vector operations, particularly in applications involving three-dimensional space.

Rocko
Messages
24
Reaction score
0
anyone have a clear definition of how to do a cross product?
 
Physics news on Phys.org
The cross-product [itex]\vec C[/itex] of two vectors [itex]\vec A[/itex] and [itex]\vec B[/itex] is most conveniently defined by:
[itex]|\vec C|=|\vec A||\vec B|\sin(\theta)[/itex]
where [itex]\theta[/itex] is the angle between [itex]\vec A[/itex] and [itex]\vec B[/itex].
This gives the magnitude of [itex]\vec C[/itex]. The direction is given by the right-hand rule.

To calculate the cross product when you know the components,
it's usually easiest to form the symbolic 3X3 determinant:
[tex]\vec A=(A_x,A_y,A_z)[/tex]
[tex]\vec B=(B_x,B_y,B_z)[/tex]
[tex]\vec C = \left|<br /> \begin{array}{ccc}<br /> \hat x & \hat y &\hat z \\<br /> A_x & A_y & A_z\\<br /> B_x & B_y & B_z<br /> \end{array}\right|[/tex]
This follows from [itex]\hat x \times \hat y = \hat z[/itex] (and the other possible product combinations of these unit vectors) and the distributivity of the cross product (which is tedious to prove IIRC).
 

A cross product is a mathematical operation that takes two vectors as inputs and produces a third vector that is perpendicular to both input vectors. It is also known as a vector product.

To perform a cross product, you need to follow these steps:

1. Identify the two input vectors, let's call them A and B.
2. Write the two vectors in terms of their components in the form of [A1, A2, A3] and [B1, B2, B3].
3. Write the cross product formula: A x B = [A2B3 - A3B2, A3B1 - A1B3, A1B2 - A2B1]
4. Multiply each component of A by the corresponding component of B and subtract the products.
5. The resulting vector is the cross product of A and B.

Keep in mind that the order of the vectors matters in a cross product. Switching the order will result in a vector in the opposite direction.

For example, if A = [2, 3, 4] and B = [5, 6, 7], then the cross product A x B = [-3, 6, -3]. This means that the resulting vector is perpendicular to both A and B, and its direction is determined by the right-hand rule.

In summary, a cross product is a mathematical operation used to find a vector that is perpendicular to two given vectors. It follows a specific formula and the order of the vectors matters.
 

Similar threads

  • · Replies 5 ·
Replies
5
Views
2K
  • · Replies 2 ·
Replies
2
Views
924
  • · Replies 2 ·
Replies
2
Views
2K
  • · Replies 3 ·
Replies
3
Views
2K
Replies
25
Views
4K
Replies
2
Views
2K
  • · Replies 6 ·
Replies
6
Views
3K
Replies
6
Views
2K
Replies
21
Views
4K
  • · Replies 3 ·
Replies
3
Views
2K