Find Point of Intersection of Line & Plane: Where's Superman?

In summary: Normal Line}'{P}= a(x-x0)+b(y-y0)+c(z-z0) = 0(a) So, I have a normal line from (2,1,0) to pt. of intersection (x0,y0,z0) and get the vector eqn of that ?Important: 1) When solving is the solution of the normal line and plane a point of intersection just as the solution of two intersecting lines ?(b) So, I can solve for another point in the plane perpendicular to the normal line the point of intersection ?(c) Do I need a parametric representation of the lines
  • #1
Hellken
13
0

Homework Statement



I need to locate the coordinates if a point of intersection x0,y0,z0 of a plane with equation 2x+y-z=0 and a line that is perpendicular to that plane and passes through a point G(2,1,0).

Homework Equations

and

I understand that this is a normal line and a plane so the dot product: {Normal Line}`{P} = 0.

The dot product equals the equation of the plane(right or Is that inaccurate?): {Normal Line}'{P}= a(x-x0)+b(y-y0)+c(z-z0) = 0

The Attempt at a Solution



(I have been at this for hours so I have a clump of scratch paper so this is my recent desperate attempt to hack it, I am tired and desperate).

My plan: I am given the equation of the plane and a point outside the plane where the line passes through. So essentially I solve for the point of intersection and another point in the plane p(x,y,z) ?

{Normal Line}'{P}= a(x-x0)+b(y-y0)+c(z-z0) = 0
(a) So, I have a normal line from (2,1,0) to pt. of intersection (x0,y0,z0) and get the vector eqn of that ?

Important: 1) When solving is the solution of the normal line and plane a point of intersection just as the solution of two intersecting lines ?

2) Do I necessarily have to solve for another point in the plane perpendicular to the normal line the point of intersection? I have been wrecking this for some time but nothing adds up in my clumps of scratch paper.

3) Do I need a parametric representation of the lines?
 
Physics news on Phys.org
  • #2


Oh shoot. This isn't a homework but I have an upcoming exam in less than 24 hours and some solutions and answer would be nice.

Another question but the normal vector perpendicular to the plane is <2,1,-1> right? Where to from here?

================================================================================================
I have a test in a few hours and I would appreciate it if someone could spell it out and give me a good rundown. This question in my textbook is paradoxical but solvable and my prof loves giving strange questions like this. I would really appreciate it if someone could brief me ASAP. ================================================================================================
 
  • #3


Use the normal to the plane as the direction vector for the line. Write parametric equations for that line expressing x, y, z in terms of t. Plug those x,y,z's into the plane to get the value of t and plug that value of t into the line to get the intersection coordinates.
 
  • #4


Hellken said:

Homework Statement



I need to locate the coordinates if a point of intersection x0,y0,z0 of a plane with equation 2x+y-z=0 and a line that is perpendicular to that plane and passes through a point G(2,1,0).
A vector perpendicular to the plane is 2x+ y- z= 0 is <2, 1, -1> and you want a line perpendicular to the line through (2, 1, 0) so the line is x= 2t+ 2, y= t+ 1, z= -t.

Plug those into 2x+ y- z= 0 and solve for t.

Homework Equations

and

I understand that this is a normal line and a plane so the dot product: {Normal Line}`{P} = 0.

The dot product equals the equation of the plane(right or Is that inaccurate?): {Normal Line}'{P}= a(x-x0)+b(y-y0)+c(z-z0) = 0

The Attempt at a Solution



(I have been at this for hours so I have a clump of scratch paper so this is my recent desperate attempt to hack it, I am tired and desperate).

My plan: I am given the equation of the plane and a point outside the plane where the line passes through. So essentially I solve for the point of intersection and another point in the plane p(x,y,z) ?

{Normal Line}'{P}= a(x-x0)+b(y-y0)+c(z-z0) = 0
(a) So, I have a normal line from (2,1,0) to pt. of intersection (x0,y0,z0) and get the vector eqn of that ?

Important: 1) When solving is the solution of the normal line and plane a point of intersection just as the solution of two intersecting lines ?

2) Do I necessarily have to solve for another point in the plane perpendicular to the normal line the point of intersection? I have been wrecking this for some time but nothing adds up in my clumps of scratch paper.

3) Do I need a parametric representation of the lines?
 
  • #5


LCKurtz & Halls of Ivy thank you for your timely replies. I understand where the both of you are headed but that's where the paradox in this problem is. With no knowledge of any other points on the plane 2x +y-z=0, I am unable to properly solve for "t" properly because I have "leftover" x's, y's and z's. So while the usual procedure is :

1) Find a set of parametric eqns to represent the line (In this case I chooose the normal line because we are looking for the intersection).
2) Solve for "t"
3) Once "t" is obtained plug it in.

