Let S⊆R be a non-empty set. If there exists x∈S such that s≤x for all s∈S, then we call x the maximum of S and we write x=maxS.
Exercise 1.
Define minS.
At first glance, maxS and supS look like the same thing. However, there's a key difference: maxS has to be an element of S, but supS doesn't have to be.
Example 1.
If S=[0,1), then S has no maximum, but supS=1.
On the other hand, if S=[0,1], then maxS=supS=1.
Example 2.
(4.8) Let S and T be non-empty subsets of R such that s≤t for all s∈S and t∈T.
Observe that S is bounded above and T is bounded below.
Prove supS≤infT.
Solution.
Any element of T is an upper bound of S, and any element of S is a lower bound of T.
If t∈T, then t is an upper bound for S, so by definition, supS≤t. This means that supS is a lower bound for T, so supS≤infT.
Density of Q in R
Theorem
For any a,b∈R with a<b, there exists a rational q∈Q such that q∈(a,b).
We know that Q has gaps in it, which is why we work with R. However, the fact that Q is dense means that the gaps are very "tiny". In other words, no matter how far you zoom in, you'll always see infinitely many rational numbers.
Example 3.
(4.11) Consider a,b∈R where a<b. Show that there are infinitely many rationals between a and b.
Solution.
(Hint) You can use induction with the following statement to prove this: "there are at least n rationals in (a,b)" for all n∈N. You could also do this by contradiction—either is fine.
Sequences
Definition
A sequence is a function s:N→R, where we write sn=s(n) and {sn}n={sn∣n∈N}.
If there exists L∈R such that:
For all ε>0, there exists N∈R such that ∣sn−L∣<ε for all N>N,
we say that snconverges to L and we write n→∞lim=L. Otherwise, if no such L exists, then we say that sn is divergent.
Intuitively, the limit of a sequence is what it gets "really close to" as n "gets really big". To make this more precise, we need to quantify two things:
"really close to" (this is ε)
"gets really big" (this is N)
With this interpretation, you can read the definition like this:
If n is large enough, we can make ∣sn−L∣ as small as we want.
The definition is (somewhat) intuitive, but using the definition to prove things is generally pretty tricky.
Example 4.
(Similar to 8.1(c)) Prove n→∞lim7n−54n+3=74.
Solution.
When proving limits, we're given an ε>0 (something out of your control), and we need to find N (something you can control). The general strategy is to work backwards: start with
when n≥1. In the end, we want to make this quantity smaller than ε, so it's okay to look at bigger quantities. If we make the denominator smaller, then we get something bigger:
∣∣7(7n−5)41∣∣≤7(7n−5n)41=14n41.
If we can make 14n41<ε, then we're done. We're in good shape because we can:
14n41<ε⟺n>14ε41.
None of what I wrote above is a proof (though it almost looks like one); it's just scratch work that I used to figure out what N needs to be. Given an ε>0, our candidate for N is 14ε41, and it's now time to verify that this works. The following is the beginning of the proof of the limit:
To summarize, this is the basic strategy for proving limits through the definition:
Work backwards and use inequalities figure out a candidate for N.
Generally, you want to make the numerator bigger (in absolute value) and/or the denominator smaller (in absolute value).
Write out the proof with your candidate of N.
If you set it up right, then your proof will just look like what you wrote in step 1, but in reverse.
The definition can also be used to prove some useful facts about limits.
Proposition
Let {sn}n be a sequence. Suppose sn>0 for all n≥1 and that L=n→∞limsn exists. Then L≥0.
Proof.
Intuitively, it's obvious. However, proving it is a bit tricky since we need to use the definition of a limit. We'll do this by contradiction: assume for the sake of contradiction that L<0. We then have the following picture:
The definition of a limit tells you that for any ε>0, eventually all the points in your sequence lie in the interval (L−ε,L+ε). From the picture, you should be able to see why that's impossible: if ε is small enough, then that implies that the sequence is eventually negative, which is a contradiction. Now we need to write that down:
If ε is too large, then we won't get a contradiction. Thus, we need to be smart about how we pick it. Based on the picture, if we let ε be half the distance from L to 0, then we should be able to get a contradiction, i.e., let ε=2∣L∣=−2L>0. By definition of the limit, there exists N∈R such that if n>N, then ∣sn−L∣<ε. But this means
−ε<sn−L<ε⟹sn<L+ε=L−2L=2L<0,
which is impossible, so L≥0 to begin with.
□
Remark.
Notice that even though sn is strictly positive for all n, its limit can still be equal to 0. For example, sn=n1 has limit 0 even though all of its terms are 0.