SlideShare una empresa de Scribd logo
1 de 6
TARUNGEHLOT
                              Systems of Equations
                        The Geometry of three planes in space



Some background
       Early in Geometry students learn that when two planes intersect, they intersect in a
single straight line. Few are taught the tools to determine the line of intersection, and
express it with an equation. This paper attempts to provide an approach to developing
the tools to accomplish that task and expand their understanding of the information
available in the use of the reduced row-echelon form of the augmented matrix of a system
of three equations in three unknowns.

       We begin by recalling that an equation in three variables, such as 2x+3y+z=6 can
represent a plane in space. When students had three such equations that intersected in a
unique point, they found the solution by one of several methods. Most students learn to
solve such equations by the methods called elimination and substitution at the very least.
Others may have also been introduced to Cramer’s rule for solving systems with
determinants and perhaps two methods using matrices.

        The most commonly taught matrix method is to write a matrix equation and then
solve it using the inverse matrix method. A second, and as we will point out, more
efficient and general method is the Gauss-Jordan reduced row-echelon form (RREF) of an
augmented matrix. We give an example of both below to clarify the terminoligy.

       We begin with three planes determined by the equations {x + y – 2z = 9; 2x – 3y
+ z = -2; and x + 3y + z = 2} This same system of equations can be expressed as the
matrix equation
                                          1   1   2   x   9

                                          2   3   1   y   2

                                          1   3   1   z   2   .

       Notice that the left matrix is made up of the coefficients of the three variable terms
in each equation, and the right matrix contains the constant terms. We can find the
intersection by taking the inverse of the left matrix and multiplying on the left of both
sides of the equation. The simplified result gives
6   7       1
                                        25   25      5
                                                             9       2
                                         1       3   1
                                                             2       1
                                        25   25      5
                                                             2        3
                                         9   2       1
                                        25   25      5
This seems to be the most commonly taught method, and the one that students and
teachers seem to prefer, and yet it has two major disadvantages. The first disadvantage
is that it tells you little or nothing about systems which have a solution, but not a single
unique solution. The second is that the inverse method is more computationally complex,
that is, it takes more operations for the solution than the alternative RREF method, and
the difference grows as problems reach higher orders of magnitude. For the problems
that are generally assigned at the high school level, the difference in computability
presents no real problem, but the difference in the range of applicable questions can be
very significant in a students understanding of general systems of three equations.



       The first obvious case is three planes intersecting in a single point that is the most
familiar to students. In addition to the Inverse method shown above, a second matrix
method using the augmented matrix to represent the system will also solve this system.
This method takes a matrix that combines the coefficient matrix with the constant matrix
and then uses the same row operations that students learned when they solved systems
by elimination to produce an augmented matrix with the solution easily apparent. Here is
                                         1   1       2   9

                                         2   3       1   2

the augmented matrix for the system,     1   3       1   2       , and the RREF matrix of the same
             1 0 0    2

             0 1 0    1

system       0 0 1    3   .

        In contrast with the Inverse method that will only work if the three planes intersect
in a single point, the RREF form will allow us to work with systems which do not even
have the same number of equations as unknowns. This is the type of situation created
when we try to find the line of intersection of two planes.

RREF for two planes
       We will use the equations 2x + 3y – 3z = 14 and –3x + y + 10z = -32. When we
write an augmented matrix for the system of only two equations we get a 2x4 matrix,
 2   3   3   14

 3 1 10      32   .
1 0   3 10

        When we reduce this to the RREF we get 0 1 1 2 . Now how do we interpret
this result? If we convert the RREF of the augmented matrix back to a system of
equations we get x - 3z = 10 and y + z = -2 .

       We notice that both equations contain a z variable, it might occur to us to ask,
“What happens if we substitute different values in for z?”. For example, if we try z=0 we
note that from the first equation we get x=10 and from the second we get y=-2. What
does this tell us about the point (10, -2, 0). If we check it against the two original
equations we notice that the point makes both equations true, 2(10) + 3(-2) – 3(0) = 14
and –3(10) + (-2) + 10(0) = -32. So the point (10, -2, 0) is on both planes and therefore
must lie on the line that is their intersection.

        Can we find more points? What happens if we try z=1 or z=2 or other values.
Using z=1 we get x – 3(1) = 10 which simplifies to x=13 ; and y +(1) = -2 which
simplifies to y=-3. Checking the point (13, -3, 1) we see that it also makes both equations
true, and so it must also be on the line of intersection.

Writing the parametric equation of a line in three space
       So now we have two points on the line of intersection; (10,-2, 0) and (13, -3, 1).
How can we describe the line? One way is to write a formula for all the points so that
someone could find as many values of (x,y,z) as they wish. We do this with parametric
equations. A parametric equation is an equation that explains the values of one set of
variables (in this case x, y, and z) in terms of another “parameter” which we will call t.
We will define the line in terms of one point, and instructions to get from one point to
another; sort of a three-space equivalent of slope.
       When we worked with slope in a plane we had to find the change in x and the
