[Math] understanding constants in standard plane equation

linear algebra

Currently I am learning about linear algebra and planes, but most tutorials on "how to find the plane equation given a dot and normal vector" assume that I already understand the equation $$Ax + By + Cz = D$$
I've never seen this formula before, and I don't understand how this equation represents a plane. From the Internet I understand that $A, B, C$ are components of the normal vector. I also believe this equation is somewhat similar to a line in $R^2$, which is $$Ax + By = C$$

For this second equation I can solve for $y$ and plot the formula. Plotting a 3D plane doesn't strike me as easy though. This stops me from building up intuition for this equation: Changing the values of $m$ or $b$ in $y = ax + b$ changes the slope and the intercept of the line. Conversely, I don't understand the behaviour of each constant in the plane equation.

What effect will changing the value of $A$ have on the plane equation? And why does the plane equation use the normal vector's components as constants?

Best Answer

First of all, if don't have some dedicated software (such as Mathematica or Maple) you can plot your plane here (and you right - fiddling with the constants is a great way to build up intuition!).

All right, so the first thing to note is that the equation for the plane is linear in its variables, i.e., no single variable is taken to some power, or put into a trigonometric function, etc., it's just there with its constant... This is what makes the plane flat!

A constant (e.g. $A$) associated with a variable (e.g. $x$) indicates how much the value of the dependent variable (for instance $z$) grows when you change the variable ($x$), just like a normal 2D function $y=Ax$, i.e., $A$ is the slope for that direction.

And as is the case with $B$ in the case of $y=Ax+B$, the constant $D$ simply raises (if it is positive) the entire plane.

I hope that helps. If you have any doubts, let me know in the comments.