| Date | November 17, 2025 (optional — no deadline) |
|---|---|
| Topic | Vector Algebra (Component-wise Operations, Dot Product, Norm) |
| Sub-Topics | Dot product, norm, cosine similarity, scalar projection, vector projection, decomposition, orthogonality, cross product, right-hand rule, geometric area, etc |
| Curator | @Anonymous |
<aside> ❣️
Please check this out first!!
</aside>
Difficulty
[x] Beginner
[x] Intermediate
[x] Advanced
Compute the angle $\theta$ between $u$ and $v$ using
$$ \cos\theta = \frac{u \cdot v}{\|u\|\, \|v\|} $$
Compute the projection of $u$ onto $v$:
$$ \operatorname{proj}_{v}(u) = \frac{u \cdot v}{\|v\|^{2}}\, v. $$
Compute the vector component of $u$ orthogonal to $v$:
$$ u_\perp = u - proj_v(u) $$
Compute the cross product $u \times v$.