|
Calling Sequence
|
|
Plane(eqn, opts)
Plane(expr, opts)
Plane(p1, p2, p3, opts)
Plane(p1, v1, opts)
Plane(v1, p1, opts)
Plane(p1, p2, v1, opts)
Plane(p1, v1, p2, opts)
Plane(v1, p1, p2, opts)
Plane(p1, v1, v2, opts)
Plane(v1, p1, v2, opts)
Plane(v1, v2, p1, opts)
Plane(p1, l1, opts)
Plane(l1, p1, opts)
Plane(l1, l2, opts)
Plane(P, p1, opts)
Plane(P, opts)
|
|
Parameters
|
|
eqn
|
-
|
Linear equation defining the plane
|
expr
|
-
|
Expression linear in the coordinate variables, equated to 0 to define the plane
|
p1, p2, p3
|
-
|
Points on the plane, expressed as lists of coordinates
|
v1, v2
|
-
|
Vector used to define the plane; either a normal Vector, or directions lying within the plane - see below for details
|
l1, l2
|
-
|
Line objects used to define the plane; either in the plane or parallel to the plane - see below for details
|
P
|
-
|
Plane object defined earlier; the plane to be defined will be parallel (or equal) to this plane
|
opts
|
-
|
(optional) equation defining the variables to be used in the representation
|
|
|
|
|
Options
|
|
•
|
The opts arguments can contain the following option.
|
|
The variables to be used in the plane's equation. This is used in interpreting the equation and expression forms of the call to the Plane function, and when obtaining equations for the plane. The default is .
|
•
|
id = positive integer, name, or string
|
|
Planes display as , where is an identification for the plane that is by default a positive integer assigned in order of creation. The id option can be used to force the plane to be given a different identification. It is an error to use the same identification for two different planes that are both in use.
|
|
|
Description
|
|
•
|
The Plane command creates a plane object that can be operated on or graphed.
|
•
|
Planes can be specified in the following ways:
|
–
|
A linear equation eqn, such as .
|
–
|
A linear expression expr of the form , which is set equal to 0 to obtain the plane.
|
–
|
Three points p1, p2, p3, such as , , , lying in the plane. The points must not lie on a line.
|
–
|
A point p1, such as , and a Vector v1, such as . The plane contains p1 and has v1 as its normal. The arguments can also be specified in the other order.
|
–
|
Two points, p1 and p2, such as and , lying in the plane, and a Vector v1, such as , the direction of which lies within the plane. The arguments can be specified in any order. The Vector v1 cannot be a multiple of the Vector from p1 to p2.
|
–
|
A point p1, such as , and two Vectors v1 and v2, such as and . The directions of both Vectors lie within the plane. The arguments can be specified in any order. The Vectors v1 and v2 must be linearly independent.
|
–
|
A point p1, such as , lying in the plane, and a line l1 defined earlier, say , also lying in the plane. The arguments can be specified in any order. The line l1 cannot contain the point p1.
|
–
|
Two Line objects l1 and l2 defined earlier, say and . If the lines intersect or are parallel, then this defines the plane containing both lines. If the lines are skew, then it defines the plane containing l1 and parallel to l2. If the lines are equal, an error is returned.
|
–
|
A Plane object P, defined earlier, such as , and a point p1, such as . This defines the plane through p1 that is parallel to P.
|
–
|
A plane object P, defined earlier, such as . (This can be useful to change the names of the coordinate variables and the parameter, using the options explained below.)
|
•
|
It is possible to specify two mathematically identical planes using different Plane commands.
|
•
|
The coefficients and coordinates defining a Plane can contain parameters. For example, we can define a plane containing the points and , and the direction , with the command .
|
|
These parameters must be different from the coordinate variables (set by the variables option explained below; by default ).
|
•
|
The following is a list of commands available to Plane
|
•
|
In addition, there is some special behavior for the eval command when applied to a Plane. If the plane contains parameters, as in the example above, then one can use eval to substitute values for those parameters. For example, we might evaluate the plane given above at to obtain the line through the points and and containing the direction .
|
|
Additionally, one can rename the coordinate variables using eval: if we evaluate the plane given above at , then we obtain an identical plane but with the coordinate variables , , and .
|
|
|
Examples
|
|
>
|
|
>
|
|
>
|
|
>
|
|
>
|
|
Note how planes through are displayed using their automatically assigned identification, but has the explicitly specified identification A:
| (5) |
>
|
|
>
|
|
| (7) |
>
|
|
>
|
|
>
|
|
>
|
|
>
|
|
>
|
|
>
|
|
>
|
|
>
|
|
eval can be used to make substitutions for the parameters in the plane object.
>
|
|
>
|
|
Query the properties of individual planes.
AreParallel, Intersects, Distance, and GetIntersection find the relationships between two planes.
>
|
|
>
|
|
The intersection between and is the line .
>
|
|
|
|
Compatibility
|
|
•
|
The Student[MultivariateCalculus][Plane] command was introduced in Maple 17.
|
|
|
|