Skip to content
MathAnvil
§ Calculus

Limits

§ Calculus

Limits

LK20.R1LK20.S13 min read

A limit describes the value that a function approaches as its input variable gets arbitrarily close to a specific number. Limits form the foundation of calculus by making precise the intuitive notion of "approaching" a value without necessarily reaching it. The formal definition uses epsilon-delta notation, but most elementary limit problems can be solved through direct substitution or algebraic manipulation.

§ 01

Why it matters

Limits provide the mathematical foundation for derivatives and integrals, which model rates of change and accumulated quantities in physics, engineering, and economics. In physics, instantaneous velocity calculations require limits when time intervals approach 0. Engineers use limits to analyze circuit behavior as resistance approaches infinity or to determine structural loads at critical points. Economic models employ limits to find marginal cost and revenue functions. Limits also appear in computer graphics for smooth curve rendering and in population dynamics where growth rates approach carrying capacity. Without limits, calculus would lack the precision needed for NASA trajectory calculations, medical imaging algorithms, or financial derivatives pricing. The concept extends beyond calculus into advanced mathematics, including real analysis where limits define continuity and convergence of infinite series with applications in signal processing and quantum mechanics.

§ 02

How to solve limits

Limits

  • A limit describes the value a function approaches as x approaches a point.
  • Try direct substitution first: replace x with the target value.
  • If you get 00 (indeterminate), factor or simplify the expression and try again.
  • For polynomials and rational functions, direct substitution usually works after simplification.

Example: lim(x→2) (x² − 4)/(x − 2) = lim(x→2) (x+2) = 4.

§ 03

Worked examples

Beginner§ 01

Find lim(x→2) of (-2x + 1)

Answer: -3

  1. Use direct substitution (innsetting): replace x with the value f(2) = -2·2 + 1 Since f(x) = -2x + 1 is a polynomial, we can substitute x = 2 directly.
  2. Calculate the result lim(x→2) = -3 -2 × 2 = -4, then -4 + 1 = -3.
Easy§ 02

Find lim(x→5) of (x² − 25)/(x − 5)

Answer: 10

  1. Try direct substitution (5² − 25)/(5 − 5) = 00 We get the indeterminate form 0/0, so we need to simplify.
  2. Factor the numerator (telleren) using the difference of squares x² − 25 = (x - 5) (x + 5) x² − 25 = (x − 5)(x + 5) is a difference of squares.
  3. Cancel the common factor (forkorte) (x − 5)(x + 5) / (x − 5) = x + 5 After cancelling (x − 5), we have f(x) = x + 5.
  4. Now substitute x = 5 lim(x→5) = 5 + 5 = 10 The limit is 10.
Medium§ 03

Find lim(x→∞) of (x2 + 1) / (5 x2 + 1)

Answer: 15

  1. Identify the degrees of numerator and denominator Numerator: x2 + 1, Denominator: 5 x2 + 1 For limits at infinity, compare the leading terms of the polynomials.
  2. Compare leading terms (ledende ledd) Leading terms: 1x² / 5x² = 15 Both numerator and denominator have degree 2. The limit equals the ratio of leading coefficients: 1/5 = 1/5.
  3. State the limit lim(x→∞) = 15 The limit is 1/5.
§ 04

Common mistakes

  • A common error occurs when evaluating lim(x→2) (x²-4)/(x-2) by direct substitution, yielding 0/0, then concluding the limit doesn't exist instead of factoring to get the correct answer of 4.
  • Another mistake involves limits at infinity like lim(x→∞) (3x²+1)/(x²+5), where some incorrectly calculate 3+1/1+5 = 4/6 = 2/3 instead of comparing leading coefficients to get 3/1 = 3.
  • When solving lim(x→0) sin(x)/x, a frequent error is applying direct substitution to get 0/0 and stopping there, missing that this fundamental trigonometric limit equals 1.
§ 05

Frequently asked questions

What does it mean when a limit equals infinity?
When a limit equals infinity, the function values grow without bound as x approaches the target value. This indicates vertical asymptotic behavior rather than a finite limiting value. For example, lim(x→0) 1/x² = ∞ because the function increases indefinitely as x nears 0.
How do you handle 0/0 indeterminate forms?
The 0/0 form requires algebraic manipulation before evaluation. Factor polynomials, rationalize expressions with radicals, or use trigonometric identities to eliminate the indeterminate form. After simplification, direct substitution typically yields the limit value. L'Hôpital's rule provides an alternative method in advanced courses.
What's the difference between a limit and function value?
A function value f(a) requires the function to be defined at x = a, while lim(x→a) f(x) only requires the function to approach a value near x = a. The limit can exist even when f(a) is undefined, as in removable discontinuities where a hole appears in the graph.
Why do limits at infinity matter for rational functions?
Limits at infinity determine horizontal asymptotic behavior of rational functions. When degrees are equal, the limit equals the ratio of leading coefficients. When the numerator has higher degree, the limit is ±∞. When the denominator has higher degree, the limit is 0.
Can a function have different left and right limits?
Yes, one-sided limits can differ at points of discontinuity. For example, lim(x→0⁻) 1/x = -∞ while lim(x→0⁺) 1/x = +∞. When left and right limits differ, the two-sided limit doesn't exist. This occurs at jump discontinuities and vertical asymptotes.
§ 06

See also

§ 06

Where to next?

Prerequisites
Next up
Share this article