Solving implicit equation of a plane

  • Context: Undergrad 
  • Thread starter Thread starter kouma
  • Start date Start date
  • Tags Tags
    Implicit Plane
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
3 replies · 3K views
kouma
Messages
9
Reaction score
0
Hello,

Can someone tell me if what I am doing is correct. I am trying to solve this equation of 0 = n ( p - p0 ) where n, p, and p0 are points on the plane. Assume this is a 2D dimension (x,y). Is this the correct way of calculating this equation.

0 = nx (px - p0x) + ny (py + p0y)

Purpose: I am trying to find if point p resides on the positive or negative side of the plane.

Only help if you know the answer please.

Thanks
 
Physics news on Phys.org
kouma said:
Hello,

Can someone tell me if what I am doing is correct. I am trying to solve this equation of 0 = n ( p - p0 ) where n, p, and p0 are points on the plane. Assume this is a 2D dimension (x,y). Is this the correct way of calculating this equation.

0 = nx (px - p0x) + ny (py + p0y)

Purpose: I am trying to find if point p resides on the positive or negative side of the plane.

Only help if you know the answer please.

Thanks
You do have a typo (should be py - p0y).

Your question is vague. What do you mean by positive or negative side of the plane? All your points are in the plane.
 
You are right about the typo, my bad. Thanks.

To clarify my question with an example, assume i have n and p0 given as n= (1,1) and p0=(2, 3). Now, say I have the following set of p {(1,3), (2,4), (1,5), (0,1), (2,3), (3,1)}. I would like to know where does each of the elements in the p set reside with respect to the plane. That is, it is on the positive side of the plane, zero, or negative? solving the equation should give me that answer.

Is this the correct way to solve this equation:

0 = nx (px - p0x) + ny (py - p0y)

Thanks
 
I still don't know what you mean by positive side or negative side? If n, p0, and all the p's are given, the dot product you wrote has a definite value in each case. To = 0, p-p0 is perpendicular to n-(0,0).