SlideShare ist ein Scribd-Unternehmen logo
1 von 6
Downloaden Sie, um offline zu lesen
4. Planes and distances
How do we represent a plane Π in R3
? In fact the best way to specify
a plane is to give a normal vector �n to the plane and a point P0 on the
plane. Then if we are given any point P on the plane, the vector
−−→
P0P
is a vector in the plane, so that it must be orthogonal to the normal
vector �n. Algebraically, we have
−−→
P0P �n = 0.·
Let’s write this out as an explicit equation. Suppose that the point
P0 = (x0, y0, z0), P = (x, y, z) and �n = (A, B, C). Then we have
(x − x0, y − y0, z − z0) (A, B, C) = 0.·
Expanding, we get
A(x − x0) + B(y − y0) + C(z − z0) = 0,
which is one common way to write down a plane. We can always rewrite
this as
Ax + By + Cz = D.
Here
D = Ax0 + By0 + Cz0 = (A, B, C) (x0, y0, z0) = �
−−→
n OP0.· ·
This is perhaps the most common way to write down the equation of
a plane.
Example 4.1.
3x − 4y + 2z = 6,
is the equation of a plane. A vector normal to the plane is (3, −4, 2).
Example 4.2. What is the equation of a plane passing through (1, −1, 2),
with normal vector �n = (2, 1, −1)? We have
(x − 1, y + 1, z − 2) (2, 1, −1) = 0.·
So
2(x − 1) + y + 1 − (z − 2) = 0,
so that in other words,
2x + y − z = −1.
A line is determined by two points; a plane is determined by three
points, provided those points are not collinear (that is, provided they
don’t lie on the same line). So given three points P0, P1 and P2, what is
the equation of the plane Π containing P0, P1 and P2? Well, we would
like to find a vector �n orthogonal to any vector in the plane. Note that
−−→
and
−−→
are two vectors in the plane, which by assumption areP0P1 P0P2
1
�
�
�
�
�
�
�
�
�
�
�
�

�
�
�
�
�
�
�
�

�
�
�
�

�
�
�
�

�
�
�
�

�
�
�
�

not parallel. The cross product is a vector which is orthogonal to both
vectors,
�n =
−−→
P0P2.P0P1 ×
−−→
So the equation we want is
−−→
(
−−→
P0P2) = 0.P0P P0P1 ×
−−→
·
We can rewrite this a little.
−−→
= OP −
−−→
Expanding and rear­P0P
−→
OP0.
ranging gives
−→
OP (
−−→
P0P2) =
−−→
(
−−→ −−→
P0P1 ×
−−→
OP0 · P0P1 × P0P2).·
Note that both sides involve the triple scalar product.
Example 4.3. What is the equation of the plane Π through the three
points, P0 = (1, 1, 1), P1 = (2, −1, 0) and P2 = (0, −1, −1)?
−−→
and P0P2 = (−1, −2, −2).P0P1 = (1, −2, −1)
−−→
Now a vector orthogonal to both of these vectors is given by the cross
product:
�n =
−−→ −−→
P0P1 × P0P2
ˆı jˆ kˆ

1 −2 −1
−1 −2 −2
=

+ kˆ
−2 −1

−2 −2

1 −1
−2
1 −2
−2
= ˆı
 − jˆ

−1
 −1

