Admin 08 Jun 2026 00:14

 

Limits Cheat Sheet

What is a Limit?

A limit describes the behavior of a function as its input approaches a particular value. It allows us to analyze functions at points where they might be undefined or to determine their long-term behavior.

The limit of f(x) as x approaches a is written as:

limxa f(x) = L

This means that as x values get arbitrarily close to a (but not equal to a), the corresponding values of f(x) get arbitrarily close to L.

Basic Limit Properties

If limxa f(x) = L and limxa g(x) = M, then:

  • Sum Rule: limxa [f(x) + g(x)] = L + M
  • Difference Rule: limxa [f(x) - g(x)] = L - M
  • Product Rule: limxa [f(x) g(x)] = L M
  • Quotient Rule: limxa [f(x) / g(x)] = L / M (provided M 0)
  • Constant Multiple Rule: limxa [cf(x)] = cL for any constant c
  • Power Rule: limxa [f(x)]n = Ln for any positive integer n
  • Root Rule: limxa n[f(x)] = nL for any odd integer n (and even n when L > 0)

Direct Substitution

For many functions, particularly polynomials, rational functions, trigonometric functions, exponential functions, and logarithmic functions, you can evaluate the limit by direct substitution:

limxa f(x) = f(a)

Direct substitution works when the function is continuous at point a.

Techniques for Evaluating Limits

When direct substitution results in an indeterminate form like 0/0, /, or 0, other techniques must be used:

1. Factoring

Factor and simplify the expression when possible to eliminate the indeterminate form.

limx3 (x - 9)/(x - 3) = limx3 (x-3)(x+3)/(x-3) = limx3 (x+3) = 6

2. Conjugate Multiplication

Multiply by the conjugate to eliminate square roots.

limx0 ((4+x) - 2)/x = limx0 ((4+x) - 2)((4+x) + 2)/[x((4+x) + 2)]
= limx0 (4+x - 4)/[x((4+x) + 2)]
= limx0 x/[x((4+x) + 2)]
= limx0 1/((4+x) + 2)
= 1/(4 + 2) = 1/4

3. Special Limits

Use known special limits:

limx0 (sin x)/x = 1
limx0 (1 - cos x)/x = 0
limx0 (ex - 1)/x = 1
limx0 (1 + x)1/x = e
limx (1 + 1/x)x = e

4. L'Hpital's Rule

When direct substitution yields 0/0 or /, if the functions are differentiable:

limxa f(x)/g(x) = limxa f'(x)/g'(x)
limx0 (ex - 1 - x)/x = limx0 (ex - 1)/(2x) = limx0 ex/2 = 1/2

5. Squeeze Theorem

If g(x) f(x) h(x) for all x near a (except possibly at a) and limxa g(x) = limxa h(x) = L, then limxa f(x) = L.

To find limx0 x2(sin(1/x)):
Since -1 sin(1/x) 1, we have -x2 x2(sin(1/x)) x2
As limx0 -x2 = 0 and limx0 x2 = 0, by the Squeeze Theorem, limx0 x2(sin(1/x)) = 0

One-Sided Limits

Sometimes it's important to consider the direction from which x approaches a:

  • Left-hand limit: limxa f(x) = L means x approaches a from values less than a
  • Right-hand limit: limxa f(x) = L means x approaches a from values greater than a

For the two-sided limit limxa f(x) to exist and equal L, both one-sided limits must exist and equal L.

For the piecewise function f(x) = {x if x < 2; x+1 if x 2}:
limx2 f(x) = limx2 x = 4
limx2 f(x) = limx2 (x+1) = 3
Since these are not equal, limx2 f(x) does not exist.

Infinite Limits

Infinite limits indicate that a function grows without bound as x approaches a specific value:

limxa f(x) = means f(x) increases without bound as x approaches a
limxa f(x) = - means f(x) decreases without bound as x approaches a

Vertical asymptotes often occur at points where limits are infinite.

limx0 1/x = (because as x approaches 0, 1/x becomes arbitrarily large)

Limits at Infinity

Limits at infinity describe the behavior of a function as x grows arbitrarily large:

  • Rational Functions: For limx p(x)/q(x) where p and q are polynomials:
    • If degree(p) < degree(q), the limit is 0
    • If degree(p) = degree(q), the limit is the ratio of leading coefficients
    • If degree(p) > degree(q), the limit is , -, or does not exist
  • Exponential Functions:
    • limx ekx = for k > 0
    • limx ekx = 0 for k < 0
  • Logarithmic Functions:
    • limx ln(x) =
    • limx0 ln(x) = -
limx (3x+5x-7)/(2x-3) = 3/2 (the ratio of the leading coefficients)
limx (x+1)/(x+2) = 0 (because the denominator has a higher degree)

Continuity

A function f is continuous at a number a if:

  1. f(a) is defined
  2. limxa f(x) exists
  3. limxa f(x) = f(a)

Common continuous functions:

  • Polynomials are continuous everywhere
  • Rational functions are continuous on their domains
  • Trig, exponential, and log functions are continuous on their domains

The Intermediate Value Theorem: If f is continuous on [a,b] and N is any number between f(a) and f(b), then there exists at least one c in (a,b) such that f(c) = N.

Common Limit Formulas

Limit Expression Value
limx0 (sin x)/x 1
limx0 (tan x)/x 1
limx0 (1 - cos x)/x 0
limx0 (sin(ax))/x a
limx (1 + 1/x)x e
limx (1 + a/x)x ea
limx0 (ex - 1)/x 1
limx0 (ln(1+x))/x 1
limx0 (ax - 1)/x ln(a)

Tips for Evaluating Limits

  1. Always try direct substitution first
  2. If you get 0/0, try factoring or rationalizing
  3. For limits involving trigonometric functions, use trigonometric identities and special limits
  4. For limits involving exponentials or logarithms, consider using properties of these functions
  5. If L'Hpital's Rule applies, check if differentiating the numerator and denominator simplifies the expression
  6. For limits at infinity of rational functions, compare the degrees of the numerator and denominator
  7. Graph the function to understand its behavior near the limit point
  8. Check for one-sided limits when the two-sided limit doesn't exist
Remember: Practice is key to mastering limits. Work through many examples across different types of functions to build your intuition and problem-solving skills.

Reference Files For Limits Cheat Sheet
Screenshoot
File Name
limits_cheat_sheet.pdf

File Size
0.49 MB

File Type
PDF

File Site
Description
This file is just a reference file for Limits Cheat Sheet. Does not guarantee that the specific things you want are included in it.
Direct download (wait 10 seconds)

Limits Cheat Sheet and Reference File Download Link


admin
Admin
2026-06-08 00:14:18

- **Sheet 1**: "harga Satuan Upah Dan Bahan" - **Sheet 2**: "pagar Beton" - **Sheet 3**:...


admin
Admin
2026-05-30 02:15:06

Forex Cheat Sheet and Reference File Download Link


admin
Admin
2026-06-06 20:58:17

Therapy Interventions Cheat Sheet and Reference File Download Link


admin
Admin
2026-06-07 04:34:10

Developmental Testing Age Calculation Cheat Sheet and Reference File Download Link


admin
Admin
2026-06-08 21:00:26