How Do You Determine the Vector Equation of a Plane Without a Z-Intercept?

  • Thread starter Thread starter planauts
  • Start date Start date
  • Tags Tags
    Plane Vector
Click For Summary

Homework Help Overview

The problem involves finding the vector equation of a plane that contains a specified line and does not have a z-intercept. The line is given in vector form, and participants are exploring how to construct the plane's equation based on this condition.

Discussion Character

  • Exploratory, Assumption checking, Problem interpretation

Approaches and Questions Raised

  • Participants discuss the implications of the z-intercept condition and how it affects the normal vector of the plane. Some explore the Cartesian form of the plane's equation, while others consider vector representations. There are attempts to validate proposed solutions by checking specific values of parameters.

Discussion Status

The discussion includes various interpretations of the problem, with participants questioning the validity of proposed solutions based on the z-intercept condition. Some guidance has been offered regarding the relationship between the plane's normal vector and the requirement of no z-intercept, but no consensus has been reached on a definitive solution.

Contextual Notes

Participants are working under the constraint that the plane must not intersect the z-axis, which raises questions about the appropriate direction vectors and the formulation of the plane's equation. There are also references to previous attempts and solutions that may not satisfy the problem's conditions.

planauts
Messages
86
Reaction score
0

Homework Statement


Find the vector equation of a plane that contains the following line L1: (x,y,z) = (1,2,3) + t(2,4,3) and does not have a z-intercept.

The Attempt at a Solution


This question was on the test and I think I might have gotten it wrong.
The correct answer is: (x,y,z) = (1,2,3) + t(2,4,3) + s(0,0,1)

It makes sense to me now because (0,0,1) is parallel to the z-axis. Hence, it does not intercept the z-axis.

What I did was... think about the question in Cartesian Equation form.
Ax + By + Cz + D = 0 (where A,B,C are normal to the plane)

I realized that the co-efficient should be 0 since there is no z-intercept. So Ax + By + D = 0.
So the normal would be (A, B, 0).

Therefore,
(2,4,3) CROSS (x, y, z) = (A, B, 0) [where (x,y,z) is the second direction vector]

I did the cross product formula and ended up with:
(4z-3y, 3x-2z, 2y-4x) which should equal to (A, B, 0)
2y-4x = 0
2y=4x --> y = 2x and value of z doesn't matter

Therefore, (2,4,3) CROSS (x, 2x, 0) = (A, B, 0)
Let x = 1
So: (2,4,3) and (1,2,0) are the direction vectors.

So the equation of the plane is: (x,y,z) = (1,2,3) + t(2,4,3) + s(1,2,0)

Could this be an acceptable answer?
Thanks
 
Last edited:
Physics news on Phys.org
Unfortunately, if you set t = -1 and s = 1 (or t = 1, s = -3, and probably many other combinations) you will find a point on the z-axis, so this plane does intercept it.
 
planauts said:

Homework Statement


Find the vector equation of a plane that contains the following line L1: (x,y,z) = (1,2,3) + t(2,4,3) and does not have a z-intercept.

The Attempt at a Solution


This question was on the test and I think I might have gotten it wrong.
The correct answer is: (x,y,z) = (1,2,3) + t(2,4,3) + s(0,0,1)

It makes sense to me now because (0,0,1) is parallel to the z-axis. Hence, it does not intercept the z-axis.

What I did was... think about the question in Cartesian Equation form.
Ax + By + Cz + D = 0 (where A,B,C are normal to the plane)

I realized that the co-efficient should be 0 since there is no z-intercept. So Ax + By + D = 0.
So the normal would be (A, B, 0).
At this point, a perfectly valid way to solve the probleme would be to note that when t=0, (x,y,z)= (1,2,3) and when t= 1, (x, y, z)= (1, 2, 3)+ (2, 4, 3)= (3, 6, 6) are on the given line and so on the plane. If the equation of the plane is Ax+ By+ D= 0, then A+ 2B+ D= 0 and 2A+ 4B+ D= 0 give two equations to solve (of course, any multiple of (A,B,D) is also a solution). Subtracting the two equations eliminates D and gives A+ 3B= 0 so that A= -3B. Taking B= 1 gives A= -3 and then -3+ 2+ D= 0 gives D= 1: -3x+ y= 1.

Therefore,
(2,4,3) CROSS (x, y, z) = (A, B, 0) [where (x,y,z) is the second direction vector]

I did the cross product formula and ended up with:
(4z-3y, 3x-2z, 2y-4x) which should equal to (A, B, 0)
2y-4x = 0
2y=4x --> y = 2x and value of z doesn't matter

Therefore, (2,4,3) CROSS (x, 2x, 0) = (A, B, 0)
Let x = 1
So: (2,4,3) and (1,2,0) are the direction vectors.

So the equation of the plane is: (x,y,z) = (1,2,3) + t(2,4,3) + s(1,2,0)

Could this be an acceptable answer?
Thanks
 
HallsofIvy said:
At this point, a perfectly valid way to solve the probleme would be to note that when t=0, (x,y,z)= (1,2,3) and when t= 1, (x, y, z)= (1, 2, 3)+ (2, 4, 3)= (3, 6, 6) are on the given line and so on the plane. If the equation of the plane is Ax+ By+ D= 0, then A+ 2B+ D= 0 and 2A+ 4B+ D= 0 give two equations to solve (of course, any multiple of (A,B,D) is also a solution). Subtracting the two equations eliminates D and gives A+ 3B= 0 so that A= -3B. Taking B= 1 gives A= -3 and then -3+ 2+ D= 0 gives D= 1: -3x+ y= 1.

I need a vector equation.

So is my answer correct?
(x,y,z) = (1,2,3) + t(2,4,3) + s(1,2,0)
 
Same answer as you were given before: if you take t= -1/2, s= 0, you get (x,y,z)= (1- 1,2- 2, 3- 3/2)= (0, 0, 3/2) which is a "z-intercept". Your plane was to have NO z-intercept which means the z-axis must be parallel to it.
 
Oh, so this would be the correct answer, right?

(x,y,z) = (1,2,3) + t(2,4,3) + s(0,0,1)


Thanks for your help everyone,
 

Similar threads

Replies
7
Views
2K
Replies
17
Views
3K
Replies
18
Views
4K
  • · Replies 8 ·
Replies
8
Views
3K
Replies
8
Views
3K
Replies
10
Views
3K
  • · Replies 14 ·
Replies
14
Views
4K
  • · Replies 15 ·
Replies
15
Views
2K
  • · Replies 5 ·
Replies
5
Views
2K
  • · Replies 4 ·
Replies
4
Views
2K