change in y, but now in three space we need a change in z also. If we look at our two
known points, we can see that from the first we found, (10,-2, 0), to the second, (13, -3,
1), the x-value increases 3, the y-value decreases 1, and the z value increased 1. Let’s
record those as a ordered triple, but to keep it separate from our points we will use
brackets to enclose the changes; like this [3, -1, 1] .

       We can even use this to find more points. If we add [3, -1, 1] to the last point we
found (13, -3, 1) we get (16, -4, 2); and we know it is on both planes because it makes
both the original equations true (Remember? They were 2x + 3y – 3z = 14 and –3x + y +
10z = -32) . Of course we do not have to add integer multiples of t, and if we allow t to be
ANY real value, then we can write a general expression for all the points on the line of
intersection in the form (x, y, z) = (10, -2, 0) + t [3, -1, 1] . [some texts will write this as
a vector form (x, y, z) = (10+3t, -2 – t, t ) ].

       If we return to examine the RREF form of the augmented matrix we wonder if the
                                                                             1 0   3 10

direction vector [3, -1, 1] is in anyway obvious from the reduced matrix 0 1 1 2 . We
are tantalized by the appearance of –3 and 1 in the Z column, and the 10, -2 in the
constants column. Could we have looked at this reduced form and gone directly to the
equation of the line? Perhaps a second example will help.

       For the second two planes we pick { x+y + 5z = 8 and 2x + y + 8z = 13 }. Our

                                       1 0 3 5

reduced row echelon form looks like 0 1 2 3 . Is it possible that our line of intersection is
as simple as (x, y, z) = (5,3,0) +t [-3, -2, 1] (clever folks are already thinking we could
write this last as [3, 2, -1] since t goes through all negative and positive values). Will the
points generated lie on both planes. (5, 3, 0) is almost a trivial to check, and if we check
(2, 1, 1) we see that it also is on both planes. We are now more assured that it is at least
plausible that the RREF matrix makes the intersection line simple to obtain.

A second consistent solution to three planes
       Now let’s add to our system and make a system of three equations; {2x + 3y – 3z
= 14 , –3x + y + 10z = -32, x + 7y + 4z = -4}. If we try to solve this system by the
inverse method we get the dreaded “Singular Mat” error on the calculator and all we can
determine is that there is NOT a single unique solution. If we use the RREF we get
something that should remind us of our previous example, and for good reason. Because
I chose the third line to be a linear combination of the first two, the three planes all share
a common line of intersection, the line (x, y, z) = (10, -2, 0) + t [3, -1, 1] as shown by the
reduced form:
                                           1 0   3 10

                                           0 1   1   2

                                           0 0   0   0


   The third row gives us an obviously true statement that reflects that the third equation,
in essence, added no new information to the system. This “row of zeros” at the bottom is
the key to the student that the system had three equations but the intersection would be
completely determined by any two of them.

       When three planes intersect in space, there are five basic configurations that can
take place. I ask students to visualize and describe the five situations that can exist prior
to discussion of the method of finding the solutions. In most years they come up with all
five configurations and names for them. Here is a list of the five as my students tend to
describe them.

       The two consistent systems are three planes intersecting in a single point, and
three planes intersecting in a single line (the book binding model – the planes are pages in
a book and the common line is the binding).

       The three configurations with no common points of intersection are three parallel
planes, two parallel planes cut by a transverse plane (the H configuration) forming two
parallel lines, and three planes intersecting in mutual pairs to form three parallel lines (the
delta configuration). The first and the second are often easy to recognize from the
equations since the parallels are usually recognizable, but the third is difficult to identify
without reducing.

Three configurations w/o a common solution
       If we look at the three inconsistent systems possible with three planes, the more
obvious cases may lead us to more understanding of the less obvious cases. First I want
to look at three parallel planes, x + 2y + 3z = 1, x+ 2y + 3z = 5, and x + 2y + 3z = 10.
The reduced RREF augmented matrix looks like this:

                                              1 2 3 0

                                              0 0 0 1

                                              0 0 0 0


        The first row looks like it is directly related to the coefficients of x, y, and z in each
equation, but the 0 in the constant term may seem perplexing. I think of this information
as a direction vector [1,2,3] that is perpendicular to the three parallel planes. The bottom
line of zeros reminds us that the last equation added no new information about the
solution set. But what are we to make of the equation for the second row, 0x + 0y + 0z
= 1. I tell students that this is the signal that there is NO common point of intersection.
In essence, we have an intersection when 0=1, and that is never true.

       Now we examine a system with two of the same parallels and a third plane not
parallel to them, the H configuration, { x + 2y + 3z = 1, x+ 2y + 3z = 5, 2x – y + z = 1}.
                                 1 0 1 0

                                 0 1 1 0

