How to calculate vector multiplication
Multiplying vectors is a common operation in mathematics and physics, but different methods of multiplication produce different results. This article will detail the two main ways to multiply vectors:Dot product (inner product)andcross product (external product), and demonstrates its calculation methods and application scenarios through structured data.
1. Dot product (inner product)

The dot product is a multiplication operation of two vectors, and the result is a scalar (that is, a real number). The dot product calculation formula is as follows:
| Vector A | vectorB | Dot product formula |
|---|---|---|
| (a₁, a₂, a₃) | (b₁, b₂, b₃) | A·B = a₁b₁ + a₂b₂ + a₃b₃ |
The dot product has a wide range of applications, such as calculating work (W = F·d) in physics, or determining the angle between two vectors in computer graphics.
2. Cross product (external product)
The cross product is another multiplication operation of two vectors, resulting in a new vector. The formula for calculating the cross product is as follows:
| Vector A | vectorB | cross product formula |
|---|---|---|
| (a₁, a₂, a₃) | (b₁, b₂, b₃) | A×B = (a₂b₃ - a₃b₂, a₃b₁ - a₁b₃, a₁b₂ - a₂b₁) |
The cross product is often used to calculate moments in physics, or to find the normal vector of the plane where two vectors lie in geometry.
3. Comparison between dot product and cross product
| Properties | dot product | cross product |
|---|---|---|
| result type | scalar | vector |
| Calculation formula | A·B = |A||B|cosθ | A×B = |A||B|sinθ·n |
| Application scenarios | Calculate angles and projections | Find normal vector and moment |
4. Practical application examples
1.Dot product example: Assuming vector A = (1, 2, 3) and vector B = (4, 5, 6), then their dot product is:
| 1×4 + 2×5 + 3×6 = 4 + 10 + 18 = 32 |
2.Cross product example: Similarly, vector A = (1, 2, 3) and vector B = (4, 5, 6), then their cross product is:
| (2×6 - 3×5, 3×4 - 1×6, 1×5 - 2×4) = (-3, 6, -3) |
5. Summary
Vector multiplication is a basic operation in mathematics and physics. Dot product and cross product each have their own unique properties and application scenarios. Mastering these two multiplication methods can help us better solve practical problems.
I hope that through the introduction of this article, you can have a deeper understanding of vector multiplication. If you have any questions, please leave a message in the comment area to discuss!
check the details
check the details