2: Vectors
Vectors are the fundamental language of multivariable calculus and physics.
Vector Basics
A vector has magnitude and direction. In R3:
v=โจv1โ,v2โ,v3โโฉ=v1โi+v2โj+v3โk
Magnitude
โฃvโฃ=โฅvโฅ=v12โ+v22โ+v32โโ
Unit Vector
A vector with magnitude 1. To normalize:
v^=โฃvโฃvโ
Vector Operations
Addition: u+v=โจu1โ+v1โ,u2โ+v2โ,u3โ+v3โโฉ
Scalar multiplication: cv=โจcv1โ,cv2โ,cv3โโฉ
Dot Product
uโ
v=u1โv1โ+u2โv2โ+u3โv3โ
Geometric Interpretation
uโ
v=โฃuโฃโฃvโฃcosฮธ
where ฮธ is the angle between the vectors.
Properties
- uโ
v=0 iff uโฅv (orthogonal)
- uโ
u=โฃuโฃ2
- Commutative: uโ
v=vโ
u
- Distributive: uโ
(v+w)=uโ
v+uโ
w
Projection
The projection of u onto v:
projvโu=โฃvโฃ2uโ
vโv=vโ
vuโ
vโv
Scalar component: compvโu=โฃvโฃuโ
vโ
Cross Product
Only defined in R3:
uรv=โiu1โv1โโju2โv2โโku3โv3โโโ
=โจu2โv3โโu3โv2โ,u3โv1โโu1โv3โ,u1โv2โโu2โv1โโฉ
Geometric Interpretation
- uรv is perpendicular to both u and v
- Direction given by right-hand rule
- Magnitude: โฃuรvโฃ=โฃuโฃโฃvโฃsinฮธ
- Equals the area of the parallelogram formed by u and v
Properties
- uรv=0 iff uโฅv (parallel)
- Anti-commutative: uรv=โ(vรu)
- uรu=0
- Distributive: uร(v+w)=uรv+uรw
Triple Products
Scalar Triple Product
uโ
(vรw)=โu1โv1โw1โโu2โv2โw2โโu3โv3โw3โโโ
Geometric meaning: Volume of the parallelepiped formed by u,v,w.
Vector Triple Product
uร(vรw)=(uโ
w)vโ(uโ
v)w
(BAC-CAB rule)
Lines and Planes
Line in 3D
Through point P0โ=(x0โ,y0โ,z0โ) with direction v=โจa,b,cโฉ:
Vector form: r(t)=r0โ+tv
Parametric form:
x=x0โ+at,y=y0โ+bt,z=z0โ+ct
Symmetric form:
axโx0โโ=byโy0โโ=czโz0โโ
Plane in 3D
Through point P0โ=(x0โ,y0โ,z0โ) with normal n=โจa,b,cโฉ:
Vector form: nโ
(rโr0โ)=0
Scalar form:
a(xโx0โ)+b(yโy0โ)+c(zโz0โ)=0
General form:
ax+by+cz=d
Distance from Point to Plane
Distance from point (x1โ,y1โ,z1โ) to plane ax+by+cz=d:
D=a2+b2+c2โโฃax1โ+by1โ+cz1โโdโฃโ
Summary
| Operation | Formula | Result | Geometric Meaning |
|---|
| Dot product | uโ
v | Scalar | $ |
| Cross product | uรv | Vector | Normal to both, area of parallelogram |
| Scalar triple | uโ
(vรw) | Scalar | Volume of parallelepiped |