Why doesn't my solution for finding a plane through three points work?

Heatherfield
Messages
22
Reaction score
0
Hi,

I'm currently reading Calc III by Marsden & Weinstein. One of the examples shows a plane being drawn through three points. While I understand their solutiom, I'm very curious as to why my solutiom doesn't work.

1. Homework Statement

Write the equatiom for a plane through A = (1, 1, 1), B = (2, 0, 0) and C = (1, 1, 0).

Homework Equations


For a plane through Point P = (Px, Py, Pz) orthogonal to n = <A, B, C> we write the equation:

A(X - Px) + B(Y - Py) + C(Z - Pz)

The Attempt at a Solution


The book solves the problem by filling the points into the more general formula:

Ax + By + Cz + D = 0

Which leaves us with three equations and four unknowns, which is adequate to come up with a solution (there is an infinite amount of solutions).

I tried to solve it by trying to find a normal vector n = <nx, ny, nz> that is orthogonal to the vectors AB, AC and BC.

n ⋅ AB = 0
n ⋅ AC = 0
n ⋅ BC = 0

Leads to

nx - ny - nz = 0
-nz = 0
-nx + ny = 0

Solving this system leads to twice the expression nx = ny and once nz = 0. Thus I took <1, 1, 0> as a possible n.

Filling this in alongside A into the relevant equation leads to the equation

(x - 1) + (y - 1) = 0

Which simplifies to

x + y = 2

Obviously this is not a solution and the fact that the final answer incorporates a nomzero coeficient for z only proves that point. What did I do wrong?

- HF
 
Physics news on Phys.org
Heatherfield said:
the fact that the final answer incorporates a nomzero coeficient for z only proves that point.

What final answer are you referring to ? The final answer given in the book ?
 
Heatherfield said:
Which simplifies to

x + y = 2

Obviously this is not a solution and the fact that the final answer incorporates a nomzero coeficient for z only proves that point. What did I do wrong?
Why do you think your solution is wrong? Do coordinates of A, B, C fulfill the equation x+y=2?
 
Heatherfield said:
x + y = 2

Obviously this is not a solution and the fact that the final answer incorporates a nomzero coeficient for z only proves that point.

Have you've visualized that the answer to the problem is a plane that is perpendicular to the xy-plane, so it "sticks straight up in the z-direction"? (The answer must be a plane containing the vertical line segment (1,1,0) to (1,1,1). ) The lack of the "z" variable in "x + y = 2" is what permits the z-coordinate to take arbitrary values.
 
There are two things I don't understand about this problem. First, when finding the nth root of a number, there should in theory be n solutions. However, the formula produces n+1 roots. Here is how. The first root is simply ##\left(r\right)^{\left(\frac{1}{n}\right)}##. Then you multiply this first root by n additional expressions given by the formula, as you go through k=0,1,...n-1. So you end up with n+1 roots, which cannot be correct. Let me illustrate what I mean. For this...
Back
Top