Enter the coordinates for each vector to calculate their dot product.
The dot product, also known as the scalar product, is a fundamental operation in vector algebra with applications in physics, engineering, and computer science. It results in a scalar value that represents how much two vectors align with each other. Here's a comprehensive guide on how to calculate the dot product of two vectors:
For two 2D vectors \(\vec{a} = (a_x, a_y)\) and \(\vec{b} = (b_x, b_y)\), their dot product \(\vec{a} \cdot \vec{b}\) is defined as:
\[ \vec{a} \cdot \vec{b} = a_x b_x + a_y b_y \]For two 3D vectors \(\vec{a} = (a_x, a_y, a_z)\) and \(\vec{b} = (b_x, b_y, b_z)\), their dot product \(\vec{a} \cdot \vec{b}\) is defined as:
\[ \vec{a} \cdot \vec{b} = a_x b_x + a_y b_y + a_z b_z \]Where:
Let's calculate the dot product of two 2D vectors:
\(\vec{a} = (2, 3)\) and \(\vec{b} = (5, 6)\)
Therefore, the dot product of \(\vec{a}\) and \(\vec{b}\) is 28.
Let's calculate the dot product of two 3D vectors:
\(\vec{a} = (2, 3, 4)\) and \(\vec{b} = (5, 6, 7)\)
Therefore, the dot product of \(\vec{a}\) and \(\vec{b}\) is 56.
This diagram illustrates two 2D vectors \(\vec{a}\) and \(\vec{b}\). The dot product is related to the angle θ between these vectors by the formula:
\[ \vec{a} \cdot \vec{b} = |\vec{a}| |\vec{b}| \cos(\theta) \]Where \(|\vec{a}|\) and \(|\vec{b}|\) are the magnitudes of the vectors, and θ is the angle between them.