TI-BASIC:Param

From Learn @ Cemetech
Jump to navigationJump to search

PARAM.GIF

Command Summary

Enables parametric graphing mode.

Command Syntax

Param

Menu Location

While editing a program, press:

  1. MODE to access the mode menu.
  2. Use arrows to select Par.

Calculator Compatibility

TI-83/84/+/SE

Token Size

1 byte

The Param command enables parametric graphing mode.

Parametric mode is in many ways a generalization of function mode. Instead of writing y as a function of x, both x and y are written as a function of a parameter t (hence the name, parametric mode). You can easily see that equations in function mode are just a special case of equations in parametric mode: if you set x equal to t, then writing y=f(t) is equivalent to writing y=f(x). Of course, graphing a function this way on a calculator will be slightly slower than doing it in function mode directly, because of the overhead.

Parametric mode allows you the greatest freedom of all the possible graphing modes - nearly every curve you could encounter can be expressed in parametric form.

In mathematics, the parameter t is commonly allowed to take on all values from negative to positive infinity. However, this would be impossible to do on a calculator, since the equation would never stop graphing (unlike function mode, there's no easy way to check for which values of t the equation will go off the screen and there's no need to graph it). Instead, the calculator has window variables Tmin, Tmax, and Tstep: it will evaluate the parameter at every value from Tmin to Tmax, increasing by Tstep each time, and 'connect the dots'.

Polar mode, which you'll read about in the next section, is also a special case of parametric mode: To graph r=f(θ), you can instead graph x=f(t)cos(t) and y=f(t)sin(t), with t graphed over the same interval as θ.

Advanced Uses

The window variables that apply to parametric mode are:

  • Tmin -- Determines the minimum T-value graphed for equations.
  • Tmax -- Determines the maximum T-value graphed for equations.
  • Tstep -- Determines the difference between consecutive T-values.
  • Xmin -- Determines the minimum X-value shown on the screen.
  • Xmax -- Determines the maximum X-value shown on the screen.
  • Xscl -- Determines the horizontal space between marks on the X-axis in AxesOn mode or dots in GridOn mode.
  • Ymin -- Determines the minimum Y-value shown on the screen.
  • Ymax -- Determines the maximum Y-value shown on the screen.
  • Yscl -- Determines the vertical space between marks on the Y-axis in AxesOn mode or dots in GridOn mode.


Related Commands