The reduced matrix looks like 0 0 0 1 . How can we interpret this. The bottom row is
our old insolvable friend 0x +0y + 0z = 1, reminding us that there can be no common
point on the three planes (since two of them are parallel). The upper two rows look like
the rows when we had a line of intersection except that both constant terms equal zero.
Does this tell us anything about the two lines of intersection formed by the plane cutting
through the two parallel planes. Perhaps we can find out more if we find the two
intersections one at a time. If we reduce the two equations x + 2y + 3z = 1, 2x – y + z =
                                           1 0 1 .6

1, our reduced matrix looks like this, 0 1 1 .2 . This gives a line (x, y, z) = (.6, .2, 0) + t
[-1, -1, 1] . If we do the intersection with the second parallel plane we get (x, y, z) =
(1.4, 1.8, 0) + t [-1, -1, 1]. It seems that our original reduced system was flashing the
direction vector part of the two parallel lines created by the three planes in the third
column.

       For our final case, we pick the inconsistent situation which is most difficult to
distinguish from the consistent cases, the delta configuration in which three planes
intersect in mutual pairs to form three parallel lines. An example is the three planes
defined by { x + y + 7z = 5, x – y – z = 3, and 2x – y + 2z = 4} .
1 0 3 0

                                          0 1 4 0

        The reduced form looks like this, 0 0 0 1 and we are now becoming accustom to
the 0001 on the bottom reminding us there is no common point for the three planes. And
a quick inspection of the three planes assures us that no two of them are parallel, so the
only possible case is the “delta formation” and three parallel lines. What are we to make
of the two upper rows. Our experience now leads us to think that [3,4,-1] will be the
direction vector for all three lines. We can verify our supposition by taking the vectors in
pairs and reducing the two-equation systems to find the actual line of intersection, but as
is the fashion in mathematical writing, I leave that final task as an exercise for the reader.

Más contenido relacionado

Destacado

Basics of set theory
Basics of set theoryBasics of set theory
Basics of set theoryTarun Gehlot
 
Interpolation functions
Interpolation functionsInterpolation functions
Interpolation functionsTarun Gehlot
 
Numerical integration
Numerical integrationNumerical integration
Numerical integrationTarun Gehlot
 
Applications of numerical methods
Applications of numerical methodsApplications of numerical methods
Applications of numerical methodsTarun Gehlot
 
Continuity and end_behavior
Continuity and  end_behaviorContinuity and  end_behavior
Continuity and end_behaviorTarun Gehlot
 
Finite elements : basis functions
Finite elements : basis functionsFinite elements : basis functions
Finite elements : basis functionsTarun Gehlot
 
Basic concepts of curve fittings
Basic concepts of curve fittingsBasic concepts of curve fittings
Basic concepts of curve fittingsTarun Gehlot
 
Applications of derivatives
Applications of derivativesApplications of derivatives
Applications of derivativesTarun Gehlot
 
Rational functions
Rational functionsRational functions
Rational functionsTarun Gehlot
 
An applied approach to calculas
An applied approach to calculasAn applied approach to calculas
An applied approach to calculasTarun Gehlot
 
New approaches in linear inequalities
New approaches in linear inequalitiesNew approaches in linear inequalities
New approaches in linear inequalitiesTarun Gehlot
 
What are journal editors looking for (lern)
What are journal editors looking for (lern)What are journal editors looking for (lern)
What are journal editors looking for (lern)Chris Ashford
 
Day of the dead ppt ema
Day of the dead ppt emaDay of the dead ppt ema
Day of the dead ppt emamm1017
 
Boletin parroquial noviembre 2011
Boletin parroquial noviembre 2011Boletin parroquial noviembre 2011
Boletin parroquial noviembre 2011mdroser
 
Financiación de Emprendedores
Financiación de EmprendedoresFinanciación de Emprendedores
Financiación de EmprendedoresDaniel Bruellmann
 
Portafolio 4..ninoscka coursera.pdf
Portafolio 4..ninoscka   coursera.pdfPortafolio 4..ninoscka   coursera.pdf
Portafolio 4..ninoscka coursera.pdfNinoscka Cornejo
 
Willkommen im virtuellen Amt des Kantons Jura
Willkommen im virtuellen Amt des Kantons JuraWillkommen im virtuellen Amt des Kantons Jura
Willkommen im virtuellen Amt des Kantons JuraTrägerverein SuisseID
 

Destacado (20)

Basics of set theory
Basics of set theoryBasics of set theory
Basics of set theory
 
Interpolation functions
Interpolation functionsInterpolation functions
Interpolation functions
 
Numerical integration
Numerical integrationNumerical integration
Numerical integration
 
Matlab commands
Matlab commandsMatlab commands
Matlab commands
 
