Take f[x] = Sin[x]/e^(x/100). Find a good global scale picture of the graph of f[x] and explain why it looks the way it does.

Answer:

Clear[f];
f[x_]= Sin[x]/E^(x/100)
[Graphics:LimitsBasicsgr2.gif][Graphics:LimitsBasicsgr16.gif]

Now plot f[x] over several, increasingly larger ranges for x values:

Plot[f[x],{x,-10,10}, PlotRange->All]
[Graphics:LimitsBasicsgr2.gif][Graphics:LimitsBasicsgr17.gif]
[Graphics:LimitsBasicsgr2.gif][Graphics:LimitsBasicsgr18.gif]

Plot[f[x],{x,-60,-40}, PlotRange->All]
[Graphics:LimitsBasicsgr2.gif][Graphics:LimitsBasicsgr19.gif]
[Graphics:LimitsBasicsgr2.gif][Graphics:LimitsBasicsgr20.gif]

Plot[f[x],{x,-500,500}, PlotRange->All]
[Graphics:LimitsBasicsgr2.gif][Graphics:LimitsBasicsgr21.gif]
[Graphics:LimitsBasicsgr2.gif][Graphics:LimitsBasicsgr22.gif]

In this problem, the bumps in f[x] seem to be increasing in size as
x -> -infinity. This is not a surprise---as x -> -infinity, the term in the demominator, e^(x/100) goes to 0. As a result, overall the size of f[x] is increasing.
What happens as x -> infinity is quite different. In this problem it appears that we have y=0 as a horizontal asymptote as x -> infinity. Let's make a few more plots, concentrating on what's happening for
x > 0:

Plot[f[x],{x,0,10}, PlotRange->All]
[Graphics:LimitsBasicsgr2.gif][Graphics:LimitsBasicsgr23.gif]
[Graphics:LimitsBasicsgr2.gif][Graphics:LimitsBasicsgr24.gif]

Plot[f[x],{x,0,100}, PlotRange->All]
[Graphics:LimitsBasicsgr2.gif][Graphics:LimitsBasicsgr25.gif]
[Graphics:LimitsBasicsgr2.gif][Graphics:LimitsBasicsgr26.gif]

Plot[f[x],{x,0,500}, PlotRange->All]
[Graphics:LimitsBasicsgr2.gif][Graphics:LimitsBasicsgr27.gif]
[Graphics:LimitsBasicsgr2.gif][Graphics:LimitsBasicsgr28.gif]

The fact that [Graphics:LimitsBasicsgr29.gif] f[x] = 0 is much clearer in these plots. This means that the line y = 0 is a horizontal asymptote for the right side of the graph. Notice that the function's graph crosses this asymptote many times. What matters is that for large values of x, f(x) gets arbitrarily close to 0.
Also note that since [Graphics:LimitsBasicsgr30.gif] f[x] does not exist, this is an example of a function with a one-sided horizontal asymptote.