Can anyone explain how it is that dot products can perform projection but so can division, and how the processes are related (or not)?
With dot product, you can project one vector onto another vector:
$\hat{v} = \hat{a} \cdot \hat{b}$
Where $b$ is normalized and you want to project $a$ onto that vector direction.
Division can be used to do projection too though. In the case of converting 3d coordinates to 2d coordinates (like in computer graphics for rendering 3d geometry on a 2d screen), that can be done by dividing x and y by z:
$x' = x / z$
$y' = y / z$
Where $x$, $y$ and $z$ are the 3d coordinates of a point, and $x'$ and $y'$ are the 2d coordinates of the point.
In the dot product case, one vector has to be normalized, is that where the equivalent division is happening maybe?
Thanks!