plane - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


geom3d

  

plane

  

define a plane

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

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)

Parameters

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

Description

• 

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.

Examples

withgeom3d:

Find the equation of the plane through the origin parallel to each of the lines xy+4z=1,2x+y3z=2 andx+3=2y+1=3z+2.

Define the line xy+4z=1,2x+y3z=2

planep1,xy+4z=1,x,y,z:planep2,2x+y3z=2,x,y,z:

linel1,p1,p2:

Define the linex+3=2y+1=3z+2 

linel2,pointA,3,12,23,1,12,13:

pointo,0,0,0:

planep,o,l1,l2

p

(1)

detailp

name of the objectpform of the objectplane3dequation of the plane13x6+10y323z2=0

(2)

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

assumex1x2:

Define two distinct points

pointA,x1,y1,z1,pointB,x2,y2,z2:

midpointC,A,B:linel,A,B:

vParallelVectorl:

Define the plane which passes through the midpoint of AB and has v as its normal vector

planep,C,v

p

(3)

Equationp,x,y,z

xx2~x1~+yy2y1+zz2z1x2~x1~x1~2+x2~2y2y1y12+y22z2z1z12+z22=0

(4)

See Also

geom3d/objects

geom3d[AreCoplanar]

geom3d[AreParallel]

geom3d[ArePerpendicular]

geom3d[intersection]

geom3d[polar]