Student[MultivariateCalculus]
GetDimension
determine whether a Line, plane, or point object is in two- or three-dimensional space
Calling Sequence
Parameters
Description
Examples
Compatibility
GetDimension(pl)
pl
-
Line, Plane, list ; Line or Plane defined by Student[MultivariateCalculus] or a point
The GetDimension command finds out if a line, plane or point object is in two-dimensional or three-dimensional space.
A point, by definition, has dimension zero; a line has dimension one; and a plane has dimension two. But the space in which these objects live has a different dimension (two or three, for the Student[MultivariateCalculus] package). It is this dimension that the GetDimension command returns.
with⁡StudentMultivariateCalculus:
l1≔Line⁡0,4,2,1,1,1:
GetDimension⁡l1
3
p1≔Plane⁡0,4,2,5,9,7,−1,6,3:
GetDimension⁡p1
l2≔Line⁡0,2,0,1:
GetDimension⁡l2
2
GetDimension⁡3,2,1
The Student[MultivariateCalculus][GetDimension] command was introduced in Maple 17.
For more information on Maple 17 changes, see Updates in Maple 17.
See Also
Student[MultivariateCalculus][Line]
Student[MultivariateCalculus][Plane]
Download Help Document