= 2ˆı + 3ˆ k.j − 4ˆ
Note that
�n P0P1 = 2 − 6 + 4 = 0,
−−→
·
as expected. It follows that the equation of Π is
2(x − 1) + 3(y − 1) − 4(z − 1) = 0,
so that
2x + 3y − 4z = 1.
For example, if we plug in P2 = (0, −1, −1), then
2 0 + 3 · −1 + 4 = 1,·
as expected.
2
Example 4.4. What is the parametric equation for the line l given as
the intersection of the two planes 2x − y + z = 1 and x + y − z = 2?
Well we need two points on the intersection of these two planes. If
we set z = 0, then we get the intersection of two lines in the xy-plane,
2x − y = 1
x + y = 2.
Adding these two equations we get 3x = 3, so that x = 1. It follows
that y = 1, so that P0 = (1, 1, 0) is a point on the line.
Now suppose that y = 0. Then we get
2x + z = 1
x − z = 2.
As before this says x = 1 and so z = −1. So P1 = (1, 0, −1) is a point
on l.
−−→
P0P = t
−−→
P0P1,
for some parameter t. Expanding
(x − 1, y − 1, z) = t(0, −1, −1),
so that
(x, y, z) = (1, 1 − t, −t).
We can also calculate distances between planes and points, lines and
points, and lines and lines.
Example 4.5. What is the distance between the plane x − 2y + 3z = 4
and the point P = (1, 2, 3)?
Call the closest point R. Then
−→
PR is orthogonal to every vector in
the plane, that is,
−→
n = (1, −2, 3)PR is normal to the plane. Note that �
is normal to the plane, so that
−→
PR is parallel to the plane.
Pick any point Q belonging to the plane. Then the triangle PQR has
a right angle at R, so that
−→
PR = ± proj�
−→
PQ.n
When x = z = 0, then y = −2, so that Q = (0, −2, 0) is a point on the
plane.
−→
PQ = (−1, −4, −3).
Now
��n�2
= �n. · �n. = 12
+ 22
+ 32
= 14 and �n ·
−→
PQ = 4.
So
proj�n
−→
PQ =
2
7
(1, −2, 3).
3
�
�
�
�
�
�
So the distance is
2√
14.
7
Here is another way to proceed. The line through P, pointing in the
direction �n, will intersect the plane at the point R. Now this line is
given parametrically as
(x − 1, y − 2, z − 3) = t(1, −2, 3),
so that
(x, y, z) = (t + 1, 2 − 2t, 3 + 3t).
The point R corresponds to
(t + 1) − 2(2 − 2t) + 3(3 + 3t) = 4,
so that
14t = −2 that is t =
2
7
.
So the point R is
1
the same answer as before (phew!).
�
�
�
�
�
�
(9, 10, 27).
7
It follows that
−→
PR =
1
(2, −4, 6) =
2
(1, −2, 3),
7 7
Example 4.6. What is the distance between the two lines
(x, y, z) = (t−2, 3t+1, 2−t) and (x, y, z) = (2t−1, 2−3t, t+1)?
If the two closest points are R and R�
then
−−→
RR�
is orhogonal to the
direction of both lines. Now the direction of the first line is (1, 3, −1)
and the direction of the second line is (2, −3, 1). A vector orthogonal
to both is given by the cross product:
ˆı jˆ kˆ

1 3 −1

2 −3 1

= −3ˆ k.j − 9ˆ
To simplify some of the algebra, let’s take
�n = ˆ k,j + 3ˆ
which is parallel to the vector above, so that it is still orthogonal to both
lines.
It follows that
−−→
RR�
is parallel to �n. Pick any two points P and P�
on the two lines. Note that the length of the vector
proj�n
−−
P�
P,
4
is the distance between the two lines.
Now if we plug in t = 0 to both lines we get
P�
= (−2, 1, 2) and P = (−1, 2, 1).
So −−
P�
P = (1, 1, −1).
Then
�
−−
��n�2
= 12
+ 32
= 10 and n P�
P = −2.·
It follows that
−−
proj�n P�
P =
−2
(0, 1, 3) =
−1
(0, 1, 3).
10 5
and so the distance between the two lines is
1√
10.
5
5
MIT OpenCourseWare
http://ocw.mit.edu
18.022 Calculus of Several Variables
Fall 2010
For information about citing these materials or our Terms of Use, visit: http://ocw.mit.edu/terms.

Weitere ähnliche Inhalte

Was ist angesagt?

polynomials of class 10th
polynomials of class 10thpolynomials of class 10th
polynomials of class 10th
Ashish Pradhan
 
2 polar graphs
2 polar graphs2 polar graphs
2 polar graphs
math267
 
Polynomials
PolynomialsPolynomials
Polynomials
nina
 
t7 polar equations and graphs
t7 polar equations and graphst7 polar equations and graphs
t7 polar equations and graphs
math260
 
15 multi variable functions
15 multi variable functions15 multi variable functions
15 multi variable functions
math267
 
4 areas in polar coordinates
4 areas in polar coordinates4 areas in polar coordinates
4 areas in polar coordinates
math267
 
