A plane in three-space can be defined by a normal vector and a point on the plane.
A plane's equation can be written as:
Ax + By + Cz + D = 0
ExampleGiven normal vector n = [3,2,5] and point P0(1,2,3), the equation is:
3(x-1) + 2(y-2) + 5(z-3) = 0
To find the \(x\), \(y\), and \(z\)-intercepts of a plane, set the other coordinates to zero:
A Normal Vector is perpendicular to the plane. Two direction vectors within the plane are parallel but not parallel to the normal.
ExampleGiven the plane \(2x - y + 3z - 6 = 0\), the normal vector is \([2, -1, 3]\).
To determine the equation of a plane given three points \(A\), \(B\), and \(C\):
Given points \(A(1,1,1)\), \(B(2,3,4)\), \(C(3,5,6)\), compute the plane equation.