Graphing
normally involves the Y= screen for entering
formulas,
the WINDOW screen for determining which part of
the graph to display, and
the GRAPH screen to see the result.
You can also enter Graph x^2 or Graph f(x) (if you've defined the function f) on the command line of the HOME screen. The formula does not appear on the Y= screen, and the GRAPH screen uses the latest WINDOW settings.
What kind of thing you can graph depends on the graph MODE.
FUNCTION lets you draw graphs with equations like y = x2.
PARAMETRIC lets you graph curves defined with parametric equations, like x = t2, y = t3.
POLAR lets you draw graphs in polar coordinates, with equations like r = sin(theta).
SEQUENCE
lets you plot points in a sequence, such as 10, 11, 11.1, 11.11, 11.111,
....
The sequence
needs a formula like un = n2 or a recursive formula
like u1 = 10, un+1 = un + 101-n.
3D lets you
graph surfaces with equations like z = x2 - y2. It's
pretty slow and somewhat limited.
You can
also graph implicitly defined functions (like x2 + y2
= 4) in 3D graph mode. It's pretty slow and somewhat limited.
DIFF EQUATIONS displays graphical solutions to differential equations, like y' = 2t -3y2.