t5 graphs of trig functions and inverse trig functions
t5 graphs of trig functions and inverse trig functionst5 graphs of trig functions and inverse trig functions
t5 graphs of trig functions and inverse trig functions
math260
 

Was ist angesagt? (20)

polynomials of class 10th
polynomials of class 10thpolynomials of class 10th
polynomials of class 10th
 
Remainder theorem
Remainder theoremRemainder theorem
Remainder theorem
 
Polynomials by nikund
Polynomials by nikundPolynomials by nikund
Polynomials by nikund
 
Factor theorem
Factor theoremFactor theorem
Factor theorem
 
2 polar graphs
2 polar graphs2 polar graphs
2 polar graphs
 
Shubhanshu math project work , polynomial
Shubhanshu math project work ,  polynomialShubhanshu math project work ,  polynomial
Shubhanshu math project work , polynomial
 
Polynomials CLASS 10
Polynomials CLASS 10Polynomials CLASS 10
Polynomials CLASS 10
 
Zeros of polynomial functions
Zeros of polynomial functionsZeros of polynomial functions
Zeros of polynomial functions
 
CLASS X MATHS Polynomials
CLASS X MATHS  PolynomialsCLASS X MATHS  Polynomials
CLASS X MATHS Polynomials
 
Polynomials
PolynomialsPolynomials
Polynomials
 
polynomials class 9th
polynomials class 9thpolynomials class 9th
polynomials class 9th
 
Gradient of a curve and equation of a
Gradient of a curve and equation of aGradient of a curve and equation of a
Gradient of a curve and equation of a
 
t7 polar equations and graphs
t7 polar equations and graphst7 polar equations and graphs
t7 polar equations and graphs
 
Module in Remainder Theorem
Module in Remainder TheoremModule in Remainder Theorem
Module in Remainder Theorem
 
Ms2 gradient of a curve and equation
Ms2 gradient of a curve and equationMs2 gradient of a curve and equation
Ms2 gradient of a curve and equation
 
15 multi variable functions
15 multi variable functions15 multi variable functions
15 multi variable functions
 
4 areas in polar coordinates
4 areas in polar coordinates4 areas in polar coordinates
4 areas in polar coordinates
 
Polynomials
PolynomialsPolynomials
Polynomials
 
t5 graphs of trig functions and inverse trig functions
t5 graphs of trig functions and inverse trig functionst5 graphs of trig functions and inverse trig functions
t5 graphs of trig functions and inverse trig functions
 
3 areas, riemann sums, and the fundamental theorem of calculus x
3 areas, riemann sums, and the fundamental theorem of calculus x3 areas, riemann sums, and the fundamental theorem of calculus x
3 areas, riemann sums, and the fundamental theorem of calculus x
 

Andere mochten auch (14)

lumetron
lumetronlumetron
lumetron
 
My last vacation
My last  vacationMy last  vacation
My last vacation
 
Literatura medieval
Literatura medievalLiteratura medieval
Literatura medieval
 
2calls presentation
2calls presentation2calls presentation
2calls presentation
 
Export a product
Export a productExport a product
Export a product
 
TRABAJO DE WORD
TRABAJO DE WORD  TRABAJO DE WORD
TRABAJO DE WORD
 
داشبوردهای دیجیتالی
داشبوردهای دیجیتالیداشبوردهای دیجیتالی
داشبوردهای دیجیتالی
 
Arts4Every1 Writers' Workshop: 12th December 2015
Arts4Every1 Writers' Workshop: 12th December 2015Arts4Every1 Writers' Workshop: 12th December 2015
Arts4Every1 Writers' Workshop: 12th December 2015
 
Calcium Theory of Cancer
Calcium Theory of CancerCalcium Theory of Cancer
Calcium Theory of Cancer
 
Digitaltext
DigitaltextDigitaltext
Digitaltext
 
Як поживаєш, столітній друже?
Як поживаєш, столітній друже?Як поживаєш, столітній друже?
Як поживаєш, столітній друже?
 
Mike Rimbaud 2015 press book
Mike Rimbaud 2015 press bookMike Rimbaud 2015 press book
Mike Rimbaud 2015 press book
 
Osztálytermi számítógép használat
Osztálytermi számítógép használatOsztálytermi számítógép használat
Osztálytermi számítógép használat
 
