B.5) One-sided limits

The idea of a limit can be broken down into two parts to give one-sided limits, a notion used for piecewise defined functions and limits at the endpoints of the domain of a function.

If we restrict our attention to x's that are close to a and are less than a, we are looking at the limit of f[x] as x->a from below. If f[x] has a limiting value (say [Graphics:LimitsBasicsgr115.gif]) as x->a from below, we write
[Graphics:LimitsBasicsgr116.gif] f[x] = [Graphics:LimitsBasicsgr117.gif] .
This statement [Graphics:LimitsBasicsgr118.gif] f[x] = [Graphics:LimitsBasicsgr119.gif] means that for x < a, as x->a, the value of f[x] gets closer and closer to[Graphics:LimitsBasicsgr120.gif].

If we restrict our attention to x's that are close to a and are greater than a, we are looking at the limit of f[x] as x->a from above. If f[x] has a limiting value (say [Graphics:LimitsBasicsgr121.gif] ) as x->a from above, we write
[Graphics:LimitsBasicsgr122.gif] f[x] = [Graphics:LimitsBasicsgr123.gif] .
This statement[Graphics:LimitsBasicsgr124.gif] f[x] = [Graphics:LimitsBasicsgr125.gif] means that for x > a, as x->a, the value of f[x] gets closer and closer to [Graphics:LimitsBasicsgr126.gif]

Clearly, if the two-sided limit exists, say [Graphics:LimitsBasicsgr127.gif] f[x] = L, then both one-sided limits must equal L.
Likewise, if both one-sided limits have the same value (in other words, [Graphics:LimitsBasicsgr128.gif] = [Graphics:LimitsBasicsgr129.gif] = L), then the two-sided limit must also equal L.

B.5.a)

Take f[x] = { 2 x if x > 0 and -2 x if x <= 0 } .
Make a plot of f[x]. Discuss whether [Graphics:LimitsBasicsgr140.gif] f[x], [Graphics:LimitsBasicsgr141.gif] f[x], and [Graphics:LimitsBasicsgr142.gif] f[x] exist. Explain why or why not for each limit.

B.5.b)

Take f[x] = { 2 x if x > 0 and -2 x + 2 if x <= 0. }
Make a plot of f[x]. Discuss whether[Graphics:LimitsBasicsgr143.gif] f[x], [Graphics:LimitsBasicsgr144.gif] f[x], and [Graphics:LimitsBasicsgr145.gif] f[x] exist. Explain why or why not for each limit.

Answer:

Clear[f]
f[x_]:= If[x > 0, 2x, -2x+2]

Here is the plot of f[x]:

Plot[f[x],{x,-3,3}]
[Graphics:LimitsBasicsgr2.gif][Graphics:LimitsBasicsgr146.gif]
[Graphics:LimitsBasicsgr2.gif][Graphics:LimitsBasicsgr147.gif]

The graph clearly shows that if we approach x = 0 from below, the limiting value of f[x] should be 2. But if we approach x = 0 from above, the limiting value of f[x] should be 0. Since we can't decide which value should be the correct one, we say that [Graphics:LimitsBasicsgr148.gif] f[x] does not exist. Since the one-sided limits both exist, we can write:
[Graphics:LimitsBasicsgr149.gif] f[x] = 2;
[Graphics:LimitsBasicsgr150.gif] f[x] = 0;
[Graphics:LimitsBasicsgr151.gif] f[x] does not exist.
When this situation happens---the graph of f[x] approachs two distinct values as x-> a, we say the graph has a jump in it at x = a.