Example: Find if the following points are coplanar: (3, -3, 2), (1, 0, 1), (1, 1, 0), (0, 1, 1).
Solution: the three vectors are:
v1 = − 2i + 3j − k |
v2 = − 2i + 4j − 2k |
v3 = − 3j + 4j − k |
In order to find if all 4 points are coplanar we have to check the
triple product:
v1 ∙(v2 × v3)
And the triple product is equal to: |
v1 ∙(v2 × v3) = (-2i + 3j - k)∙(i + j + k) = − 2 + 3 - 1 = 0 |
The resulting 0 indicates that the points are coplanar.
Another way to check if the points are coplanar is by calculating the volume produced by the 4 points,
this process is tedious because we have to calculate the determinant of a 4th degree matrix:
 |
the volume is zero therefore these 4 points are coplanar. |
Now any additional points can be checked by
calculating the distance of the points from the plane which is defined by the previous points, for example if we have another point
let say the point (-2, 3, 1).
x + y + z − 2 = 0
And the distance from this plane to the point (-2, 3, 1) is:
Because the distance is zero this additional point is also coplanar related to the other points.