Effects of Uncontrolled Diabetes
Effects of Uncontrolled DiabetesEffects of Uncontrolled Diabetes
Effects of Uncontrolled Diabetes
 

Ähnlich wie planes and distances

7.5 lines and_planes_in_space
7.5 lines and_planes_in_space7.5 lines and_planes_in_space
7.5 lines and_planes_in_space
Mahbub Alwathoni
 
Coordinategeometry1 1
Coordinategeometry1 1Coordinategeometry1 1
Coordinategeometry1 1
TGTMATH
 
Coordinategeometry1 1
Coordinategeometry1 1Coordinategeometry1 1
Coordinategeometry1 1
TGTMATH
 
Geometry (Grid & section formula)
Geometry (Grid & section formula)Geometry (Grid & section formula)
Geometry (Grid & section formula)
itutor
 
Solutions of AHSEC Mathematics Paper 2015
Solutions of AHSEC Mathematics Paper 2015Solutions of AHSEC Mathematics Paper 2015
Solutions of AHSEC Mathematics Paper 2015
Nayanmani Sarma
 
Lines, planes, and hyperplanes
Lines, planes, and hyperplanesLines, planes, and hyperplanes
Lines, planes, and hyperplanes
Tarun Gehlot
 
Lines, planes, and hyperplanes
Lines, planes, and hyperplanesLines, planes, and hyperplanes
Lines, planes, and hyperplanes
Tarun Gehlot
 
Three dim. geometry
Three dim. geometryThree dim. geometry
Three dim. geometry
indu thakur
 

Ähnlich wie planes and distances (20)

7.5 lines and_planes_in_space
7.5 lines and_planes_in_space7.5 lines and_planes_in_space
7.5 lines and_planes_in_space
 
Coordinategeometry1 1
Coordinategeometry1 1Coordinategeometry1 1
Coordinategeometry1 1
 
Coordinategeometry1 1
Coordinategeometry1 1Coordinategeometry1 1
Coordinategeometry1 1
 
CLASS X MATHS
CLASS X MATHS CLASS X MATHS
CLASS X MATHS
 
1513 circles
1513 circles1513 circles
1513 circles
 
Geometry (Grid & section formula)
Geometry (Grid & section formula)Geometry (Grid & section formula)
Geometry (Grid & section formula)
 
Gmat quant topic 6 co ordinate geometry solutions
Gmat quant topic 6 co ordinate geometry solutionsGmat quant topic 6 co ordinate geometry solutions
Gmat quant topic 6 co ordinate geometry solutions
 
Plano numerico
Plano numericoPlano numerico
Plano numerico
 
Vectors2
Vectors2Vectors2
Vectors2
 
Notes on Equation of Plane
Notes on Equation of PlaneNotes on Equation of Plane
Notes on Equation of Plane
 
Presentation on calculus
Presentation on calculusPresentation on calculus
Presentation on calculus
 
Solutions of AHSEC Mathematics Paper 2015
Solutions of AHSEC Mathematics Paper 2015Solutions of AHSEC Mathematics Paper 2015
Solutions of AHSEC Mathematics Paper 2015
 
THREE DIMENSIONAL GEOMETRY
THREE DIMENSIONAL GEOMETRYTHREE DIMENSIONAL GEOMETRY
THREE DIMENSIONAL GEOMETRY
 
Mathematics
MathematicsMathematics
Mathematics
 
Mathematics
MathematicsMathematics
Mathematics
 
Lines, planes, and hyperplanes
Lines, planes, and hyperplanesLines, planes, and hyperplanes
Lines, planes, and hyperplanes
 
Lines, planes, and hyperplanes
Lines, planes, and hyperplanesLines, planes, and hyperplanes
Lines, planes, and hyperplanes
 
CLASS X MATHS Coordinate geometry
CLASS X MATHS Coordinate geometryCLASS X MATHS Coordinate geometry
CLASS X MATHS Coordinate geometry
 
Recurrence_Theory.pptx studdents nees free
Recurrence_Theory.pptx studdents nees freeRecurrence_Theory.pptx studdents nees free
Recurrence_Theory.pptx studdents nees free
 
Three dim. geometry
Three dim. geometryThree dim. geometry
Three dim. geometry
 

Mehr von Elias Dinsa