Applications of numerical methods
Applications of numerical methodsApplications of numerical methods
Applications of numerical methods
 
Continuity and end_behavior
Continuity and  end_behaviorContinuity and  end_behavior
Continuity and end_behavior
 
Finite elements : basis functions
Finite elements : basis functionsFinite elements : basis functions
Finite elements : basis functions
 
Basic concepts of curve fittings
Basic concepts of curve fittingsBasic concepts of curve fittings
Basic concepts of curve fittings
 
Applications of derivatives
Applications of derivativesApplications of derivatives
Applications of derivatives
 
Rational functions
Rational functionsRational functions
Rational functions
 
An applied approach to calculas
An applied approach to calculasAn applied approach to calculas
An applied approach to calculas
 
New approaches in linear inequalities
New approaches in linear inequalitiesNew approaches in linear inequalities
New approaches in linear inequalities
 
What are journal editors looking for (lern)
What are journal editors looking for (lern)What are journal editors looking for (lern)
What are journal editors looking for (lern)
 
Ruegen Kochbuch
Ruegen KochbuchRuegen Kochbuch
Ruegen Kochbuch
 
Catalog ofesd
Catalog ofesdCatalog ofesd
Catalog ofesd
 
Day of the dead ppt ema
Day of the dead ppt emaDay of the dead ppt ema
Day of the dead ppt ema
 
Boletin parroquial noviembre 2011
Boletin parroquial noviembre 2011Boletin parroquial noviembre 2011
Boletin parroquial noviembre 2011
 
Financiación de Emprendedores
Financiación de EmprendedoresFinanciación de Emprendedores
Financiación de Emprendedores
 
Portafolio 4..ninoscka coursera.pdf
Portafolio 4..ninoscka   coursera.pdfPortafolio 4..ninoscka   coursera.pdf
Portafolio 4..ninoscka coursera.pdf
 
Willkommen im virtuellen Amt des Kantons Jura
Willkommen im virtuellen Amt des Kantons JuraWillkommen im virtuellen Amt des Kantons Jura
Willkommen im virtuellen Amt des Kantons Jura
 

Similar a The geometry of three planes in space

1  Part 2 Systems of Equations Which Do Not Have A Uni.docx
1  Part 2  Systems of Equations Which Do Not Have A Uni.docx1  Part 2  Systems of Equations Which Do Not Have A Uni.docx
1  Part 2 Systems of Equations Which Do Not Have A Uni.docxeugeniadean34240
 
Module 1 plane coordinate geometry
Module 1   plane coordinate geometryModule 1   plane coordinate geometry
Module 1 plane coordinate geometrydionesioable
 
Gauss Jordan
Gauss JordanGauss Jordan
Gauss JordanEzzat Gul
 
Chapter 3: Linear Systems and Matrices - Part 1/Slides
Chapter 3: Linear Systems and Matrices - Part 1/SlidesChapter 3: Linear Systems and Matrices - Part 1/Slides
Chapter 3: Linear Systems and Matrices - Part 1/SlidesChaimae Baroudi
 
Analytic Geometry Period 1
Analytic Geometry Period 1Analytic Geometry Period 1
Analytic Geometry Period 1ingroy
 
Linear equations
Linear equationsLinear equations
Linear equationsNisarg Amin
 
Pair of linear equations
Pair of linear equationsPair of linear equations
Pair of linear equationsYash Jain
 
Linear equations rev - copy
Linear equations rev - copyLinear equations rev - copy
Linear equations rev - copyYash Jain
 
Consistency of linear equations in two and three variables
Consistency of linear equations in two and three variablesConsistency of linear equations in two and three variables
Consistency of linear equations in two and three variablesAamlan Saswat Mishra
 
Lecture 10a system of linear equations
Lecture 10a system of linear equationsLecture 10a system of linear equations
Lecture 10a system of linear equationsHazel Joy Chong
 
07 chap3
07 chap307 chap3
07 chap3ELIMENG
 
Series_Solution_Methods_and_Special_Func.pdf
Series_Solution_Methods_and_Special_Func.pdfSeries_Solution_Methods_and_Special_Func.pdf
Series_Solution_Methods_and_Special_Func.pdfmohamedtawfik358886
 
Linear equations rev
Linear equations revLinear equations rev
Linear equations revYash Jain
 
0.3.e,ine,det.
0.3.e,ine,det.0.3.e,ine,det.
0.3.e,ine,det.m2699
 
System of equations
System of equationsSystem of equations
System of equationsmariacadena
 
System of equations
System of equationsSystem of equations
System of equationsmariacadena
 

Similar a The geometry of three planes in space (20)

1  Part 2 Systems of Equations Which Do Not Have A Uni.docx
1  Part 2  Systems of Equations Which Do Not Have A Uni.docx1  Part 2  Systems of Equations Which Do Not Have A Uni.docx
1  Part 2 Systems of Equations Which Do Not Have A Uni.docx
 
