Definition of Scalar Product
The scalar product, also known as the dot product, is a fundamental operation in vector algebra. For two vectors $\mathbf{a} = \begin{pmatrix} a_1\\a_2 \\a_3 \end{pmatrix}$ and $\mathbf{b} = \begin{pmatrix} b_1\\b_2 \\b_3 \end{pmatrix}$ in three-dimensional space, their scalar product is defined as:
$$\mathbf{a} \cdot \mathbf{b} = a_1b_1 + a_2b_2 + a_3b_3$$
This operation takes two vectors as input and produces a scalar (hence the name) as output.
NoteThe scalar product is denoted by a dot (·) between the vectors, which is why it's also called the dot product.
Properties of the Scalar Product
The scalar product possesses several important properties that make it a versatile tool in vector calculations:
- Commutativity: $\mathbf{v} \cdot \mathbf{w} = \mathbf{w} \cdot \mathbf{v}$ This means the order of the vectors doesn't matter when calculating their scalar product.
- Distributivity over addition: $\mathbf{u} \cdot (\mathbf{v} + \mathbf{w}) = \mathbf{u} \cdot \mathbf{v} + \mathbf{u} \cdot \mathbf{w}$ This property allows us to break down complex scalar products into simpler ones.
- Scalar multiplication: $(k\mathbf{v}) \cdot \mathbf{w} = k(\mathbf{v} \cdot \mathbf{w})$ Where $k$ is a scalar. This property shows how scalar multiplication interacts with the dot product.
- Self-dot product: $\mathbf{v} \cdot \mathbf{v} = ||\mathbf{v}||^2$ The scalar product of a vector with itself equals the square of its magnitude. This is because
$$\mathbf{v}\cdot\mathbf{v} = v_1^2 + v_2^2 + v_3^2 = \sqrt{v_1^2 + v_2^2 + v_3^2}^2 = ||\mathbf{v}||^2$$
ExampleLet $\mathbf{a} = \begin{pmatrix}1 \\2 \\3 \end{pmatrix}$ and $\mathbf{b} = \begin{pmatrix} 4\\ 5\\6 \end{pmatrix}$. Then:
$$\mathbf{a} \cdot \mathbf{b} = 1(4) + 2(5) + 3(6) = 4 + 10 + 18 = 32$$
Demonstrating commutativity: $\mathbf{b} \cdot \mathbf{a} = 4(1) + 5(2) + 6(3) = 4 + 10 + 18 = 32$
Geometric Interpretation
One of the most powerful aspects of the scalar product is its geometric interpretation. For two vectors $\mathbf{v}$ and $\mathbf{w}$, their scalar product is related to their magnitudes and the angle between them by the formula:
$$\mathbf{v} \cdot \mathbf{w} = ||\mathbf{v}||\times ||\mathbf{w}||\cos\theta$$
Where $\theta$ is the angle between $\mathbf{v}$ and $\mathbf{w}$, and $||\mathbf{v}||$ and $||\mathbf{w}||$ are the magnitudes of the vectors.
This formula provides a powerful way to find angles between vectors and has numerous applications in physics, particularly in calculating work done by a force.