Hospital Management system Database design
Hospital Management system Database designHospital Management system Database design
Hospital Management system Database design
Elias Dinsa
 
the cross product of vectors
the cross product of vectorsthe cross product of vectors
the cross product of vectors
Elias Dinsa
 
dot product of vectors
dot product of vectorsdot product of vectors
dot product of vectors
Elias Dinsa
 
diff. of functions
diff. of functionsdiff. of functions
diff. of functions
Elias Dinsa
 
limits and continuity
limits and continuitylimits and continuity
limits and continuity
Elias Dinsa
 
eliodinsulenapier
eliodinsulenapiereliodinsulenapier
eliodinsulenapier
Elias Dinsa
 

Mehr von Elias Dinsa (8)

eliodinsule
eliodinsuleeliodinsule
eliodinsule
 
Hospital Management system Database design
Hospital Management system Database designHospital Management system Database design
Hospital Management system Database design
 
the cross product of vectors
the cross product of vectorsthe cross product of vectors
the cross product of vectors
 
dot product of vectors
dot product of vectorsdot product of vectors
dot product of vectors
 
diff. of functions
diff. of functionsdiff. of functions
diff. of functions
 
Limits3a
Limits3aLimits3a
Limits3a
 
limits and continuity
limits and continuitylimits and continuity
limits and continuity
 
eliodinsulenapier
eliodinsulenapiereliodinsulenapier
eliodinsulenapier
 

