How to Find the Intersection Between Two Planes
        If you have two different planes, they will either be parallel or intersect along a line. The parametric equation for the line can be found by using a                                                                                                                                                                                                                                          point on the line and a directional vector. You can find the directional vector  by taking the cross product of the normal vectors to the planes: 
 This recipe will help you find the line: 
                                                                                                                                                                                                                                                       The Line of Intersection Between Two Planes 
      -     1.  
 -          Find         the         directional         vector         by         taking         the         cross         product         of                   and         ,         such         that         .         If         the         directional         vector         is         ,         that         means         the         two         planes         are         parallel.         Then         they         won’t         have         a         line         of         intersection,         and         you         do         not         have         to         do         any         more         calculations.         
 -      2.  
 -          To         find         a         point         on         the         line,         you         set         one         of         the         coordinates         in         the         equations         of         both         planes         equal         to         zero         and         solve         the         system         of         equations         you         end         up         with.         Note!       If         you         set                  and         the         line         of         intersection         is         perpendicular         to         the         -axis,         no         points         on         the         line         have         .         This         applies         to         the         -         and         -axes         as         well.         If         this         happens,         you         just         set         one         of         the         other         variables         equal         to         ,         and         solve         the         new         system         of         equations.         If         that         does         not         work         either,         you         try         to         set         the         last         coordinate         equal         to         .         
 -      3.  
 -          Now,         use         the         point         and         the         directional         vector         you’ve         found         to         make         a         parametric         equation         for         the         line.         
 
                                                                                                                                                                                                                                                  You have two planes 
 Find the line of intersection between the planes. 
                                                                                          
                                                                                                                                                                                                                                                   -      1.  
 - Take the cross product of the normal vectors to find the directional vector of the         line of intersection:                  
 -      2.  
 - Set          and solve the system of equations to find the point         .         
                                         You already know          = ,         so .          -      3.  
 - That means the line of intersection is  
                      |           |