Chapter 1: Vectors, Lines and Planes
Section 1.7: Planes
|
Example 1.7.12
|
|
Obtain an equation for , the plane that passes through the point M:, is perpendicular to , the plane , and makes an angle of with , the plane .
|
|
|
|
Solution
|
|
|
Mathematical Solution
|
|
•
|
There are two possible planes and satisfying the conditions of the example, as illustrated in Figure 1.7.12(a).
|
•
|
The given planes and are drawn in gray and gold, respectively; point M is the black dot; and the red and green planes are and .
|
•
|
The general equation for a plane is
|
•
|
If N is a normal for , the condition that contains the point M is , where M is the position vector to M.
|
•
|
If U is the normal for , then is perpendicular to if .
|
|
>
|
use plots,Student:-LinearAlgebra in
module()
local N,N1,N2,M,R,S,P,p1,p2,q1,q2,q3,Pa,Pb,g1,g2,G;
N:=<a,b,c>:
N1:=<3,1,2>:
N2:=<4,3,-1>:
M:=<2,-1,1>:
R:=<x,y,z>:
p1:=(R-<3,5,7>).N1:
p2:=(R-<2,-1,4>).N2:
q1:=(N.M)=d:
q2:=N.N1=0:
q3:=simplify(VectorAngle(N,N2)=Pi/4):
S:=solve({q1,q2,q3},{a,b,c},Explicit):
P:=a*x+b*y+c*z=d:
Pa:=simplify(eval(P,S[1])/d):
Pb:=simplify(eval(P,S[2])/d):
g1:=implicitplot3d([Pa,Pb,p1,p2],x=-3..10,y=-5..5,z=-3..10,color=[red,green,gray,gold]):
g2:=pointplot3d(M,symbol=solidsphere,symbolsize=30,color=black):
G:=display(g1,g2,style=surface,axes=none,scaling=constrained,orientation=[-82,-82,23],lightmodel=none):
print(G);
end module:
end use:
|
|
Figure 1.7.12(a) Given planes (gray), (gold); point M (black); solution planes (red), (green)
|
|
|
|
|
|
•
|
Planes and meet at an angle of if = , where is a normal for plane .
|
•
|
These three conditions are expressed by the equations
|
•
|
The solutions of these equations are
|
and
so the two candidates for plane are defined by the equations
and
|
|
Maple Solution - Interactive
|
|
•
|
Tools≻Load Package: Student Multivariate Calculus
|
|
Loading Student:-MultivariateCalculus
|
Define the vectors N, U, and V
|
•
|
Context Panel: Assign to a Name≻N
|
|
|
•
|
Context Panel: Assign to a Name≻U
|
|
|
•
|
Context Panel: Assign to a Name≻V
|
|
|
Define the position vectors M and R
|
•
|
Context Panel: Assign to a Name≻M
|
|
|
•
|
Context Panel: Assign to a Name≻R
|
|
|
Write and solve the three equations that reflect the conditions imposed on plane
|
•
|
Write the sequence of equations and press the Enter key.
|
•
|
Context Panel: Solve≻Solve for Variables≻
|
•
|
Context Panel: Assign to a Name≻
|
|
|
Evaluate , the vector form of a plane, for each solution in
|
•
|
Expression palette: Evaluation template
Evaluate for each solution in the list
|
•
|
Context Panel: Simplify≻Simplify
|
|
|
|
|
|
|
|
Maple Solution - Coded
|
|
•
|
Install the Student MultivariateCalculus package.
|
|
|
Define the vectors N, U, V, M, and R
|
|
Solve the three equations
|
|
|
Evaluate , the general equation of a plane through M, for each solution in
|
|
|
|
|
|
|
|
|
<< Previous Example Section 1.7
Next Example >>
© Maplesoft, a division of Waterloo Maple Inc., 2025. All rights reserved. This product is protected by copyright and distributed under licenses restricting its use, copying, distribution, and decompilation.
For more information on Maplesoft products and services, visit www.maplesoft.com
|