← blog
calculus

What Is a Limit, Really? (And Three Ways to Find One)

April 19, 2026 · 8 min read · Calculus 1

Limits are the foundation of calculus. Before you can understand derivatives or integrals, you need to understand what it means for a function to approach a value. Here are the seven types of limit outcomes you'll run into — and three methods to actually evaluate them.

The 7 Types of Limit Outcomes

1. Finite Limit (a number)

The function values approach a specific finite value from both the left and the right. The limit exists.

2. Infinite Limit ($-\infty$ or $\infty$)

The function grows without bound as input approaches a point — usually where there is a vertical asymptote.

3. Limit Does Not Exist

The function's values do not approach a single value — it may oscillate or behave erratically around the point.

4. Approaching from Different Directions

The left-hand limit and right-hand limit are different. The function has a jump or discontinuity at that point.

5. Approaching Different Values

The limit varies depending on the path of approach — indicating oscillations or complex behavior near that point.

6. Indeterminate Form

You get something like $\frac{0}{0}$ or $\frac{\infty}{\infty}$ — more analysis is needed. Techniques like L'Hôpital's Rule or factoring can resolve these.

7. Limit at Infinity

How the function behaves as input grows very large or very small:

$$\lim_{x \to \infty} f(x) \qquad \lim_{x \to -\infty} f(x)$$

Depending on whether this is finite, infinite, or non-existent, you can determine the long-term behavior of the function.

8. Special Cases

Limits involving trigonometric, exponential, or logarithmic functions sometimes require careful analysis and specific identities.

Why Limits Matter

Limits allow us to understand and analyze the behavior of functions as they approach specific values — even when the function is not defined at that point.

Continuity. A function is continuous at a point if its limit at that point exists and equals its value there. This is essential for analyzing the smoothness of functions.

Derivatives. The derivative of a function at a point is defined using a limit. Many functions not expressible in simple algebraic terms can still have their derivatives calculated this way.

Real-world rates of change. Populations, temperatures, stock prices — limits let us model quantities that change continuously and analyze them accurately.

Three Methods for Evaluating Limits

1. Substitution Method

Simply plug in the value $x$ is approaching. If you get a number, the limit exists. If you get undefined, try another method.

$$\lim_{x \to -1} \frac{1}{x} = \frac{1}{-1} = -1 \quad \to \quad \text{limit exists}$$ $$\lim_{x \to 0} \frac{1}{x} = \text{undefined} \quad \to \quad \text{limit does not exist}$$

Why undefined? Because the left and right limits disagree:

$$\lim_{x \to 0^-} \frac{1}{x} = -\infty \qquad \text{but} \qquad \lim_{x \to 0^+} \frac{1}{x} = +\infty$$
If the limit from the left does not match the limit from the right, the limit does not exist.

2. Factoring Method

Factor out, then cancel to eliminate the problematic term.

$$\lim_{x \to 0} \frac{4x^5 - x^2}{x^2} = \lim_{x \to 0} \frac{x^2(4x^3 - 1)}{x^2}$$ $$= \lim_{x \to 0} 4x^3 - 1 = 4 \cdot 0^3 - 1 = -1 \quad \to \quad \text{limit exists}$$

3. Conjugate Method

Multiply by the conjugate (same terms, opposite sign) to eliminate a square root in the denominator.

$$\lim_{x \to 16} \frac{x - 16}{\sqrt{x} - 4} = \lim_{x \to 16} \frac{x - 16}{\sqrt{x} - 4} \cdot \frac{\sqrt{x} + 4}{\sqrt{x} + 4}$$ $$= \lim_{x \to 16} \frac{(x - 16)(\sqrt{x} + 4)}{(\sqrt{x})^2 - 4^2} = \lim_{x \to 16} (\sqrt{x} + 4)$$ $$= \sqrt{16} + 4 = 8 \quad \to \quad \text{limit exists}$$

Practice Problems

Try each one before checking the answer.

Problem 1

$$\lim_{x \to e} \ln(x) + 1$$
show answer

Substitution Method

$$\lim_{x \to e} \ln(x) + 1 = \ln(e) + 1 = 1 + 1 = 2$$

Problem 2

$$\lim_{x \to 1} \left(\frac{7x^2 - 10x + 3}{x - 1} + \frac{2 - 7x}{x + 1}\right)$$
show answer

Separate into two limits — Factoring Method + Substitution

$$\lim_{x \to 1} \frac{7x^2 - 10x + 3}{x - 1} + \lim_{x \to 1} \frac{2 - 7x}{x + 1}$$ $$= \lim_{x \to 1} \frac{(7x - 3)(x - 1)}{x - 1} + \left(-\frac{5}{2}\right)$$ $$= 7(1) - 3 - \frac{5}{2} = \frac{3}{2}$$

Problem 3

$$\lim_{x \to 9} \frac{3}{\sqrt{x} + 3}$$
show answer

Substitution Method — always try substitution first, even when you see a square root!

$$\lim_{x \to 9} \frac{3}{\sqrt{x} + 3} = \frac{3}{\sqrt{9} + 3} = \frac{3}{3 + 3} = \frac{1}{2}$$
← all posts see Calculus 1 notes →