geometry
parabola
define a parabola
Calling Sequence
Parameters
Description
Examples
parabola(p, [A, B, C, E, F], n )
parabola(p, ['focus'=fou, 'vertex'=ver], n )
parabola(p, ['directrix'=dir, 'focus'=fou], n )
parabola(p, eqn, n )
p
-
the name of the parabola
A, B, C, E, F
five distinct points
'focus'=fou
fou is the point which is the focus of the parabola
'vertex'=ver
ver is the point which is the vertex of the parabola
'directrix'=dir
dir is the line which is the directrix of the parabola
eqn
the algebraic representation of the parabola (i.e., a polynomial or an equation)
n
(optional) list of two names representing the names of the horizontal-axis and vertical-axis
A parabola is the set of all points in the plane that are equidistant from a given line and a given point not on the line. A parabola is symmetric about the line that passes through the focus at right angles to the directrix. This line, called the axis of the parabola, meets the parabola at a point called the vertex.
The given line is called the directrix of the parabola, and the given point the focus.
A parabola p can be defined as follows:
from five distinct points. The input is a list of five points. Note that a set of five distinct points does not necessarily define a parabola.
from the focus and vertex. The input is a list of the form ['focus'=fou, 'vertex'=ver] where fou and ver are explained above.
from the directrix and focus. The input is a list of the form ['directrix'=dir, 'focus'= fou] where dir and fou are explained above.
from its internal representation eqn. The input is an equation or a polynomial. If the optional argument n is not given, then:
if the two environment variables _EnvHorizontalName and _EnvVerticalName are assigned two names, these two names will be used as the names of the horizontal-axis and vertical-axis respectively.
if not, Maple will prompt for input of the names of the axes.
To access the information relating to a parabola p, use the following function calls:
form(p)
returns the form of the geometric object (i.e., parabola2d if p is a parabola).
vertex(p)
returns the name of the vertex of p.
focus(p)
returns the name of the focus of p.
directrix(p)
returns the name of the directrix of p.
Equation(p)
returns the equation that represents the parabola p.
HorizontalName(p)
returns the name of the horizontal-axis; or FAIL if the axis is not assigned a name.
VerticalName(p)
returns the name of the vertical-axis; or FAIL if the axis is not assigned a name.
detail(p)
returns a detailed description of the parabola p.
The command with(geometry,parabola) allows the use of the abbreviated form of this command.
with⁡geometry:
define parabola p1 from its algebraic representation:
parabola⁡p1,y2+12⁢x−6⁢y+33=0,x,y:
vertex⁡p1,coordinates⁡vertex⁡p1
vertex_p1,−2,3
focus⁡p1,coordinates⁡focus⁡p1
focus_p1,−5,3
directrix⁡p1,Equation⁡directrix⁡p1
directrix_p1,−1+x=0
define parabola p2 from its focus and vertex
parabola⁡p2,vertex=vertex⁡p1,focus=focus⁡p1,x,y:
Equation⁡p2
9⁢y2+108⁢x−54⁢y+297=0
define parabola p3 from its directrix and its focus
parabola⁡p3,focus=focus⁡p1,directrix=directrix⁡p1,x,y:
detail⁡p3
name of the objectp3form of the objectparabola2dvertex−2,3focus−5,3directrix−1+x=0equation of the parabolay2+12⁢x−6⁢y+33=0
define parabola p4 from five distinct points
point⁡A,−6,3+4⁢sqrt⁡3,point⁡B,−5,9,point⁡C,−4,3+2⁢sqrt⁡6,point⁡E,−3,3+2⁢sqrt⁡3,point⁡F,−2,3:
parabola⁡p4,A,B,C,E,F,x,y:
eqn≔Equation⁡p4
eqn≔144⁢3⁢2−144⁢2−336⁢3+432⁢y2+1728⁢3⁢2−1728⁢2−4032⁢3+5184⁢x+−864⁢3⁢2+864⁢2+2016⁢3−2592⁢y+4752⁢3⁢2−4752⁢2−11088⁢3+14256=0
lhs_eqn≔op⁡1,eqn:
simplify⁡lhs_eqnlcoeff⁡lhs_eqn,y=op⁡2,eqn
y2+12⁢x−6⁢y+33=0
radnormal⁡coordinates⁡vertex⁡p4
−2,3
radnormal⁡coordinates⁡focus⁡p4
−5,3
See Also
geometry/objects
geometry[conic]
geometry[draw]
geometry[HorizontalName]
geometry[VerticalName]
Download Help Document