Logo
Published on

Sequence Limits and the Squeeze Theorem

Authors
  • avatar
    Name
    Vu Hung
    Twitter

Problem Statement

Let the sequence unu_n be defined by:

un=12n3+1+22n3+2++n2n3+nu_n = \frac{1^2}{n^3 + 1} + \frac{2^2}{n^3 + 2} + \dots + \frac{n^2}{n^3 + n}

for integers n1n \ge 1. You may assume the standard result: k=1nk2=n(n+1)(2n+1)6\sum_{k=1}^n k^2 = \frac{n(n+1)(2n+1)}{6}. (Do NOT prove this).

(i) Explain why, for all integers kk such that 1kn1 \le k \le n:

k2n3+nk2n3+kk2n3+1\frac{k^2}{n^3 + n} \le \frac{k^2}{n^3 + k} \le \frac{k^2}{n^3 + 1}

(ii) Hence, evaluate limnun\lim_{n \to \infty} u_n.


Hints

  • Part (i): Consider how varying the denominator alters the overall value of a fraction. Since kk is positive, compare the sizes of n3+1n^3+1, n3+kn^3+k, and n3+nn^3+n.
  • Part (ii): Apply the summation symbol k=1n\sum_{k=1}^n across the inequality established in part (i). Factor out the denominators, substitute the given sum of squares formula, and apply the Squeeze Theorem to the outer bounds.

Solutions

  • Part (i): For 1kn1 \le k \le n, the denominators satisfy n3+1n3+kn3+nn^3 + 1 \le n^3 + k \le n^3 + n. Taking the reciprocal reverses the inequality (as all terms are positive): 1n3+n1n3+k1n3+1\frac{1}{n^3 + n} \le \frac{1}{n^3 + k} \le \frac{1}{n^3 + 1}. Multiplying through by the positive term k2k^2 yields the required result: k2n3+nk2n3+kk2n3+1\frac{k^2}{n^3 + n} \le \frac{k^2}{n^3 + k} \le \frac{k^2}{n^3 + 1}.
  • Part (ii): Summing the inequalities from k=1k=1 to nn gives: k=1nk2n3+nunk=1nk2n3+1\sum_{k=1}^n \frac{k^2}{n^3 + n} \le u_n \le \sum_{k=1}^n \frac{k^2}{n^3 + 1}. Factoring out the denominators (since they are independent of kk) yields 1n3+nk=1nk2un1n3+1k=1nk2\frac{1}{n^3 + n} \sum_{k=1}^n k^2 \le u_n \le \frac{1}{n^3 + 1} \sum_{k=1}^n k^2. Substituting the given sum formula gives n(n+1)(2n+1)6(n3+n)unn(n+1)(2n+1)6(n3+1)\frac{n(n+1)(2n+1)}{6(n^3+n)} \le u_n \le \frac{n(n+1)(2n+1)}{6(n^3+1)}. As nn \to \infty, the highest power of nn in both bounding expressions is n3n^3, leaving the ratio of the leading coefficients: 26=13\frac{2}{6} = \frac{1}{3}. Since both bounds approach 13\frac{1}{3}, by the Squeeze Theorem, limnun=13\lim_{n \to \infty} u_n = \frac{1}{3}.

Takeaways

  • Bounding Strategies: Establishing inequalities by manipulating denominators is a fundamental technique for rigorous sequence problems, particularly well-suited for Extension 2 level assessments.
  • Summation Mechanics: Recognizing that denominators independent of the summation index kk can be factored out of the sigma notation is a critical step that prevents algebraic clutter and confusion.
  • Limit Theorems: This style of question seamlessly bridges the algebraic manipulation of series with formal limit evaluation using the Squeeze Theorem.