planes and distances

  • 1. 4. Planes and distances How do we represent a plane Π in R3 ? In fact the best way to specify a plane is to give a normal vector �n to the plane and a point P0 on the plane. Then if we are given any point P on the plane, the vector −−→ P0P is a vector in the plane, so that it must be orthogonal to the normal vector �n. Algebraically, we have −−→ P0P �n = 0.· Let’s write this out as an explicit equation. Suppose that the point P0 = (x0, y0, z0), P = (x, y, z) and �n = (A, B, C). Then we have (x − x0, y − y0, z − z0) (A, B, C) = 0.· Expanding, we get A(x − x0) + B(y − y0) + C(z − z0) = 0, which is one common way to write down a plane. We can always rewrite this as Ax + By + Cz = D. Here D = Ax0 + By0 + Cz0 = (A, B, C) (x0, y0, z0) = � −−→ n OP0.· · This is perhaps the most common way to write down the equation of a plane. Example 4.1. 3x − 4y + 2z = 6, is the equation of a plane. A vector normal to the plane is (3, −4, 2). Example 4.2. What is the equation of a plane passing through (1, −1, 2), with normal vector �n = (2, 1, −1)? We have (x − 1, y + 1, z − 2) (2, 1, −1) = 0.· So 2(x − 1) + y + 1 − (z − 2) = 0, so that in other words, 2x + y − z = −1. A line is determined by two points; a plane is determined by three points, provided those points are not collinear (that is, provided they don’t lie on the same line). So given three points P0, P1 and P2, what is the equation of the plane Π containing P0, P1 and P2? Well, we would like to find a vector �n orthogonal to any vector in the plane. Note that −−→ and −−→ are two vectors in the plane, which by assumption areP0P1 P0P2 1
  • 2. � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � � not parallel. The cross product is a vector which is orthogonal to both vectors, �n = −−→ P0P2.P0P1 × −−→ So the equation we want is −−→ ( −−→ P0P2) = 0.P0P P0P1 × −−→ · We can rewrite this a little. −−→ = OP − −−→ Expanding and rear­P0P −→ OP0. ranging gives −→ OP ( −−→ P0P2) = −−→ ( −−→ −−→ P0P1 × −−→ OP0 · P0P1 × P0P2).· Note that both sides involve the triple scalar product. Example 4.3. What is the equation of the plane Π through the three points, P0 = (1, 1, 1), P1 = (2, −1, 0) and P2 = (0, −1, −1)? −−→ and P0P2 = (−1, −2, −2).P0P1 = (1, −2, −1) −−→ Now a vector orthogonal to both of these vectors is given by the cross product: �n = −−→ −−→ P0P1 × P0P2 ˆı jˆ kˆ 1 −2 −1 −1 −2 −2 = + kˆ −2 −1 −2 −2 1 −1 −2 1 −2 −2 = ˆı − jˆ −1 −1 = 2ˆı + 3ˆ k.j − 4ˆ Note that �n P0P1 = 2 − 6 + 4 = 0, −−→ · as expected. It follows that the equation of Π is 2(x − 1) + 3(y − 1) − 4(z − 1) = 0, so that 2x + 3y − 4z = 1. For example, if we plug in P2 = (0, −1, −1), then 2 0 + 3 · −1 + 4 = 1,· as expected. 2
  • 3. Example 4.4. What is the parametric equation for the line l given as the intersection of the two planes 2x − y + z = 1 and x + y − z = 2? Well we need two points on the intersection of these two planes. If we set z = 0, then we get the intersection of two lines in the xy-plane, 2x − y = 1 x + y = 2. Adding these two equations we get 3x = 3, so that x = 1. It follows that y = 1, so that P0 = (1, 1, 0) is a point on the line. Now suppose that y = 0. Then we get 2x + z = 1 x − z = 2. As before this says x = 1 and so z = −1. So P1 = (1, 0, −1) is a point on l. −−→ P0P = t −−→ P0P1, for some parameter t. Expanding (x − 1, y − 1, z) = t(0, −1, −1), so that (x, y, z) = (1, 1 − t, −t). We can also calculate distances between planes and points, lines and points, and lines and lines. Example 4.5. What is the distance between the plane x − 2y + 3z = 4 and the point P = (1, 2, 3)? Call the closest point R. Then −→ PR is orthogonal to every vector in the plane, that is, −→ n = (1, −2, 3)PR is normal to the plane. Note that � is normal to the plane, so that −→ PR is parallel to the plane. Pick any point Q belonging to the plane. Then the triangle PQR has a right angle at R, so that −→ PR = ± proj� −→ PQ.n When x = z = 0, then y = −2, so that Q = (0, −2, 0) is a point on the plane. −→ PQ = (−1, −4, −3). Now ��n�2 = �n. · �n. = 12 + 22 + 32 = 14 and �n · −→ PQ = 4. So proj�n −→ PQ = 2 7 (1, −2, 3). 3
  • 4. � � � � � � So the distance is 2√ 14. 7 Here is another way to proceed. The line through P, pointing in the direction �n, will intersect the plane at the point R. Now this line is given parametrically as (x − 1, y − 2, z − 3) = t(1, −2, 3), so that (x, y, z) = (t + 1, 2 − 2t, 3 + 3t). The point R corresponds to (t + 1) − 2(2 − 2t) + 3(3 + 3t) = 4, so that 14t = −2 that is t = 2 7 . So the point R is 1 the same answer as before (phew!). � � � � � � (9, 10, 27). 7 It follows that −→ PR = 1 (2, −4, 6) = 2 (1, −2, 3), 7 7 Example 4.6. What is the distance between the two lines (x, y, z) = (t−2, 3t+1, 2−t) and (x, y, z) = (2t−1, 2−3t, t+1)? If the two closest points are R and R� then −−→ RR� is orhogonal to the direction of both lines. Now the direction of the first line is (1, 3, −1) and the direction of the second line is (2, −3, 1). A vector orthogonal to both is given by the cross product: ˆı jˆ kˆ 1 3 −1 2 −3 1 = −3ˆ k.j − 9ˆ To simplify some of the algebra, let’s take �n = ˆ k,j + 3ˆ which is parallel to the vector above, so that it is still orthogonal to both lines. It follows that −−→ RR� is parallel to �n. Pick any two points P and P� on the two lines. Note that the length of the vector proj�n −− P� P, 4
  • 5. is the distance between the two lines. Now if we plug in t = 0 to both lines we get P� = (−2, 1, 2) and P = (−1, 2, 1). So −− P� P = (1, 1, −1). Then � −− ��n�2 = 12 + 32 = 10 and n P� P = −2.· It follows that −− proj�n P� P = −2 (0, 1, 3) = −1 (0, 1, 3). 10 5 and so the distance between the two lines is 1√ 10. 5 5
  • 6. MIT OpenCourseWare http://ocw.mit.edu 18.022 Calculus of Several Variables Fall 2010 For information about citing these materials or our Terms of Use, visit: http://ocw.mit.edu/terms.