Module 1 plane coordinate geometry
Module 1   plane coordinate geometryModule 1   plane coordinate geometry
Module 1 plane coordinate geometry
 
Gauss Jordan
Gauss JordanGauss Jordan
Gauss Jordan
 
Systems of linear equations; matrices
Systems of linear equations; matricesSystems of linear equations; matrices
Systems of linear equations; matrices
 
Chapter 3: Linear Systems and Matrices - Part 1/Slides
Chapter 3: Linear Systems and Matrices - Part 1/SlidesChapter 3: Linear Systems and Matrices - Part 1/Slides
Chapter 3: Linear Systems and Matrices - Part 1/Slides
 
Analytic Geometry Period 1
Analytic Geometry Period 1Analytic Geometry Period 1
Analytic Geometry Period 1
 
Linear equations
Linear equationsLinear equations
Linear equations
 
.Chapter7&8.
.Chapter7&8..Chapter7&8.
.Chapter7&8.
 
Pair of linear equations
Pair of linear equationsPair of linear equations
Pair of linear equations
 
Linear equations rev - copy
Linear equations rev - copyLinear equations rev - copy
Linear equations rev - copy
 
1525 equations of lines in space
1525 equations of lines in space1525 equations of lines in space
1525 equations of lines in space
 
Linear Algebra and its use in finance:
Linear Algebra and its use in finance:Linear Algebra and its use in finance:
Linear Algebra and its use in finance:
 
Consistency of linear equations in two and three variables
Consistency of linear equations in two and three variablesConsistency of linear equations in two and three variables
Consistency of linear equations in two and three variables
 
Lecture 10a system of linear equations
Lecture 10a system of linear equationsLecture 10a system of linear equations
Lecture 10a system of linear equations
 
07 chap3
07 chap307 chap3
07 chap3
 
Series_Solution_Methods_and_Special_Func.pdf
Series_Solution_Methods_and_Special_Func.pdfSeries_Solution_Methods_and_Special_Func.pdf
Series_Solution_Methods_and_Special_Func.pdf
 
Linear equations rev
Linear equations revLinear equations rev
Linear equations rev
 
0.3.e,ine,det.
0.3.e,ine,det.0.3.e,ine,det.
0.3.e,ine,det.
 
System of equations
System of equationsSystem of equations
System of equations
 
System of equations
System of equationsSystem of equations
System of equations
 

Más de Tarun Gehlot

Materials 11-01228
Materials 11-01228Materials 11-01228
Materials 11-01228Tarun Gehlot
 
Continuity of functions by graph (exercises with detailed solutions)
Continuity of functions by graph   (exercises with detailed solutions)Continuity of functions by graph   (exercises with detailed solutions)
Continuity of functions by graph (exercises with detailed solutions)Tarun Gehlot
 
Factoring by the trial and-error method
Factoring by the trial and-error methodFactoring by the trial and-error method
Factoring by the trial and-error methodTarun Gehlot
 
Introduction to finite element analysis
Introduction to finite element analysisIntroduction to finite element analysis
Introduction to finite element analysisTarun Gehlot
 
Finite elements for 2‐d problems
Finite elements  for 2‐d problemsFinite elements  for 2‐d problems
Finite elements for 2‐d problemsTarun Gehlot
 
Error analysis statistics
Error analysis   statisticsError analysis   statistics
Error analysis statisticsTarun Gehlot
 
Introduction to matlab
Introduction to matlabIntroduction to matlab
Introduction to matlabTarun Gehlot
 
Linear approximations and_differentials
Linear approximations and_differentialsLinear approximations and_differentials
Linear approximations and_differentialsTarun Gehlot
 
Local linear approximation
Local linear approximationLocal linear approximation
Local linear approximationTarun Gehlot
 
Propeties of-triangles
Propeties of-trianglesPropeties of-triangles
Propeties of-trianglesTarun Gehlot
 
Gaussian quadratures
Gaussian quadraturesGaussian quadratures
Gaussian quadraturesTarun Gehlot
 
Applications of set theory
Applications of  set theoryApplications of  set theory
Applications of set theoryTarun Gehlot
 
Miscellneous functions
Miscellneous  functionsMiscellneous  functions
Miscellneous functionsTarun Gehlot
 
Dependent v. independent variables
Dependent v. independent variablesDependent v. independent variables
Dependent v. independent variablesTarun Gehlot
 
Intervals of validity
Intervals of validityIntervals of validity
Intervals of validityTarun Gehlot
 
Modelling with first order differential equations
Modelling with first order differential equationsModelling with first order differential equations
Modelling with first order differential equationsTarun Gehlot
 
Review taylor series
Review taylor seriesReview taylor series
Review taylor seriesTarun Gehlot
 
Review power series
Review power seriesReview power series
Review power seriesTarun Gehlot
 
