📘 Introduction
In mathematics, a limit helps us understand how a function behaves as the input approaches a particular value. It is a fundamental concept in calculus and plays a crucial role in understanding continuity, derivatives, and integrals.
📐 Definition of a Limit
The limit of a function f(x) as x approaches the value a is written as:
\begin{array}{l} \mathbf{\lim_{x \to a} f(x) = L} \end{array}
This means that as x gets closer to a, the function f(x) approaches the value L.
🔍How to Find the Limit of a Function
Consider a function f(x) and a constant ‘a’:
- We examine values of x that are close to, but not equal to, ‘a’.
- We observe the corresponding values of f(x) as x approaches ‘a’.
- If f(x) consistently gets closer to a specific value A as x gets closer to ‘a’, we say that A is the limit of f(x) as x approaches ‘a’.
Methods to Find The Limit of a Function
Various methods to find the Limit of a Function are explained below :
Using Table Method :
Using a table to find the limit of a function involves approximating the value of the function as the input approaches a particular point.
Example: Find the limit of f(x) = 1/x as x approaches 0.
Function: f(x) = 1/x
Limit Point: a = 0
x | f(x) |
---|---|
-0.1 | -10 |
-0.01 | -100 |
0.01 | 100 |
0.1 | 10 |
- Since f(x) approaches −∞ from the left and +∞ from the right, the limit limx→01/x does not exist.
Direct Substitution
If substituting x=a into the function yields a finite result, the limit is simply the value of the function at that point:.
Example: Find limx→2 (x2 + 3x – 1)
Solution:
Simply substitute x = 2
= (2)2 + 3(2) – 1
= 4 + 6 – 1
= 9
Therefore, limx→2 (x2 + 3x – 1) = 9
Factoring
When direct substitution gives an indeterminate form like 0/0, use factoring the numerator and/or denominator.
Example: Find limx→3 (x2 – 9)/(x – 3)
Solution:
Factor numerator:
(x + 3)(x – 3) / (x – 3) = x + 3
Cancel common factors and substituting x=3 into the function yields a finite result
lim(x→3) (x + 3) = 6
Rationalization
For limits involving square roots, try rationalizing the numerator or denominator.
Example: Find limx→4 (√x – 2)/(x – 4)
Solution:
Multiply by conjugate:
(√x – 2)(√x + 2) / (x – 4)(√x + 2)
Simplify:
(x – 4) / ((x – 4)(√x + 2))
Cancel common factors, we get :
1 / (√x + 2)
Now substitute x = 4
limx→4 1/(√x + 2) = 1 / (√4 + 2) = 1/4
Using Special Limit Rules
Some limits have known values or can be evaluated using special rules.
limx→∞(1/x) | 0 |
limx→∞(1 + 1/x)x | e |
limx→0sin(x)/x | 1 |
limx→0[1 − cos(x)]/x2 | 1/2 |
L’Hôpital’s Rule
If you encounter an indeterminate form like 0/0 or ∞/∞, you can use L’Hôpital’s Rule. If we have an indeterminate form 0/0 or ∞/∞ all we need to do is differentiate the numerator and differentiate the denominator and then take the limit
Example: Find limx→0(1 – cos x)/x2.
Solution:
Apply L’Hôpital’s Rule twice:
First application:
lim(x→0) (sin x) / (2x)
Second application:
lim(x→0) (cos x) / 2 = 1/2
Squeeze Theorem
If a function is bounded between two functions with the same limit, it must have that limit too.
Example: Find limx→0 x2 sin(1/x)
Solution:
-|x2| ≤ x2 sin(1/x) ≤ |x2|
limx→0 -|x2| = lim(x→0) |x2| = 0
Therefore, limx→0 x2 sin(1/x) = 0
Limits at Infinity
For limits as x approaches infinity, divide both numerator and denominator by the highest power of x in the denominator.
Example: Find limx→∞ (3x2 + 2x – 1)/(x2 + 5)
Solution:
Divide by x2: limx→∞(3 + 2/x – 1/x2) / (1 + 5/x2)
As x approaches infinity, 1/x and 1/x2 approach 0
Therefore, the limit is 3/1 = 3
Piecewise Functions
For piecewise functions, evaluate the limit using the relevant piece of the function.
Example: Find limx→0 f(x), where f(x)={x2 sin(1/x),if x≠0,0,if x=0f(x)={x2 sin(1/x),0,if x=0,if x=0
Solution:
We’ve already shown that lim(x→0) x2 sin(1/x) = 0
This matches the function value at x = 0, so the limit exists and equals 0.
💡 Important Properties of Limits
- Sum Rule
\begin{array}{l} \mathbf{\lim_{x \to a} [f(x) + g(x)] = \lim_{x \to a} f(x) + \lim_{x \to a} g(x)} \end{array}
- Product Rule
\begin{array}{l} \mathbf{\lim_{x \to a} [f(x) \cdot g(x)] = \lim_{x \to a} f(x) \cdot \lim_{x \to a} g(x)} \end{array}
- Quotient Rule : if limx→ag(x)≠0, then
\begin{array}{l} \mathbf{\lim_{x \to a} \frac{f(x)}{g(x)} = \frac{\lim_{x \to a} f(x)}{\lim_{x \to a} g(x)}} \end{array}
Solved Examples: Limit of a Function
Example 1: Find limx→2 x2 + 3x – 1.
Solution:
This function is continuous at x = 2, so we can directly substitute x = 2 into the function.
limx→2 (x2 + 3x – 1) = 22 + 3(2) – 1 = 4 + 6 – 1 = 9
Therefore, limx→2 (x2 + 3x – 1) = 9
Example 2: Find limx→3 (x2 – 9)/(x – 3)
Solution:
Direct substitution leads to 0/0, which is indeterminate form.
We need to factor the numerator.
limx→3 (x2 – 9)/(x – 3) = limx→3 [(x+3)(x-3)]/(x – 3)
(x-3) terms cancel out:
limx→3 (x2 – 9)/(x – 3) = limx→3 x + 3 = 3 + 3 = 6
Therefore, limx→3 (x2 – 9)/(x – 3) = 6
Example 3: Find limx→4(√x – 2)/(x – 4)
Solution:
Direct substitution leads to 0/0. We’ll rationalize the numerator.
Multiply numerator and denominator by (√x + 2):
limx→4[(√x – 2)(√x + 2)] / [(x – 4)(√x + 2)]
Simplify the numerator:
limx→4(x – 4) / [(x – 4)(√x + 2)]
Cancel (x – 4):
limx→4 1 / (√x + 2)
Now we can substitute x = 4:
= 1 / (√4 + 2) = 1/4
Therefore, limx→4 (√x – 2) / (x – 4) = 1/4
Example 4: Find limx→0 (sin x)/x
Solution:
Direct substitution leads to 0/0. We can apply L’Hôpital’s Rule.
L’Hôpital’s Rule states that for 0/0 or ∞/∞ forms, we can differentiate the numerator and denominator separately.
limx→0 (sin x) / x = limx→0(d/dx sin x)/(d/dx x)
= limx→0 cos x / 1
Now we can substitute x = 0:
= cos 0 / 1 = 1
Therefore, limx→0 (sin x) / x = 1
Example 5: Find limx→∞ (3x2 + 2x – 1) / (x2 + 5)
Solution:
For limits at infinity, divide both numerator and denominator by the highest power of x in the denominator (x^2 in this case).
limx→∞(3x2/x2 + 2x/x2 – 1/x2) / (x2/x2 + 5/x2)
Simplify:
limx→∞(3 + 2/x – 1/x2) / (1 + 5/x2)
As x approaches infinity, 1/x and 1/x2 approach 0:
= 3 / 1 = 3
Therefore, limx→∞ (3x2 + 2x – 1) / (x2 + 5) = 3
Practice Questions
1. Find limx→3 (x2 – 9) / (x – 3)
2. Find limx→0 (tan x) / x
3. Find limx→∞ (2x3 – x2 + 5x – 3) / (x3 + 2x – 1)
4. Find limx→2 (x3 – 8) / (x2 – 4)
5. Find limx→0 (1 – cos 2x)/x2
6. Find limx→∞ (x2 + 3x + 2)/(2x2 – x + 1)
7. Find limx→1 (x4 – 1) / (x2 – 1)
8. Find limx→0 (sin 3x) / (2x)
9. Find limx→∞(3x) / (x!)
10. Find limx→0 [ln(1 + x)]/x
FAQs
What is the formula for finding the limit of a function?
Here is a statement about limits: “The limit of a function f(x) as x approaches (x-value) is exactly equal to (y-value). We call it limxâ(x-value). Write f( x)=(y-value). For example, limxâ5(x2â2)=23.
How do you determine if the limit of a function exists?
If both limits are defined for a function at a particular x-value c, and these values coincide, then the limit exists and is equal to the value of the one-sided limit. If the values of the one-sided limits do not coincide, then the two-sided limit does not exist.
What are the basic rules of limits?
The limit of a difference is equal to the difference of the limits. The limit of a constant times a function is equal to the constant times the limit of the function. The limit of a product is equal to the product of the limits. The limit of a quotient is equal to the quotient of the limits.
What are the formula of limits?
Limit formula: – Let y = f(x) be a function of x. If at some point x = a f(x) takes on an indefinite form, then we can consider the value of the function very close to a. If these values tend to a particular unique number in the same way that x tends to a, then the resulting unique number is called the limit of f(x) at x = a.
📥 Download PDF
Students preparing for CBSE Board & JEE Mains/Advanced can download the full PDF from ANAND CLASSES for detailed explanations and solved problems.