8.4

The Dot Product of Two Vectors

  • The dot product of u = βŸ¨π‘’1, 𝑒2⟩ and v = βŸ¨π‘£1, 𝑣2⟩ is a scalar value.

  • Formula: u β‹… v = u1v1 + u2v2

  • Properties of the Dot Product:

    1. u β‹… v = v β‹… u

    2. u β‹… (v + w) = u β‹… v + u β‹… w

    3. c(u β‹… v) = (cu) β‹… v = u β‹… (cv)

    4. 0 β‹… v = 0

    5. v β‹… v = ||v||^2

The Angle Between Two Vectors

  • The angle \theta between two nonzero vectors u and v can be determined from: cos \theta = \frac{u β‹… v}{||u|| ||v||}.

  • Alternative dot product calculation: u \cdot v = ||u|| ||v|| cos \theta

  • Two vectors u and v are orthogonal if and only if u β‹… v = 0.

Finding Vector Components

  • Vectors w1w1 and w2w2 are vector components of uu.

  • w1w1 is the projection of uu onto vv: projvu=uβ‹…v∣∣v∣∣2vprojvu=∣∣v∣∣2uβ‹…v​v

  • w2w2 is given by: w2=uβˆ’projvuw2=uβˆ’projv​u

Work

  • Work W done by a constant force F:

    1. W = ||F|| ||\overrightarrow{PQ}|| cos \theta, where \theta is the angle between the force and the displacement.

    2. W = F β‹… \overrightarrow{PQ}