I am unable to get past stage 2 due to a flaw in stage one simply because I lack knowledge of other points (x,y,z) on the plane that are perpendicular to the normal line.

Are there any other methods of finding a set of parametric eqns to describe the normal line then?
 
Last edited:
  • #6


Hellken said:
With no knowledge of any other points on the plane 2x +y-z=0,...

Since you have the formula for the plane, you can generate as many points on it as you want, simply by choosing values for any two variables, then solving for the third.

Hellken said:
I lack knowledge of other points (x,y,z) on the plane that are perpendicular to the normal line.
This doesn't make much sense to me. A point isn't perpendicular to a line.

Maybe I'm missing something here...
 
  • #7


==========================================================================================================
EDIT: Current solution:

Dot product: N*PP0=<a,b,c>*<x-x0,y-y0,z-z0> = 0

--------------------------
NB: I have a point (2,1,0) on my normal line N that intersects the plane at x0,y0,z0 .
Lets see where this goes...


a = 2 - x0
b = 1 - y0
c = -z0

-------------------------
The eqn of the plane:
a(x-x0) + b (y-y0) + c(z-z0) = 0

Substituting a, b, and c:

(2 - x0)(x-x0) + (1 - y0)(y-y0) + (-z0)(z-z0) = 0

----------------------------

Back to finding a parametric eqn of the normal line N:

N = r(t) = <2,1,0> + t<x0 - 2, y0 - 1, z0>
N = r(t) = <2 + t(x0) - 2t, (t)y0- t + 1, (t)z0>

At this point I am in a sea of "leftover" variables and unable to isolate "t".
 
Last edited:
  • #8


Mark44 said:
Since you have the formula for the plane, you can generate as many points on it as you want, simply by choosing values for any two variables, then solving for the third.


This doesn't make much sense to me. A point isn't perpendicular to a line.

Maybe I'm missing something here...

Im pretty new here so does this forum have a drawing tool? I mean that there is a line Normal to the plane. It intersects at a certain specific point in the plane (What the problem in my textbook demands). The normal line is perpendicular to the plane so it is perpendicular to a line on the plane.

You are right in saying that I can generate as many points as I want. True but I am stumped here since I cannot "feel" my way around the plane. I am only given one point (2,1,0) and that the one point I am given is "attached" to the plane by the normal line that intersects it. I'm sure I'm missing something elementary here that's all. Either that or I've complicated the problem further.

Boy I need a vacation soon. Its hard to think straight at a time like this.
 
Last edited:
  • #9


UPDATE: It's a bird. It's a plane. No its Captain Obvious!

People forget the previous equations and forget it all. I got it and it was really simple. I forgot my "v"! I knew something was missing! It was a simple elementary mistake.

I'll update on my solution (when I get back) if anyone else insists. Thanks for all your help to those who replied back!

I need more sleep...
 

1. What is the equation for finding the point of intersection of a line and a plane?

The equation for finding the point of intersection of a line and a plane is a system of equations that involves both the equation of the line and the equation of the plane. This system of equations is solved by finding the values of the variables that satisfy both equations simultaneously.

2. How do you know if a line and a plane intersect?

A line and a plane intersect if and only if the line is not parallel to the plane. This means that the line must have a different direction vector than the normal vector of the plane. If the line and plane do not share a common point, they will never intersect.

3. Can a line and a plane have more than one point of intersection?

No, a line and a plane can only have one point of intersection. This is because a line is defined as a set of points that extend infinitely in two opposite directions, and a plane is defined as a flat surface that extends infinitely in all directions. Therefore, the line and plane can only intersect at one point.

4. What information do I need to find the point of intersection of a line and a plane?

In order to find the point of intersection of a line and a plane, you will need the equations for both the line and the plane. This includes the slope and y-intercept of the line, as well as the normal vector and a point on the plane. You will also need to solve the system of equations that is formed by these equations.

5. Can the point of intersection of a line and a plane be in the form of a complex number?

No, the point of intersection of a line and a plane must be a real number. This is because the equations for the line and the plane will only have real coefficients, and the intersection point must satisfy both equations. If the point of intersection were to be a complex number, it would not satisfy both equations and therefore would not be a valid point of intersection.

Similar threads

  • Calculus and Beyond Homework Help
Replies
3
Views
914
  • Calculus and Beyond Homework Help
Replies
14
Views
660
  • Calculus and Beyond Homework Help
Replies
4
Views
1K
  • Calculus and Beyond Homework Help
Replies
5
Views
2K
  • Calculus and Beyond Homework Help
Replies
6
Views
1K
  • Calculus and Beyond Homework Help
Replies
3
Views
1K
  • Calculus and Beyond Homework Help
Replies
12
Views
2K
  • Calculus and Beyond Homework Help
Replies
4
Views
3K
  • Calculus and Beyond Homework Help
Replies
2
Views
1K
Back
Top