[Math] Cartesian equation of plane through $3$ points

3dvectors

Let there are three points $(2,5,-3),(5,3,-3),(-2,-3,5)$ through which a plane passes. What is the equation of the plane in Cartesian form?

I know how to find it in using vector form by computing the cross product to get the normal vector and passing through any one of the given points. But I want to do it a bit differently.

We know, the equation of any plane passing through the first point is $$a(x-2)+b(y-5)+c(z+3)=0$$

This equation must satisfy the other two points. However, this given me two equations with three unknowns $a,b,c$. So can I not solve by this method?

Best Answer

You in fact can solve it by this method, even if it does seem like there will be infinite solutions. This is because the normal vector for a plane is not unique: if $\vec{n}$ is a normal vector to the plane, then $c\vec{n}$ is as well, provided that $c\neq 0$.

For your example, your two equations for the remaining two points yield

$$3a-2b=0$$

$$-4a-8b+8c=0$$

One way you could solve this is by multiplying the first equation by $-4$ and then adding them, giving you

$$-16a+8c=0\implies c=2a$$

Rearranging the first equation gives

$$b=\frac{3}{2}a$$

As you pointed out, there are not enough equations for a unique solution, but once we specify a value for $a$, we gain a value for $b$ and $c$. Moreover, should we scale $a$, this scales $b$ and $c$ by the same amount, which is exactly what we would expect. The normal that I would choose here is when $a=2$, so $b=3$ and $c=4$.