geom3d
plane
define a plane
Calling Sequence
Parameters
Description
Examples
plane(p, [A, v])
plane(p, [A, dseg])
plane(p, [dseg1, dseg2])
plane(p, [l1, l2])
plane(p, [A, B, C])
plane(p, [A, l1, l2])
plane(p, eqn, n)
p
-
the name of the plane
A, B, C
points
v
vector
dseg,dseg1, dseg2
directed line segments
l1, l2
lines
eqn
algebraic representation of a line (i.e., a polynomial or an equation)
n
(optional) list of three names representing the names of the axes
A plane p can be defined as follows:
from three given points A, B, and C.
from a given point A and a vector of dimension 3 v or a directed segment dseg. The plane defined is the plane that passes through A and has v or dseg as one of its normal vectors.
from two directed line segments with the same tail dseg1 and dseg2.
from two given lines l1 and l2. If l1 and l2 are parallel or intersect each other, the plane defined is the one that contains both l1 and l2. And if l1 and l2 are skew lines, p is the plane that contains l1 and is parallel to l2.
from a point A and two lines l1 and l2. The plane defined is the one that passes through A and is parallel to two lines l1 and l2.
from its algebraic representation eqn, i.e., eqn is a polynomial or an equation. In case the third optional argument is not given, if names are assigned to the three environment variables _EnvXName, _EnvYName, and _EnvZName then these three names will be used as the names of the axes. Otherwise, Maple will prompt the user to input the names of the axes.
To access the information relating to a plane p, use the following function calls:
form(p)
returns the form of the geometric object (i.e., plane3d if p is a line).
NormalVector(p)
returns a normal vector of p which is a vector perpendicular to the plane p.
Equation(p)
returns the equation that represents the plane p.
xname(p), yname(p), or zname(p)
returns the name of the x-axis, y-axis, z-axis or FAIL if the axis is not assigned to any name.
detail(l)
returns a detailed description of the plane p.
The command with(geom3d,plane) allows the use of the abbreviated form of this command.
with⁡geom3d:
Find the equation of the plane through the origin parallel to each of the lines x−y+4⁢z=1,2⁢x+y−3⁢z=2 andx+3=2⁢y+1=3⁢z+2.
Define the line x−y+4⁢z=1,2⁢x+y−3⁢z=2
plane⁡p1,x−y+4⁢z=1,x,y,z:plane⁡p2,2⁢x+y−3⁢z=2,x,y,z:
line⁡l1,p1,p2:
Define the linex+3=2⁢y+1=3⁢z+2
line⁡l2,point⁡A,−3,−12,−23,1,12,13:
point⁡o,0,0,0:
plane⁡p,o,l1,l2
detail⁡p
name of the objectpform of the objectplane3dequation of the plane13⁢x6+10⁢y3−23⁢z2=0
Find the equation of the plane which bisects the join of x1,y1,z1 and x2,y2,z2 perpendicularly make sure the two given points are distinct
assume⁡x1≠x2:
Define two distinct points
point⁡A,x1,y1,z1,point⁡B,x2,y2,z2:
midpoint⁡C,A,B:line⁡l,A,B:
v≔ParallelVector⁡l:
Define the plane which passes through the midpoint of AB and has v as its normal vector
plane⁡p,C,v
Equation⁡p,x,y,z
x⁢x2~−x1~+y⁢y2−y1+z⁢z2−z1−x2~−x1~⁢x1~2+x2~2−y2−y1⁢y12+y22−z2−z1⁢z12+z22=0
See Also
geom3d/objects
geom3d[AreCoplanar]
geom3d[AreParallel]
geom3d[ArePerpendicular]
geom3d[intersection]
geom3d[polar]
Download Help Document