Modeling Transformations
Modeling TransformationsModeling Transformations
Modeling TransformationsTarun Gehlot
 

Más de Tarun Gehlot (20)

Materials 11-01228
Materials 11-01228Materials 11-01228
Materials 11-01228
 
Binary relations
Binary relationsBinary relations
Binary relations
 
Continuity of functions by graph (exercises with detailed solutions)
Continuity of functions by graph   (exercises with detailed solutions)Continuity of functions by graph   (exercises with detailed solutions)
Continuity of functions by graph (exercises with detailed solutions)
 
Factoring by the trial and-error method
Factoring by the trial and-error methodFactoring by the trial and-error method
Factoring by the trial and-error method
 
Introduction to finite element analysis
Introduction to finite element analysisIntroduction to finite element analysis
Introduction to finite element analysis
 
Finite elements for 2‐d problems
Finite elements  for 2‐d problemsFinite elements  for 2‐d problems
Finite elements for 2‐d problems
 
Error analysis statistics
Error analysis   statisticsError analysis   statistics
Error analysis statistics
 
Introduction to matlab
Introduction to matlabIntroduction to matlab
Introduction to matlab
 
Linear approximations and_differentials
Linear approximations and_differentialsLinear approximations and_differentials
Linear approximations and_differentials
 
Local linear approximation
Local linear approximationLocal linear approximation
Local linear approximation
 
Propeties of-triangles
Propeties of-trianglesPropeties of-triangles
Propeties of-triangles
 
Gaussian quadratures
Gaussian quadraturesGaussian quadratures
Gaussian quadratures
 
Applications of set theory
Applications of  set theoryApplications of  set theory
Applications of set theory
 
Miscellneous functions
Miscellneous  functionsMiscellneous  functions
Miscellneous functions
 
Dependent v. independent variables
Dependent v. independent variablesDependent v. independent variables
Dependent v. independent variables
 
Intervals of validity
Intervals of validityIntervals of validity
Intervals of validity
 
Modelling with first order differential equations
Modelling with first order differential equationsModelling with first order differential equations
Modelling with first order differential equations
 
Review taylor series
Review taylor seriesReview taylor series
Review taylor series
 
Review power series
Review power seriesReview power series
Review power series
 
Modeling Transformations
Modeling TransformationsModeling Transformations
Modeling Transformations
 

Último

9548086042 for call girls in Indira Nagar with room service
9548086042  for call girls in Indira Nagar  with room service9548086042  for call girls in Indira Nagar  with room service
9548086042 for call girls in Indira Nagar with room servicediscovermytutordmt
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13Steve Thomason
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfAdmir Softic
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingTechSoup
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Krashi Coaching
 
Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Disha Kariya
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfagholdier
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationnomboosow
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...christianmathematics
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityGeoBlogs
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...EduSkills OECD
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformChameera Dedduwage
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxiammrhaywood
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAssociation for Project Management
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfJayanti Pande
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeThiyagu K
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxheathfieldcps1
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdfQucHHunhnh
 

Último (20)

9548086042 for call girls in Indira Nagar with room service
9548086042  for call girls in Indira Nagar  with room service9548086042  for call girls in Indira Nagar  with room service
9548086042 for call girls in Indira Nagar with room service
 
The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13The Most Excellent Way | 1 Corinthians 13
The Most Excellent Way | 1 Corinthians 13
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
 
Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communication
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
A Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy ReformA Critique of the Proposed National Education Policy Reform
A Critique of the Proposed National Education Policy Reform
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across Sectors
 
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdf
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and Mode
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 

