geom3d[plane] - define a plane
|
Calling Sequence
|
|
plane(p, [A, v])
plane(p, [A, dseg1])
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
|
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 seg. The plane defined is the plane that passes through A and has v 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 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 which 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
|
|
>
|
|
Find the equation of the plane through the origin parallel to each of the lines and.
Define the line
>
|
|
>
|
|
define the line
>
|
|
>
|
|
>
|
|
| (1) |
>
|
|
| (2) |
Find the equation of the plane which bisects the join of and perpendicularly make sure the two given points are distinct
>
|
|
define two distinct points
>
|
|
>
|
|
>
|
|
defind the plane which passes through the midpoint of and has as its normal vector
>
|
|
| (3) |
>
|
|
| (4) |
|
|