C Defn
C Defn
• Table of Contents
Some Pointers. Should you get lost, press the ‘Home’ key to return
to this menu. Click on Main Menu to return to the main menu, or on
tutorials to return to the main tutorial menu.
• The Integers
Definition 1.2. The set of all integers, denoted by Z, is defined to
be
Z = { . . . , −4, −3, −2, −1, 0, 1, 2, 3, 4, . . . }.
2. Intervals
• Various Intervals
Definition 2.1. An interval I is called an open interval if I does not
contain its endpoints.
Examples. There are two types: Intervals of finite length, and inter-
vals of infinite length.
Intervals of Finite Length: Let a < b be real numbers. Then
I = ( a, b ) = { x ∈ R | a < x < b }
is an open interval.
Intervals of Infinite Length: Let a ∈ R. Then each of the following are
open intervals.
( −∞, +∞ ) = { x ∈ R | −∞ < x < +∞ } = R
( −∞, a ) = { x ∈ R | −∞ < x < a }
( a, +∞ ) = { x ∈ R | a < x < +∞ }
Section 2: Intervals
• Partitioning an Interval
Definition 2.3. Let [ a, b ] be a closed interval. A partition, P , of
[ a, b ] is any finite subset of [ a, b ] that contains the numbers a and b.
Or, more symbolically, a finite set
P = { x0 , x1 , x2 , . . . , xn } (1)
is a partition of [ a, b ] provided P ⊆ [ a, b ] and a, b ∈ [ a, b ]. (Here,
n ∈ N.)
Definition Notes: The labeling used in (1) is the standard way of
symbolically writing the elements of a partition.
The elements of a partition are called partition points or nodes.
When we write the elements of a partition it is customary to
have them labeled such that
x0 < x1 < x2 < · · · < xn .
With the convention established in the previous point, and the
fact that a, b ∈ [ a, b ], it follows that x0 = a and xn = b. Thus,
a = x0 < x1 < x2 < · · · < xn = b
Section 2: Intervals
x0 x1 x2 x3 · · · xi−1 xi · · · · · · · · · xn
Partitioning Scheme
You can see from the chart above how the nodes partition, or subdi-
vide the interval into pieces.
If P is a partition as defined in (1), then the P also subdivides
the interval into subintervals. These subintervals, for example, are
used as a basis for the construction of the Definite Integral. The nodes
of the partition P are used as endpoints of these subintervals. Below is
a listing of the subinterval as well as the usual scheme for numbering
them.
First Sub-interval : I1 = [ x0 , x1 ].
Second Sub-interval : I2 = [ x1 , x2 ].
Third Sub-interval : I3 = [ x2 , x3 ].
Fourth Sub-interval : I4 = [ x3 , x4 ].
.. .. .. .. .. .. ..
. . . . . . .
Section 2: Intervals
3. Functions
• Bounded Functions
Definition 3.1. Let y = f (x) be a real-valued function having do-
main Dom(f ) ⊆ R. Let A ⊆ Dom(f ). We say that the function f is
bounded over the set A, if there is some number M > 0 such that
|f (x)| ≤ M for all x ∈ A. (1)
In this case, we say that M is a bound for f over A and that f is
bounded by M over the set A.
Definition Notes: Algebraically, the absolute inequality in (1) is equiv-
alent to
−M ≤ f (x) ≤ M for all x ∈ A.
In terms of geometry, if we were to draw the graph of f over
the set A, and draw the horizontal lines y = −M and y = M , then
the graph of f over the set A does not go below the horizontal line
y = −M and does not go above the horizontal line y = M .
Section 3: Functions