|\^/| Maple V Release 3 (SUNY at Albany) ._|\| |/|_. Copyright (c) 1981-1994 by Waterloo Maple Software and the \ MAPLE / University of Waterloo. All rights reserved. Maple and Maple V <____ ____> are registered trademarks of Waterloo Maple Software. | Type ? for help. Warning: new definition for norm Warning: new definition for trace Error, unable to read /home2/faculty/cr569/.webmaple #
The two planes are: > P1 := x-y-z=7; P2 := x-2*y+z=1; P1 := x - y - z = 7 P2 := x - 2 y + z = 1 #The normal vectors to these planes are: >n1 := vector([1,-1,-1]); n2 := vector([1,-2,1]); n1 := [ 1, -1, -1 ] n2 := [ 1, -2, 1 ] #The angle "theta" between the planes is given by: > theta := angle(n1,n2); 1/2 1/2 theta := arccos(1/9 3 6 ) #which in degrees is approximately >evalf(convert(theta,degrees),3); 61.9 degrees #The line of intersection of the two planes is: >L := solve({P1,P2},{x,y,z}); L := {y = 2 z + 6, x = 3 z + 13, z = z} #from here we can sort out things to get the symmetric equations for L