10.76 min read
Limits at Infinity
A limit at infinity means approaches as grows without bound. Similarly, means grows without bound.
Common examples: (decays to zero), (grows exponentially), (ratio approaches 1 for large ).
Limits at infinity describe asymptotic behavior — what a function "looks like" for very large inputs. In machine learning, this describes how a model performs as training data grows. In algorithms, this is the basis of Big-O notation.
Formal View
Definition 10.6 — Limit at Infinity
We write if for every there exists such that . We write similarly for .
Why This Matters
Asymptotic analysis — understanding function behavior for large inputs — is fundamental to algorithm analysis and convergence proofs.
- Convergence of iterative algorithms: does as ?
- Statistical consistency: does an estimator converge to the truth as ?
- Activation functions: for the sigmoid.
Quiz
Question 1
What is ?
Question 2
does not exist.
Common Mistakes
- Treating as a number — means grows without bound, not that it equals a number called .
- Thinking means reaches zero — it only means gets arbitrarily close to zero.