I have an equation of a line written in slope intercept form $y = mx + b$ How would I translate it from the 2d space into the projective space?
I have been reading Wikipedia and I believe this is the Homogeneous coordinates and the equation that I come up with $ax + by + cy = 0$
Any examples would be preferred!
Your case is the simple one
NOTE:The line through two points in homogeneous coordinates is defined as $$L = \begin{pmatrix} x_1 \\ y_1 \\ w_1 \end{pmatrix} \times \begin{pmatrix} x_2 \\ y_2 \\ w_2 \end{pmatrix} = \begin{pmatrix} w_2 y_1 - w_1 y_2 \\ w_1 x_2 - w_2 x_1 \\ y_2 x_1 - x_2 y_1 \end{pmatrix} $$ where $\times$ is the vector cross product.
Conversely the point intersected by two lines in homogeneous coordinates is defined as $$P=\begin{pmatrix} a_1 \\ b_1 \\ c_1 \end{pmatrix} \times \begin{pmatrix} a_2 \\ b_2 \\ c_2 \end{pmatrix} = \begin{pmatrix} c_2 b_1 - c_1 b_2 \\ c_1 a_2 - c_2 a_1 \\ b_2 a_1 - a_2 b_1 \end{pmatrix} $$