[Math] collinear three points in a linear equation $ax+by+z$

determinantlinear algebra

So, there is a plane equation $ax+by+z = 0$. Suppose there are three points $(x_1,y_1,z_1)$, $(x_2,y_2,z_2)$, $(x_3,y_3,z_3)$ that is on the given plane.

Then, $\begin{vmatrix} x & y & z & 1\\x_1 & y_1 & z_1 & 1\\x_2 & y_2 & z_2 & 1\\x_3 & y_3 & z_3 & 1 \end{vmatrix}=0$.

What happens if the three points are collinear?

Best Answer

(Too long for a comment.)

You can prove the identity $$\begin{vmatrix} x & y & z & 1\\x_1 & y_1 & z_1 & 1\\x_2 & y_2 & z_2 & 1\\x_3 & y_3 & z_3 & 1 \end{vmatrix}=\det\left(\begin{pmatrix}x & y & z\\x & y & z\\x & y & z\end{pmatrix}-\begin{pmatrix}x_1 & y_1 & z_1 \\x_2 & y_2 & z_2 \\x_3 & y_3 & z_3\end{pmatrix}\right)$$ If the three points given are collinear, then any row you pick can be written as a linear combination of the two other rows, making the determinant zero, and thus you wind up with the not very useful equality $0=0$.

Related Question