📐 Mathematics — Class XI · Calculus

Limits and Derivatives

The foundation of calculus — understanding change through limits and rates of change

📖 Chapter 12 ⏱ ~70 min read 🏷 Calculus

In this chapter

  1. Intuitive Idea of Derivatives
  2. Limits
  3. Algebra of Limits
  4. Limits of Trigonometric Functions
  5. Derivatives
  6. Algebra of Derivatives
  7. Summary

12.1 Intuitive Idea of Derivatives

"With the Calculus as a key, Mathematics can be successfully applied to the explanation of the course of Nature." — Whitehead

Calculus is the mathematics of change. It helps us understand how things change — velocity, growth, rates, slopes. The derivative is the heart of calculus: it tells us the instantaneous rate of change of a function.

The Velocity Problem

Imagine a ball dropped from a cliff. Its distance is s = 4.9t² meters after t seconds. How fast is it moving at t = 2 seconds?

📐 Average vs Instantaneous Velocity

Average velocity = distance ÷ time (over an interval)
Instantaneous velocity = velocity at an exact moment

As we make the time interval smaller and smaller, the average velocity approaches the instantaneous velocity. This is the limiting process!

💡 The Key Insight

At t = 2 seconds, the velocity is approximately 19.6 m/s.
We find this by computing average velocities over smaller and smaller intervals around t = 2, and seeing what value they approach.

Average velocity approaching instantaneous velocity
Figure 12.1 — As time intervals shrink, average velocity approaches instantaneous velocity

12.2 Limits

A limit is the value a function approaches as the input approaches a certain point. It's the foundation of calculus.

💡 What is a Limit?

If f(x) gets closer and closer to L as x approaches a, we write:

lim(x→a) f(x) = L

"The limit of f(x) as x approaches a equals L"

Left-Hand and Right-Hand Limits

👈

Left-Hand Limit

lim(x→a⁻) f(x) — what f(x) approaches as x comes from the LEFT side

👉

Right-Hand Limit

lim(x→a⁺) f(x) — what f(x) approaches as x comes from the RIGHT side

⚠️ When Does a Limit Exist?

The limit exists only if the left-hand limit equals the right-hand limit:

lim(x→a⁻) f(x) = lim(x→a⁺) f(x) = L

If they're different, the limit does NOT exist!

Important: Limit ≠ Function Value

💡 Key Distinction

The limit lim(x→a) f(x) describes what f(x) approaches, not what f(a) actually equals.

They can be different! Example: f(x) = (x²-4)/(x-2) is undefined at x=2, but lim(x→2) f(x) = 4.

Visual explanation of limits
Figure 12.2 — Limit: what the function approaches, not necessarily what it equals

12.3 Algebra of Limits

Limits follow algebraic rules that make calculations much easier:

📐 Limit Laws

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

Sum: lim[f(x) + g(x)] = L + M
Difference: lim[f(x) - g(x)] = L - M
Product: lim[f(x) · g(x)] = L · M
Quotient: lim[f(x)/g(x)] = L/M (if M ≠ 0)
Constant: lim[k · f(x)] = k · L

Standard Limits

📐 Important Standard Limits

Polynomial: lim(x→a) xⁿ = aⁿ
Rational: lim(x→a) [f(x)/g(x)] = f(a)/g(a) if g(a) ≠ 0

Special limit:
lim(x→a) (xⁿ - aⁿ)/(x - a) = n·aⁿ⁻¹

Example: Rational Function

📐 Find lim(x→2) (x²-4)/(x-2)

Direct substitution gives 0/0 (indeterminate).

Factor: (x²-4) = (x-2)(x+2)
Cancel: (x-2)(x+2)/(x-2) = x+2

Now: lim(x→2) (x+2) = 4 ✓

12.4 Limits of Trigonometric Functions

Two crucial limits for trigonometric functions:

📐 The Two Most Important Trig Limits

lim(x→0) sin(x)/x = 1
lim(x→0) (1 - cos x)/x = 0

