Syntax for Functions
To graph a function, for example,
f(x) = 3x2+2x+1
, type in
3x^2+2x+1
Or, when graphing in the polar coordinate system, if the expression is represented by
r(θ) = 3θ2+2θ+1
, type in
3θ^2+2θ+1
To type θ
type ..t
(two dots followed by t
). You can also use x
for θ
. All x
's are internally replaced by θ
when graphing functions in polar coordinate system.
Syntax for Equations
To graph an equation, for example,
x3-xy+2y2 = 5x+2y+5
, simply type in the equation (using the "=" sign).
x^3-xy+2y^2 = 5x+2y+5
Syntax for Parametric Curves
To graph a parametric curve represented, for example, by a function
p(t) = [x(t), y(t)] = [sin(t), cos(t)]
for -π < t < π
or equivalently, by the equations
x(t) = sin(t)
y(t) = cos(t)
-π < t < π
type in
[sin(t),cos(t)
] dom=(-pi,pi
)
Or, when graphing in the polar coordinate system, if the expression is represented by
p(t) = [r(t), θ(t)] =
[sin(t), cos(t)
] for
-π < t <
π
or equivalently, by the equations
r(t) =
sin(t)
θ(t) =
cos(t)
-π
< t < π type in
[sin(t), cos(t)
] dom=(-pi, pi
)
Note: Using [ ] to enclose x(t),y(t)
or r(t),θ(t)
is optional.
Syntax for Points
To graph a set of points {(xi,yi): i = 1,...,n}
,
type in
x1, y1; x2, y2; ... xn, yn
Or, when graphing the points {(ri,θi): i = 1,...,n}
in the polar coordinate system, type in
r1, θ1; r2, θ2; ... rn, θn