The geometry of three planes in space

  • 1. TARUNGEHLOT Systems of Equations The Geometry of three planes in space Some background Early in Geometry students learn that when two planes intersect, they intersect in a single straight line. Few are taught the tools to determine the line of intersection, and express it with an equation. This paper attempts to provide an approach to developing the tools to accomplish that task and expand their understanding of the information available in the use of the reduced row-echelon form of the augmented matrix of a system of three equations in three unknowns. We begin by recalling that an equation in three variables, such as 2x+3y+z=6 can represent a plane in space. When students had three such equations that intersected in a unique point, they found the solution by one of several methods. Most students learn to solve such equations by the methods called elimination and substitution at the very least. Others may have also been introduced to Cramer’s rule for solving systems with determinants and perhaps two methods using matrices. The most commonly taught matrix method is to write a matrix equation and then solve it using the inverse matrix method. A second, and as we will point out, more efficient and general method is the Gauss-Jordan reduced row-echelon form (RREF) of an augmented matrix. We give an example of both below to clarify the terminoligy. We begin with three planes determined by the equations {x + y – 2z = 9; 2x – 3y + z = -2; and x + 3y + z = 2} This same system of equations can be expressed as the matrix equation 1 1 2 x 9 2 3 1 y 2 1 3 1 z 2 . Notice that the left matrix is made up of the coefficients of the three variable terms in each equation, and the right matrix contains the constant terms. We can find the intersection by taking the inverse of the left matrix and multiplying on the left of both sides of the equation. The simplified result gives
  • 2. 6 7 1 25 25 5 9 2 1 3 1 2 1 25 25 5 2 3 9 2 1 25 25 5 This seems to be the most commonly taught method, and the one that students and teachers seem to prefer, and yet it has two major disadvantages. The first disadvantage is that it tells you little or nothing about systems which have a solution, but not a single unique solution. The second is that the inverse method is more computationally complex, that is, it takes more operations for the solution than the alternative RREF method, and the difference grows as problems reach higher orders of magnitude. For the problems that are generally assigned at the high school level, the difference in computability presents no real problem, but the difference in the range of applicable questions can be very significant in a students understanding of general systems of three equations. The first obvious case is three planes intersecting in a single point that is the most familiar to students. In addition to the Inverse method shown above, a second matrix method using the augmented matrix to represent the system will also solve this system. This method takes a matrix that combines the coefficient matrix with the constant matrix and then uses the same row operations that students learned when they solved systems by elimination to produce an augmented matrix with the solution easily apparent. Here is 1 1 2 9 2 3 1 2 the augmented matrix for the system, 1 3 1 2 , and the RREF matrix of the same 1 0 0 2 0 1 0 1 system 0 0 1 3 . In contrast with the Inverse method that will only work if the three planes intersect in a single point, the RREF form will allow us to work with systems which do not even have the same number of equations as unknowns. This is the type of situation created when we try to find the line of intersection of two planes. RREF for two planes We will use the equations 2x + 3y – 3z = 14 and –3x + y + 10z = -32. When we write an augmented matrix for the system of only two equations we get a 2x4 matrix, 2 3 3 14 3 1 10 32 .
  • 3. 1 0 3 10 When we reduce this to the RREF we get 0 1 1 2 . Now how do we interpret this result? If we convert the RREF of the augmented matrix back to a system of equations we get x - 3z = 10 and y + z = -2 . We notice that both equations contain a z variable, it might occur to us to ask, “What happens if we substitute different values in for z?”. For example, if we try z=0 we note that from the first equation we get x=10 and from the second we get y=-2. What does this tell us about the point (10, -2, 0). If we check it against the two original equations we notice that the point makes both equations true, 2(10) + 3(-2) – 3(0) = 14 and –3(10) + (-2) + 10(0) = -32. So the point (10, -2, 0) is on both planes and therefore must lie on the line that is their intersection. Can we find more points? What happens if we try z=1 or z=2 or other values. Using z=1 we get x – 3(1) = 10 which simplifies to x=13 ; and y +(1) = -2 which simplifies to y=-3. Checking the point (13, -3, 1) we see that it also makes both equations true, and so it must also be on the line of intersection. Writing the parametric equation of a line in three space So now we have two points on the line of intersection; (10,-2, 0) and (13, -3, 1). How can we describe the line? One way is to write a formula for all the points so that someone could find as many values of (x,y,z) as they wish. We do this with parametric equations. A parametric equation is an equation that explains the values of one set of variables (in this case x, y, and z) in terms of another “parameter” which we will call t. We will define the line in terms of one point, and instructions to get from one point to another; sort of a three-space equivalent of slope. When we worked with slope in a plane we had to find the change in x and the change in y, but now in three space we need a change in z also. If we look at our two known points, we can see that from the first we found, (10,-2, 0), to the second, (13, -3, 1), the x-value increases 3, the y-value decreases 1, and the z value increased 1. Let’s record those as a ordered triple, but to keep it separate from our points we will use brackets to enclose the changes; like this [3, -1, 1] . We can even use this to find more points. If we add [3, -1, 1] to the last point we found (13, -3, 1) we get (16, -4, 2); and we know it is on both planes because it makes both the original equations true (Remember? They were 2x + 3y – 3z = 14 and –3x + y + 10z = -32) . Of course we do not have to add integer multiples of t, and if we allow t to be ANY real value, then we can write a general expression for all the points on the line of intersection in the form (x, y, z) = (10, -2, 0) + t [3, -1, 1] . [some texts will write this as a vector form (x, y, z) = (10+3t, -2 – t, t ) ]. If we return to examine the RREF form of the augmented matrix we wonder if the 1 0 3 10 direction vector [3, -1, 1] is in anyway obvious from the reduced matrix 0 1 1 2 . We are tantalized by the appearance of –3 and 1 in the Z column, and the 10, -2 in the
  • 4. constants column. Could we have looked at this reduced form and gone directly to the equation of the line? Perhaps a second example will help. For the second two planes we pick { x+y + 5z = 8 and 2x + y + 8z = 13 }. Our 1 0 3 5 reduced row echelon form looks like 0 1 2 3 . Is it possible that our line of intersection is as simple as (x, y, z) = (5,3,0) +t [-3, -2, 1] (clever folks are already thinking we could write this last as [3, 2, -1] since t goes through all negative and positive values). Will the points generated lie on both planes. (5, 3, 0) is almost a trivial to check, and if we check (2, 1, 1) we see that it also is on both planes. We are now more assured that it is at least plausible that the RREF matrix makes the intersection line simple to obtain. A second consistent solution to three planes Now let’s add to our system and make a system of three equations; {2x + 3y – 3z = 14 , –3x + y + 10z = -32, x + 7y + 4z = -4}. If we try to solve this system by the inverse method we get the dreaded “Singular Mat” error on the calculator and all we can determine is that there is NOT a single unique solution. If we use the RREF we get something that should remind us of our previous example, and for good reason. Because I chose the third line to be a linear combination of the first two, the three planes all share a common line of intersection, the line (x, y, z) = (10, -2, 0) + t [3, -1, 1] as shown by the reduced form: 1 0 3 10 0 1 1 2 0 0 0 0 The third row gives us an obviously true statement that reflects that the third equation, in essence, added no new information to the system. This “row of zeros” at the bottom is the key to the student that the system had three equations but the intersection would be completely determined by any two of them. When three planes intersect in space, there are five basic configurations that can take place. I ask students to visualize and describe the five situations that can exist prior to discussion of the method of finding the solutions. In most years they come up with all five configurations and names for them. Here is a list of the five as my students tend to describe them. The two consistent systems are three planes intersecting in a single point, and three planes intersecting in a single line (the book binding model – the planes are pages in a book and the common line is the binding). The three configurations with no common points of intersection are three parallel planes, two parallel planes cut by a transverse plane (the H configuration) forming two parallel lines, and three planes intersecting in mutual pairs to form three parallel lines (the delta configuration). The first and the second are often easy to recognize from the
  • 5. equations since the parallels are usually recognizable, but the third is difficult to identify without reducing. Three configurations w/o a common solution If we look at the three inconsistent systems possible with three planes, the more obvious cases may lead us to more understanding of the less obvious cases. First I want to look at three parallel planes, x + 2y + 3z = 1, x+ 2y + 3z = 5, and x + 2y + 3z = 10. The reduced RREF augmented matrix looks like this: 1 2 3 0 0 0 0 1 0 0 0 0 The first row looks like it is directly related to the coefficients of x, y, and z in each equation, but the 0 in the constant term may seem perplexing. I think of this information as a direction vector [1,2,3] that is perpendicular to the three parallel planes. The bottom line of zeros reminds us that the last equation added no new information about the solution set. But what are we to make of the equation for the second row, 0x + 0y + 0z = 1. I tell students that this is the signal that there is NO common point of intersection. In essence, we have an intersection when 0=1, and that is never true. Now we examine a system with two of the same parallels and a third plane not parallel to them, the H configuration, { x + 2y + 3z = 1, x+ 2y + 3z = 5, 2x – y + z = 1}. 1 0 1 0 0 1 1 0 The reduced matrix looks like 0 0 0 1 . How can we interpret this. The bottom row is our old insolvable friend 0x +0y + 0z = 1, reminding us that there can be no common point on the three planes (since two of them are parallel). The upper two rows look like the rows when we had a line of intersection except that both constant terms equal zero. Does this tell us anything about the two lines of intersection formed by the plane cutting through the two parallel planes. Perhaps we can find out more if we find the two intersections one at a time. If we reduce the two equations x + 2y + 3z = 1, 2x – y + z = 1 0 1 .6 1, our reduced matrix looks like this, 0 1 1 .2 . This gives a line (x, y, z) = (.6, .2, 0) + t [-1, -1, 1] . If we do the intersection with the second parallel plane we get (x, y, z) = (1.4, 1.8, 0) + t [-1, -1, 1]. It seems that our original reduced system was flashing the direction vector part of the two parallel lines created by the three planes in the third column. For our final case, we pick the inconsistent situation which is most difficult to distinguish from the consistent cases, the delta configuration in which three planes intersect in mutual pairs to form three parallel lines. An example is the three planes defined by { x + y + 7z = 5, x – y – z = 3, and 2x – y + 2z = 4} .
  • 6. 1 0 3 0 0 1 4 0 The reduced form looks like this, 0 0 0 1 and we are now becoming accustom to the 0001 on the bottom reminding us there is no common point for the three planes. And a quick inspection of the three planes assures us that no two of them are parallel, so the only possible case is the “delta formation” and three parallel lines. What are we to make of the two upper rows. Our experience now leads us to think that [3,4,-1] will be the direction vector for all three lines. We can verify our supposition by taking the vectors in pairs and reducing the two-equation systems to find the actual line of intersection, but as is the fashion in mathematical writing, I leave that final task as an exercise for the reader.