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

Online Help

All Products    Maple    MapleSim


geometry

  

parabola

  

define a parabola

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

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 )

Parameters

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

Description

• 

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.

Examples

withgeometry:

define parabola p1 from its algebraic representation:

parabolap1,y2+12x6y+33=0,x,y:

vertexp1,coordinatesvertexp1

vertex_p1,−2,3

(1)

focusp1,coordinatesfocusp1

focus_p1,−5,3

(2)

directrixp1,Equationdirectrixp1

directrix_p1,1+x=0

(3)

define parabola p2 from its focus and vertex

parabolap2,vertex=vertexp1,focus=focusp1,x,y:

Equationp2

9y2+108x54y+297=0

(4)

define parabola p3 from its directrix and its focus

parabolap3,focus=focusp1,directrix=directrixp1,x,y:

detailp3

name of the objectp3form of the objectparabola2dvertex−2,3focus−5,3directrix1+x=0equation of the parabolay2+12x6y+33=0

(5)

define parabola p4 from five distinct points

pointA,6,3+4sqrt3,pointB,5,9,pointC,4,3+2sqrt6,pointE,3,3+2sqrt3,pointF,2,3:

parabolap4,A,B,C,E,F,x,y:

eqnEquationp4

eqn1443214423363+432y2+1728321728240323+5184x+86432+8642+201632592y+47523247522110883+14256=0

(6)

lhs_eqnop1,eqn:

simplifylhs_eqnlcoefflhs_eqn,y=op2,eqn

y2+12x6y+33=0

(7)

radnormalcoordinatesvertexp4

−2,3

(8)

radnormalcoordinatesfocusp4

−5,3

(9)

radnormalcoordinatesfocusp4

−5,3

(10)

See Also

geometry/objects

geometry[conic]

geometry[draw]

geometry[HorizontalName]

geometry[VerticalName]