Basic Limit Laws π
Introduction: Why limit laws matter
students, in Real Analysis, sequences are a central way to study how values behave over time. A sequence is just an ordered list of numbers, like $a_1, a_2, a_3, \dots$. One of the biggest questions is whether the terms get closer and closer to a single number. If they do, we say the sequence converges.
Basic limit laws tell us how limits behave when we combine sequences. They work like rules for arithmetic with limits. Instead of checking every term one by one, we can often use these laws to find the limit of a complicated sequence from simpler ones. This is especially useful when sequences are built from sums, products, quotients, or powers. β¨
Learning goals
By the end of this lesson, students, you should be able to:
- explain the main ideas and terminology behind basic limit laws,
- apply limit laws to compute limits of sequences,
- connect these laws to convergence in Real Analysis,
- recognize how these rules fit into the bigger study of sequences and limits,
- use examples to justify conclusions about sequence limits.
What a sequence limit means
A sequence $\{a_n\}$ converges to a number $L$ if the terms get arbitrarily close to $L$ as $n$ becomes large. In symbols, we write $\lim_{n\to\infty} a_n = L$.
This means that for large $n$, the values of $a_n$ are near $L$, even if the earlier terms are not. For example, the sequence $a_n = \frac{1}{n}$ has terms $1, \frac{1}{2}, \frac{1}{3}, \dots$, and these get closer and closer to $0$. So $\lim_{n\to\infty} \frac{1}{n} = 0$.
Limit laws are about what happens when sequences already have limits. If $\lim_{n\to\infty} a_n = A$ and $\lim_{n\to\infty} b_n = B$, then we can predict the limit of expressions like $a_n+b_n$, $a_n b_n$, and $\frac{a_n}{b_n}$, provided the denominator does not approach $0$.
The main basic limit laws
Suppose $\lim_{n\to\infty} a_n = A$ and $\lim_{n\to\infty} b_n = B$, and let $c$ be a constant. Then the following laws hold.
1. Sum law
$$\lim_{n\to\infty} (a_n+b_n)=A+B$$
If two sequences each settle down to limits, then their sum settles down to the sum of those limits. For example, if $a_n=\frac{1}{n}$ and $b_n=3$, then
$$\lim_{n\to\infty}\left(\frac{1}{n}+3\right)=0+3=3.$$
2. Difference law
$$\lim_{n\to\infty} (a_n-b_n)=A-B$$
This works just like subtraction with ordinary numbers. If $a_n\to 5$ and $b_n\to 2$, then $a_n-b_n\to 3$.
3. Constant multiple law
$$\lim_{n\to\infty} (c\,a_n)=cA$$
A constant can be pulled out of a limit. If $a_n\to 4$, then $7a_n\to 28$.
4. Product law
$$\lim_{n\to\infty} (a_n b_n)=AB$$
If each sequence has a limit, the product has the product of the limits. For example, if $a_n=\frac{n+1}{n}$ and $b_n=\frac{n-1}{n}$, then $a_n\to 1$ and $b_n\to 1$, so
$$\lim_{n\to\infty} a_n b_n = 1\cdot 1 = 1.$$
5. Quotient law
$$\lim_{n\to\infty} \frac{a_n}{b_n}=\frac{A}{B}$$
provided $B\neq 0$.
The denominator must not approach $0$, because division by numbers close to $0$ can become unstable. For example, if $a_n\to 6$ and $b_n\to 2$, then
$$\lim_{n\to\infty} \frac{a_n}{b_n}=\frac{6}{2}=3.$$
6. Power law
$$\lim_{n\to\infty} (a_n)^k=A^k$$
for any positive integer $k$.
This says that raising a convergent sequence to a fixed power preserves the limit. If $a_n\to -2$, then $(a_n)^3\to (-2)^3=-8$.
7. Root law
If $k$ is a positive integer and $a_n\ge 0$ for all large $n$, then
$$\lim_{n\to\infty} \sqrt[k]{a_n}=\sqrt[k]{A}$$
when the root is defined.
This is important for sequences involving square roots and other radicals. For example, if $a_n\to 9$ and $a_n\ge 0$, then $\sqrt{a_n}\to 3$.
Why these laws are true in real analysis
These laws are not just algebra tricks. They come from the precise definition of convergence. If sequences get close to their limits, then combining them by addition, multiplication, or division behaves predictably. The formal proofs use the definition of convergence and inequalities to show that the combined sequence also gets close to the expected number.
For students, it helps to think of convergence like a target on a number line π―. If $a_n$ is near $A$ and $b_n$ is near $B$, then $a_n+b_n$ should be near $A+B$. The same idea works for multiplication and other operations, though the proof can be more technical.
These laws are also part of a larger pattern in Real Analysis: if smaller pieces behave nicely, then many larger expressions behave nicely too. This makes them powerful tools for studying sequences, series, and later even functions.
Example 1: A rational sequence
Consider
$$a_n=\frac{3n^2+2n-1}{n^2-5}.$$
To find the limit, divide the numerator and denominator by $n^2$:
$$a_n=\frac{3+\frac{2}{n}-\frac{1}{n^2}}{1-\frac{5}{n^2}}.$$
Now use limit laws and the facts that $\lim_{n\to\infty} \frac{1}{n}=0$ and $\lim_{n\to\infty} \frac{1}{n^2}=0$.
Then
$$\lim_{n\to\infty} a_n=\frac{3+0-0}{1-0}=3.$$
This example shows how limit laws reduce a messy expression to a simple answer.
Example 2: Combining multiple laws
Suppose
$$a_n\to 2 \quad \text{and} \quad b_n\to -1.$$
Find
$$\lim_{n\to\infty} \frac{a_n^2+4b_n}{3a_n-b_n}.$$
First apply the power law to get $a_n^2\to 2^2=4$. Then use the sum law:
$$a_n^2+4b_n \to 4+4(-1)=0.$$
For the denominator, use the constant multiple and difference laws:
$$3a_n-b_n \to 3(2)-(-1)=7.$$
Since the denominator limit is not zero, the quotient law gives
$$\lim_{n\to\infty} \frac{a_n^2+4b_n}{3a_n-b_n}=\frac{0}{7}=0.$$
This is a perfect example of how several limit laws can work together. π§
Important cautions and common mistakes
A common mistake is assuming every expression with limits is automatically allowed. The quotient law only works if the denominator limit is not $0$. For example, if $b_n\to 0$, then $\frac{1}{b_n}$ may not converge at all.
Another mistake is trying to use limit laws when one of the sequences does not converge. If $a_n$ has no limit, then the laws above cannot be applied in the usual way. Limit laws require the inputs to have limits first.
Also, be careful not to confuse convergence with βgetting smaller.β A sequence can converge to a number other than $0$. For example, $a_n=5+\frac{1}{n}$ converges to $5$, not $0$.
How basic limit laws fit into Sequences and Limits
Basic limit laws are one of the first major tools in the study of sequences. They help us compute limits efficiently, but they also help us prove more advanced ideas later.
For example, when studying monotone convergence, we often need to know that expressions built from convergent sequences still converge. Limit laws let us analyze those expressions clearly. They also appear in proofs about boundedness, recursive sequences, and limit comparisons.
In short, basic limit laws are like the grammar of sequence limits. They tell us how limits interact, so we can reason with complex sequences in a reliable way.
Conclusion
students, basic limit laws are essential because they let us calculate and reason about limits in a clean, structured way. If two sequences converge, then sums, differences, products, quotients, powers, and roots often have limits that follow directly from the limits of the pieces. These laws make Real Analysis more manageable by turning complicated expressions into simpler ones.
Understanding these rules is not just about memorizing formulas. It is about learning how convergence behaves under algebraic operations. That skill will keep showing up throughout sequences, series, and later topics in analysis. π
Study Notes
- A sequence $\{a_n\}$ converges to $L$ if $\lim_{n\to\infty} a_n=L$.
- If $\lim_{n\to\infty} a_n=A$ and $\lim_{n\to\infty} b_n=B$, then:
- $\lim_{n\to\infty}(a_n+b_n)=A+B$
- $\lim_{n\to\infty}(a_n-b_n)=A-B$
- $\lim_{n\to\infty}(c\,a_n)=cA$
- $\lim_{n\to\infty}(a_n b_n)=AB$
- $\lim_{n\to\infty}\frac{a_n}{b_n}=\frac{A}{B}$ if $B\neq 0$
- $\lim_{n\to\infty}(a_n)^k=A^k$ for positive integers $k$
- $\lim_{n\to\infty}\sqrt[k]{a_n}=\sqrt[k]{A}$ when the root is defined
- Limit laws help simplify complicated sequences into easier pieces.
- The quotient law requires the denominator limit to be nonzero.
- If a sequence does not converge, limit laws cannot be used in the usual way.
- Basic limit laws are a foundation for later topics like monotone convergence and series.
