Finding the point on the line of intersection between planes

In summary, a parametric equation for the line of intersection between two planes can be found by taking the cross product of the normal vectors to the planes and using the components of the resulting vector to create equations for x, y, and z. To find a specific point on the line, you can set one of the coordinates to zero and solve for the other two using the plane equations. However, this parametrization is not unique and any point on the line can be used as the "zero point" for the parametrization.
  • #1
Bishamonten
17
1

Homework Statement


Given two planes, P1, P2. Find parametric equations for the line of intersection between the two planes.

Homework Equations


P1 = 2x -3y + 4z = 3
P2 = x + 4y - 2z = 7

The Attempt at a Solution


Let N1 be the normal vector to P1, and N2 be the normal vector to P2. Then,

N1 = (2, -3, 4) ; N2 = (1, 4, -2)

Then, the direction numbers for our desired line will come from the components of the cross product between the normal vectors, because it will be parallel to our desired line.

Then, N1xN2 = (-10, 8, 11).

Then, Eq. of line: x = x? -10t ; y = y? +8t ; z = z? + 11t

I currently need to find a point that would be on our desired line, so that I can complete the equation for this line. The book we're using unsatisfactorily just says in it's example version of this type of problem to "let z = 0" in both the given equations of the two planes in it's example, and then solve the system that emerges from that.

My problem is, why? How would I know ahead of time to let one of these three unknowns be 0?(In this case, the back of the book suggests to let y = 0 for my problem here, but I want to know what line of reasoning would let me come to that conclusion).
 
Physics news on Phys.org
  • #2
You can solve the problem by setting any one of the coordinates to zero, provided the line is not parallel to but not in the plane where that coordinate is zero. The line will be parallel to such a plane if the corresponding component of the line vector is zero. So you can pick any component for which the corresponding component of the line vector is nonzero. In this case that's any of the three coordinates, because none of the components of the line vector are zero.

What you are doing by setting a coordinate equal to zero is obtaining two equations for the other two coordinates of the point where the line intersects the plane where that coordinate is zero. Those two equations will be linear in the other two coordinates, and hence can be solved to find the values of those two coordinates at the intersection point. Substituting both those values into the equation of either of the planes will allow you to calculate the value of the third coordinate at that point.
 
Last edited:
  • #3
andrewkirk said:
You can solve the problem by setting any one of the coordinates to zero, provided the line is not parallel to but not in the plane where that coordinate is zero. The line will be parallel to such a plane if the corresponding component of the line vector is zero. So you can pick any component for which the corresponding component of the line vector is nonzero. In this case that's any of the three coordinates, because none of the components of the line vector are zero.

What you are doing by setting a coordinate equal to zero is obtaining two equations for the other two coordinates point where the line intersects the plane where that coordinate is zero. Those two equations will be linear in the other two coordinates, and hence can be solved to find the values of those two coordinates at the intersection point. Substituting both those values into the equation of either of the planes will allow you to calculate the value of the third coordinate at that point.

So I can set any of them to be 0? In this case, when I set z = 0, I get a system in which when solved yields x = 3, y = 1. Substituting these two back into one of the plane equations just tells me that z = 0.

These three values do not match the parametric equation found in the back of the book for this problem, which says that x = 17/4 - 10t ; y = 8t ; z = -11/8 + 11t, so there must be something I am not understanding here.
 
  • #4
Bishamonten said:
there must be something I am not understanding here
The bit you are not understanding is that parametrisations are not unique. You can pick any point on the line as the 'zero point' of the parametrised line that corresponds to where the parameter value is zero, so there are as many parametrisations as there are points on the line.

Both your parametrisation and the one in the book are correct. To see that, note that the intersection point you found is when ##t=0## in your parametrisation and ##t=1/8## in the book parametrisation.

But your parametrisation is nicer, because it has no fractions in it.
 
  • Like
Likes Bishamonten
  • #5
Well that's really convenient of parameters. Thank you for clarifying that point to me!
 
  • #6
Bishamonten said:
So I can set any of them to be 0? In this case, when I set z = 0, I get a system in which when solved yields x = 3, y = 1. Substituting these two back into one of the plane equations just tells me that z = 0.

These three values do not match the parametric equation found in the back of the book for this problem, which says that x = 17/4 - 10t ; y = 8t ; z = -11/8 + 11t, so there must be something I am not understanding here.

You can use the equations to solve for any two of the variables in terms of the third. For example, you can write the equations as
$$\begin{array}{lcr}2x - 3y &=&3-4z\\
x + 4y &=& 7 + 2z
\end{array}
$$
This is a simple system of 2 linear equations in 2 unknowns, and is easily solved using elementary algebra, to get
$$x = 3 - \frac{10}{11} z, \; y = 1 + \frac{8}{11} z $$

So, one possible parametrization of the line would be ##x = 3 -(10/11)t, y = 1 + ( 8/11) t, z = t##. Of course there are infinitely many points on the intersection line, but one convenient point would be obtained by putting ##t = 11##, to eliminate the fractions: ##x = -7, y = 9, z = 11##.
 
1.

What is the purpose of finding the point on the line of intersection between planes?

The purpose of finding the point on the line of intersection between planes is to determine the exact location where two planes intersect in three-dimensional space. This can be useful in various applications such as engineering, navigation, and computer graphics.

2.

How do you find the point on the line of intersection between planes?

To find the point on the line of intersection between planes, you can use the method of substitution or elimination. This involves solving the equations of the two planes simultaneously to find the values of the variables that satisfy both equations. These values can then be substituted into one of the equations to find the coordinates of the point.

3.

Can planes intersect at more than one point?

No, planes can only intersect at one point in three-dimensional space. This is because two planes cannot be parallel to each other and intersect at more than one point. If the planes are parallel, they do not intersect at all. If the planes are not parallel, they will intersect at exactly one point.

4.

What happens when the lines of intersection between planes are parallel?

When the lines of intersection between planes are parallel, it means that the planes themselves are parallel. This also means that they do not intersect at any point, and therefore there is no solution to finding the point of intersection. In this case, the equations of the planes are either identical or have no common solution.

5.

Can you use the point of intersection between planes to find the shortest distance between them?

Yes, the point of intersection between planes can be used to find the shortest distance between them. This can be done by finding the perpendicular distance from the point of intersection to one of the planes. This distance represents the shortest distance between the two planes.

Similar threads

  • Calculus and Beyond Homework Help
Replies
2
Views
1K
  • Calculus and Beyond Homework Help
Replies
3
Views
906
  • Calculus and Beyond Homework Help
Replies
4
Views
1K
  • Calculus and Beyond Homework Help
Replies
6
Views
1K
  • Calculus and Beyond Homework Help
Replies
1
Views
1K
  • Calculus and Beyond Homework Help
Replies
3
Views
1K
  • Calculus and Beyond Homework Help
Replies
2
Views
1K
  • Calculus and Beyond Homework Help
Replies
5
Views
1K
  • Calculus and Beyond Homework Help
Replies
3
Views
2K
Back
Top