These are fundamental! Many trig limits are solved by reducing to these forms.

The Sandwich Theorem

📐 Squeeze Theorem

If f(x) ≤ g(x) ≤ h(x) near a, and lim f(x) = lim h(x) = L, then:

lim g(x) = L

If g(x) is "squeezed" between f(x) and h(x), and both approach L, then g(x) must also approach L.

Example: Finding Trig Limits

📐 lim(x→0) sin(4x)/sin(2x)

Rewrite: [sin(4x)/4x] × [2x/sin(2x)] × (4x/2x)

= 1 × 1 × 2 = 2

Using lim(u→0) sin(u)/u = 1

12.5 Derivatives

The derivative measures the instantaneous rate of change of a function. Geometrically, it's the slope of the tangent line at a point.

📐 Definition of Derivative

f'(x) = lim(h→0) [f(x+h) - f(x)] / h

This is the first principle of derivatives — the fundamental definition from which all rules are derived.

📐 Derivative at a Point

f'(a) = lim(h→0) [f(a+h) - f(a)] / h

This gives the slope of the tangent line to y = f(x) at x = a.

Geometric Interpretation

📐 Derivative = Slope of Tangent

The derivative f'(a) equals the slope of the line tangent to the curve at point (a, f(a)).

• Positive derivative → function increasing
• Negative derivative → function decreasing
• Zero derivative → horizontal tangent (potential max/min)

Derivative as slope of tangent line
Figure 12.3 — Derivative at point a = slope of tangent line at that point

12.6 Algebra of Derivatives

Instead of using the limit definition every time, we have rules that make differentiation easy:

Basic Rules

📐 Derivative Rules

Constant: d/dx [c] = 0
Power: d/dx [xⁿ] = nxⁿ⁻¹
Constant multiple: d/dx [cf(x)] = c·f'(x)
Sum/Difference: d/dx [f(x) ± g(x)] = f'(x) ± g'(x)

Product and Quotient Rules

📐 Product Rule (Leibniz)

d/dx [f(x)·g(x)] = f'(x)·g(x) + f(x)·g'(x)

Memory: "derivative of first × second + first × derivative of second"

📐 Quotient Rule

d/dx [f(x)/g(x)] = [f'(x)·g(x) - f(x)·g'(x)] / [g(x)]²

Memory: "low d-high minus high d-low, over low squared"

Derivatives of Trig Functions

FunctionDerivative
sin xcos x
cos x-sin x
tan xsec²x
cot x-cosec²x
sec xsec x · tan x
cosec x-cosec x · cot x

Examples

📐 Derivative of x²

d/dx(x²) = 2x²⁻¹ = 2x ✓

📐 Derivative of sin x (from first principle)

f'(x) = lim(h→0) [sin(x+h) - sin x] / h
= lim(h→0) [2cos(x+h/2)sin(h/2)] / h
= cos x · lim(h→0) sin(h/2)/(h/2)
= cos x · 1 = cos x

Table of common derivatives
Figure 12.4 — Common derivatives: the essential toolkit for calculus

12.7 Summary

✅ Key Takeaways

Limit: lim(x→a) f(x) = L means f(x) approaches L as x approaches a.

Left/Right Limits: Must be equal for the limit to exist.

Limit Laws: Sum, difference, product, quotient rules for limits.

Key Trig Limits: lim sin(x)/x = 1, lim (1-cos x)/x = 0

Derivative: f'(x) = lim(h→0) [f(x+h) - f(x)] / h

Geometric meaning: Derivative = slope of tangent line

Power rule: d/dx[xⁿ] = nxⁿ⁻¹

Product rule: (fg)' = f'g + fg'

Quotient rule: (f/g)' = (f'g - fg') / g²

Trig derivatives: d/dx(sin x) = cos x, d/dx(cos x) = -sin x

Ch 11 — 3D Geometry Ch 13 — Mathematical Reasoning