Dot Product (Scalar Product)
The dot product turns two vectors into a scalar. It measures how much of one vector lies along another — directly tied to work, projection, and angle.
Concept
Definition
For A and B with angle θ between them:
A⋅B=∣A∣∣B∣cosθ=ABcosθ.
A⋅B=AxBx+AyBy+AzBz.
Useful Identities
| Identity | Meaning |
|---|
| i^⋅i^=j^⋅j^=k^⋅k^=1 | Self dot = 1 |
| i^⋅j^=j^⋅k^=i^⋅k^=0 | Orthogonal axes |
| A⋅A=A2 | Magnitude squared |
| A⋅B=B⋅A | Commutative |
| A⋅(B+C)=A⋅B+A⋅C | Distributive |
Geometric Meaning
A⋅B = (magnitude of A) × (component of B along A).
So if you project B onto A, the result is Bcosθ, and multiplying by A gives the dot product.
Angle Between Vectors
cosθ=ABA⋅B.
Perpendicularity Test
A⋅B=0 iff A⊥B (assuming non-zero vectors).
Applications
- Work: W=F⋅d. Only the component of force along displacement does work.
- Power: P=F⋅v.
- Magnetic flux: Φ=B⋅A.
Worked Example
Q1: A=2i^+3j^−k^, B=i^−2j^+2k^. Find A⋅B and the angle between them.
Solution:
A⋅B=(2)(1)+(3)(−2)+(−1)(2)=2−6−2=−6.
A=4+9+1=14, B=1+4+4=3.
cosθ=−6/(314)=−2/14≈−0.535⇒θ≈122.3°.
Q2: A constant force F=4i^+3j^ N moves a particle through displacement d=5i^ m. Find the work done.
W=F⋅d=(4)(5)+(3)(0)=20 J.
Common Confusions
- "A⋅B=AB." — Only if θ=0 (parallel vectors).
- "Dot product is a vector." — No, it returns a scalar.
- "A⋅B=0 implies A=0 or B=0." — No, it can also mean they are perpendicular.
Key Takeaways
- A⋅B=ABcosθ=AxBx+AyBy+AzBz.
- Returns a scalar (positive, negative, or zero).
- Zero iff perpendicular (for non-zero vectors).
- Work = F⋅d.
- Commutative and distributive over addition.