Assume we have two equations of a line,
$A_1 x + B_1y = C_1$ and $A_2 x + B_2y = C_2$
Now we multiply the first equation by $B_2$ and the second by $B_1$ to obtain
(1) $A_1B_2x + B_1B_2y = C_1B_2$ and
(2) $A_2B_1x + B_1B_2y = C_2B_1$
Now, if we do (1) - (2) we get
$(A_1B_2 - A_2B_1)x = C_1B_2 - C_2B_1$
Then naturally we have,
$x = \frac{C_1B_2 - C_2B_1}{A_1B_2 - A_2B_1}$
Note that, $A_1B_2 - A_2B_1$ is the determinant of $(A_1, B_1)$ and $(A_2, B_2)$.
What does this mean? Why does the determinant come in the equation when trying to solve line-line intersections? What is the intuition behind dividing the equation by the determinant? Assume the determinant is non-zero.
Reference is here.
----------------Edit-------------
I understand that if the determinant is 0, they are parallel. My question is more of what does the determinant stand for in $x = \frac{C_1B_2 - C_2B_1}{A_1B_2 - A_2B_1}$ Is it an area, a vector length, etcetc. Why does the determinant end up in the denominator?