471:  Discontinuities of the First and Second Kind

•Definitions

•Definition:  (right-hand and left-hand limits, Rudin's definition)

Let f be defined on (a,b) ⊂ R^1.  For a <= x < b, f(x+) = q if and only if f(t _ n) -> q as n -> ∞, for all sequences {t _ n} in (x.b) such that t _ n -> x.  We call f(x+) the right-hand limit of f at x.   Similarly, for a < x <= b, f(x-) = q if and only if f(t _ n) -> q as n -> ∞, for all sequences {t _ n} in (a,x) such that t _ n -> x.  We call f(x-) the left-hand limit of f at x.   

•Definition:  (right-hand and left-hand limits, ∈-δ definition)

Let f : (a,b) ⊂ R^1-> Y, where Y is a metric space.  The right-hand limit of f at x=a is defined as follows.  lim _ (x -> a^+) f(x) = q if and only if given ∈ > 0, there exists a δ > 0 such that d _ Y(f(x), q) < ∈, whenever a < x < a + δ.  The left-hand limit of f at x=b is defined as follows.  lim _ (x -> b^-) f(x) = q if and only if given ∈ > 0, there exists a δ > 0 such that d _ Y(f(x), q) < ∈, whenever b - δ < x < b.

•Note:  lim _ (x -> a) f(x) exists if and only if lim _ (x -> a^+) f(x) = lim _ (x -> a^-) f(x).

•Definition:  (types of discontinuities)

Let f be defined on (a,b) ⊂ R^1, except possibly at x ∈ (a,b).  If f is discontinuous at x and f(x+), f(x-) exist, then we say f has a simple discontinuity (discontinuity of the first kind) at x.  Otherwise, we say f has a discontinuity of the second kind) at x.

•Example 1:  f(x) = {1, if x ∈ ÷´          0, if x ∈ ~ ÷´

g11 = ListPlot[Table[{x, 1}, {x, -1, 1, .05}], PlotStyle -> PointSize[0.02], Frame -> True] ;

g12 = ListPlot[Table[{x, 0}, {x, -1, 1, 1/(10 * Sqrt[2])}], PlotStyle -> PointSize[0.02], Frame -> True] ;

Show[g11, g12] ;

[Graphics:HTMLFiles/index_23.gif]

f(x+) and f(x-) do not exist for any x ∈ R^1, since for any sequence of rational numbers {t _ n} such that t _ n -> x, f(t _ n) -> 1and for any sequence of irrational numbers {t _ n} such that t _ n -> x, f(t _ n) -> 0.  .·. f has a discontinuity of the second kind at any real number x.

•Example 2:  f(x) = {x, if x ∈ ÷´          0, if x ∈ ~ ÷´

g21 = ListPlot[Table[{x, x}, {x, -1, 1, .05}], PlotStyle -> PointSize[0.02], Frame -> True] ;

g22 = ListPlot[Table[{x, 0}, {x, -1, 1, 1/(10 * Sqrt[2])}], PlotStyle -> PointSize[0.02], Frame -> True] ;

Show[g21, g22] ;

[Graphics:HTMLFiles/index_35.gif]

f(x+) and f(x-) do not exist for any x ∈ R^1\{0}, since for any sequence of rational numbers {t _ n} such that t _ n -> x, f(t _ n) -> xand for any sequence of irrational numbers {t _ n} such that t _ n -> x, f(t _ n) -> 0.  .·. f has a discontinuity of the second kind at any real number x != 0.  Note that f is continuous at x = 0.

•Example 3:  f(x) = {x + 2, if - 3 < x < -2          -x - 2, if - 2 <= x < 0            x + 2, if 0 <= x < 1

f[x_] := x + 2 /; -3 < x < -2

f[x_] := -x - 2 /; -2 <= x < 0

f[x_] := x + 2 /; 0 <= x < 1

Plot[f[x], {x, -3, 1}, Frame -> True] ;

[Graphics:HTMLFiles/index_48.gif]

f is continuous at any x in the interval (-3,1), except at x=0.  f(0+) =2 and f(0-) = -2, so f has a discontinuity of the first kind at x = 0.

•Example 4:  f(x) = {     1          sin(-), if x != 0,              x             0, if x = 0.

Plot[Sin[1/x], {x, -1/(π), 1/(π)}, Frame -> True] ;

[Graphics:HTMLFiles/index_51.gif]

f(0+) is undefined, since as x -> 0 +, for all n ∈ ÷½^+, on (1/(2 (n + 1) π), 1/(2 nπ)) this function takes on all values of one period of the sine function. Similarly, f(0-) is undefined.  .·. f has a discontinuity of the second kind at x = 0.  For all other x - values, this function is continuous.  Note that f is not uniformly continuous on (0,∞), as given δ > 0, there exists an integer n > 0 such that (1/(2 (n + 1) π), 1/(2 nπ)) ⊂ (0,δ).

•Example 5:  f(x) = {sin x         -----, if x != 0           x            1, if x = 0

Plot[Sin[x]/x, {x, -3 π, 3 π}, Frame -> True] ;

[Graphics:HTMLFiles/index_60.gif]

Since f(0+) = f(0-) = 1, this function is continuous at x = 0.  f is continuous at all x - values.  Note that without the definition of this function being 1 at x = 0, f would have a discontinuity of the first kind at x = 0.  (We say f(x) = (sin x)/xhas a removable discontinuity at x = 0.)

•Example 6:  f(x) = ((x - 1) | x - 2 |)/(x^2 - 3 x + 2) = ((x - 1) | x - 2 |)/((x - 1) (x - 2))

Plot[(x - 1) * Abs[x - 2]/(x^2 - 3 x + 2), {x, -2, 3}, Frame -> True] ;

[Graphics:HTMLFiles/index_64.gif]

f has a removable discontinuity at x = 1.  The simple discontinuity at x = 2 cannot be removed.

•Example 7:  f(x) = {          1         x, if x = -, n ∈ ÷½ \ {0}                   n            0, otherwise

g71 = ListPlot[Table[{1/x, 1/x}, {x, -10, 10, 1}], PlotStyle -> PointSize[0.02], Frame -> True] ;

[Graphics:HTMLFiles/index_67.gif]

f has a simple discontinuity at x = 1/n for any n ∈ Z\{0}, since f(1/n +) = f(1/n -) = 0.  Note that f is continuous at x = 0, even though you need to "pick up your pencil" arbitrarily close to  the origin in order to draw the graph.  This is an example where the intuitive idea of continuity would fail to show f is continuous at x = 0!!

•Example 8:  f(x) = 1/x or f(x) = 1/x^2

Plot[1/x, {x, -2, 2}, Frame -> True] ;

[Graphics:HTMLFiles/index_72.gif]

Plot[1/x^2, {x, -2, 2}, Frame -> True, PlotRange -> {-50, 50}] ;

[Graphics:HTMLFiles/index_74.gif]

Each of these functions is continuous at all x - values except at x = 0.  At x = 0 these functions have a discontinuity of the second kind.  (In Calculus I, we'd say that as x -> 0^+, 1/x -> + ∞, as x -> 0^-, 1/x -> -∞, as x -> 0^+,1/x^2 -> + ∞, and as x -> 0^-,1/x^2 -> + ∞.  See Rudin, pp. 97 - 98 for a discussion of infinite limits and limits at infinity.)


Converted by Mathematica  (December 1, 2003)