lightbulb
Key Concepts
< div id = "study-notes" style = "background: rgba(255,255,255,0.03); padding: 1.5rem; border-radius: 12px; border: 1px solid rgba(255,255,255,0.1); margin-bottom: 2rem; line-height: 1.6;" >
1. Scalar Projection
The scalar projection of vector a onto vector b is the length of the 'shadow' cast by a on b.
Proj_b a = (a · b) / |b|
2. Vector Projection
The vector projection is the scalar projection multiplied by the unit vector of b:
Proj_v_b a = [(a · b) / |b|²] · b