12.3: Vectors and the Dot Product

Vectors and the Dot Product

  • The dot product (scalar product) is an operation to multiply two vectors, returning a real number.

  • Defined as: ab=a<em>1b</em>1+a<em>2b</em>2+a<em>3b</em>3a \cdot b = a<em>1 b</em>1 + a<em>2 b</em>2 + a<em>3 b</em>3 for vectors in R3\mathbb{R}^3.

Properties of the Dot Product

  • Symmetry: ab=baa \cdot b = b \cdot a

  • Distributive: a(b+c)=ab+aca \cdot (b + c) = a \cdot b + a \cdot c

  • Scalar multiplication: (ca)b=c(ab)(c \cdot a) \cdot b = c (a \cdot b)

  • Zero vector property: a0=0a \cdot 0 = 0

Geometric Interpretation

  • Given angle θ\theta between vectors aa and bb:

    • ab=abcos(θ)a \cdot b = |a||b| \cos(\theta)

    • If θ=0\theta = 0: vectors are parallel; θ=π\theta = \pi: vectors are opposite.

Angle Calculation

  • To find angle between two vectors:

    • cos(θ)=abab\cos(\theta) = \frac{a \cdot b}{|a||b|}

Orthogonality

  • Two nonzero vectors are orthogonal if ab=0a \cdot b = 0.

Direction Angles and Cosines

  • Direction angles α,β,γ\alpha, \beta, \gamma are angles with axes; cosines are direction cosines:

    • cosα=a<em>1a,cosβ=a</em>2a,cosγ=a3a\cos \alpha = \frac{a<em>1}{|a|}, \cos \beta = \frac{a</em>2}{|a|}, \cos \gamma = \frac{a_3}{|a|}

    • Must satisfy: cos2α+cos2β+cos2γ=1\cos^2 \alpha + \cos^2 \beta + \cos^2 \gamma = 1

Projections

  • Vector projection of bb onto aa: projab=aba2a\text{proj}_a b = \frac{a \cdot b}{|a|^2} a

  • Scalar projection (component): compab=bcos(θ)\text{comp}_a b = |b| \cos(\theta).

Work Application

  • Work done by force FF over distance DD:

    • W=FDW = F \cdot D

    • Use angle between force and displacement vectors to find the work done efficiently.