[Math] Why is the product of a normal vector and a vector on the plane equal to the equation of the plane

linear algebraplane-geometry

I'm reading this:
on vectors

and basically it seems like the dot product of a normal vector to a plane and a vector on the plane is equal to the equation of the plane. What is the intuition behind this?

It seems like the equation of the plane is Ax + By + Cz = D

I was watching this video and it seems like you can define a plane just with a normal vector and a point on the plane. But how do you know how big this plane is?

Best Answer

The linked reading isn't saying that the dot product is equal to the equation of the plane, it's saying that setting the dot product equal to 0 gives the equation of the plane. Following the notation of the linked page, let $\vec{n} = \langle a, b, c \rangle$ be the vector normal to the plane, let $\vec{r}_{0}$ be the position vector of a point in the plane $P_0 = (x_0, y_0, z_0)$, and let $\vec{r}$ be the position vector of an arbitrary point in the plane $P = (x, y, z)$. $a, b, c, x_0, y_0, z_0$ are all known; $x, y, z$ are free variables. The vector $\vec{r} - \vec{r}_{0}$ is in the plane, implying it's orthogonal to $\vec{n}$, thus $\vec{n} \cdot (\vec{r} - \vec{r}_{0}) = 0$. Substituting the component forms of the vectors into this equation gives us an equation in $x, y, z$ that defines the plane.