In this worksheet, we will examine the behavior of
different general exponential functions by comparing their graphs.
HOW TO USE THIS WORKSHEET:
As you read, graph the curves on your own graphing calculator or software.
Try changing:
the function (especially the base),
the x_min,
and the x_max.
Ask:
How did the range (the maximum and minimum y-values) change?
How did the shape of the curve change?
What does that tell me about the function?
This is the best way to get a correct gut feeling for general exponential functions!
HOW TO READ THIS WORKSHEET:
This was written using Sage (a free computer algebra software system).
To plot the function y=f(x) on the domain (x_min, x_max), we will write
plot(f(x),x_min,x_max)
To plot the graphs of f(x) and g(x) on the same axes, we will write
plot(f(x),x_min,x_max,linestyle='dashed')+plot(g(x),x_min,x_max,linestyle='solid')
We can tell the two functions apart because the graph of y=f(x) will be a dashed curve,
and the graph of y=g(x) will be a solid curve.