No idea how to find the equation of a plane

Click For Summary

Homework Help Overview

The discussion revolves around finding the equation of a plane that passes through three given points in three-dimensional space. Participants are exploring various methods, including the use of normal vectors and cross products, while expressing confusion about the steps involved and the underlying concepts.

Discussion Character

  • Exploratory, Conceptual clarification, Mathematical reasoning, Problem interpretation

Approaches and Questions Raised

  • Participants discuss using the cross product to find the normal vector and how to derive the plane equation from it. There are attempts to clarify the relationship between the normal vector and the equation format Ax + By + Cz = D. Some express uncertainty about the steps following the calculation of the normal vector.

Discussion Status

The discussion is ongoing, with participants sharing their calculations and questioning each other's reasoning. Some have provided MATLAB code to support their findings, while others are verifying their results and seeking confirmation on their understanding of the concepts involved.

Contextual Notes

Participants mention the urgency of needing to understand the topic for an upcoming exam, indicating a time constraint. There are references to differing resources and methods found online, which may contribute to the confusion regarding the topic.

terryfields
Messages
44
Reaction score
0
would this be ok for this question because i thought we had to find normals and things and every site i go on about plane equations is different and i need to know this for an exam tomorrow. find the equation of a plane that passes through the points (2,-2,1)(4,-1,6)(3,-3,-2)

(1)2a-2b+c=d
(2)4a-b+6c=d
(3)3a-3b-2c=d

then re arrange somehow to get values in terms of d for a b and c and then what? infact i have no clue what I am talking about i have no idea how to find the equation of a plane
 
Physics news on Phys.org


scrap that let's use the cross product methord using PQ=(0,1,-1) and PR=(-2,1,0) giving a normal vector of (1,2,2) after this it tells me

"(Q - P) x (R - P) = (1, 2, 2) = normal vector A and the equation is A . X = d for some d

Using the method in the example above, we can find d = A . P = 5. Thus the equation is A . X = 5, which is the same as one of the equations in the earlier example."

what the heck does this mean? i get everything up to finding the normal vector then it just all sounds forign
 


hang on so does this mean that A.P=D and then we just stick the normal vector in as (A,B,C) using the formula Ax+By+Cz=D giving us an equation of x + 2y + 2Z=5 also if this is the case can someone check my one below that I am about to do
 


terryfields said:
would this be ok for this question because i thought we had to find normals and things and every site i go on about plane equations is different and i need to know this for an exam tomorrow. find the equation of a plane that passes through the points (2,-2,1)(4,-1,6)(3,-3,-2)

(1)2a-2b+c=d
(2)4a-b+6c=d
(3)3a-3b-2c=d

then re arrange somehow to get values in terms of d for a b and c and then what? infact i have no clue what I am talking about i have no idea how to find the equation of a plane

1) find two direction vectors
e.g. (4,-1,6) - (2,-2,1)

2) find normal by taking cross product those two vectors

3) same problem as you asked before
 


find eqn of plane through points (2,-2,1)(4,-1,6)(3,-3,-2)

normal is cross product of (b-a)(2,1,5)X(b-c)(1,2,8)=-2,11,3 so then we have N.A=-15 and we get -2x+11y+3z=-15??
 


i know its the same as before but i still don't get it from before lol
 


and ye your right they did just assume i knew this even though I've never studdied discrete maths
 


>> p1 = [2,-2,1];
>> p2 = [4,-1,6];
>> p3 = [3,-3,-2]; %pos vectors
>> d1 = p2-p1;
>> d2=p3-p2; %direction vectors
>> n = cross(d1,d2) %finding normal
n =

2 11 -3 %output
>> dot(n,p1)

ans =

-21

>> dot(n,p2)

ans =

-21

>> dot(n,p3)

ans =

-21=============
so everything is right but your d (above is MATLAB code ... - makes life easier - didn't have casio near which also do dots and cross)
 


isnt it 2,-11,-3 and then when we get that do we do N.P1=D=23 so then the equation is 2x-11y-3z=23?
 
  • #10


terryfields said:
isnt it 2,-11,-3 and then when we get that do we do N.P1=D=23 so then the equation is 2x-11y-3z=23?

You must have done something wrong.

When we find n then

n dot any pos vector = should give equal value ..

>> n=[2,-11,-3];
>> dot(n,p1)

ans =

23

>> dot(n,p2)

ans =

1

>> dot(n,p3)

ans =

45
 
  • #11


ok ye just checked over it math error, apart from that tho is the rest of my working right subbing into get the Ax+By+Cz=D?
 

Similar threads

Replies
1
Views
1K
  • · Replies 4 ·
Replies
4
Views
3K
  • · Replies 14 ·
Replies
14
Views
2K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 3 ·
Replies
3
Views
2K
Replies
1
Views
1K
Replies
4
Views
2K
  • · Replies 21 ·
Replies
21
Views
4K
  • · Replies 6 ·
Replies
6
Views
2K
  • · Replies 9 ·
Replies
9
Views
2K