Integration — The Reverse of Everything
Integration Asks: "What Function Did This Come From?"
If differentiation tells you the rate of change, integration tells you the original quantity. It's like knowing someone's speed at every moment and asking: where did they start?
The integral sign ∫ means "find the anti-derivative." The dx tells you the variable. The + C is the constant of integration — because the derivative of a constant is zero, we can never know the exact constant from just the derivative.
Analogy: If you know a car's speed at every moment (derivative), you can figure out where it went (integral), but you won't know exactly where it started (the + C).
The Basic Integrals — The Building Blocks
Every integration problem ultimately breaks down into these basic forms. Learn the PATTERN, not the formula.
Worked Example: Basic Integration
Find ∫ (3x² + 2x − 5) dx.
∫ 2x dx = 2·x²/2 = x²
∫ −5 dx = −5x
Integration by Substitution — The Chain Rule in Reverse
The chain rule says: d/dx f(g(x)) = f'(g(x))·g'(x). Substitution reverses this: if you spot a function AND its derivative in the integrand, substitute.
Notice: the derivative of x² is 2x, which appears right next to cos(x²). Let u = x², then du/dx = 2x, so du = 2x dx.
The integral becomes: ∫ cos(u) du = sin(u) + C = sin(x²) + C.
The pattern: Look for a function (the "inner" function) whose derivative is also present (up to a constant factor). Substitute u = inner function, replace dx with du/derivative.
Integration by Parts — The Product Rule in Reverse
The product rule: (uv)' = u'v + uv'. Rearranging: ∫ uv' dx = uv − ∫ u'v dx.
ILATE priority for choosing u:
I — Inverse trig (e.g., sin⁻¹(x))
L — Logarithmic (e.g., ln(x))
A — Algebraic (e.g., x, x²)
T — Trigonometric (e.g., sin(x), cos(x))
E — Exponential (e.g., eˣ)
Example: ∫ x·eˣ dx. u = x (algebraic), dv = eˣ dx (exponential).
du = dx, v = eˣ. Formula: uv − ∫ v du = x·eˣ − ∫ eˣ dx = x·eˣ − eˣ + C = eˣ(x − 1) + C.
The Definite Integral = The Area Under the Curve
While indefinite integration gives a family of functions, definite integration gives a NUMBER — the net area under the curve between two x-values.
The Fundamental Theorem of Calculus (FTC)
The FTC connects differentiation and integration — it says that integration (adding up slices) is the opposite of differentiation (finding slopes).
1. Find the anti-derivative F(x) of f(x).
2. Evaluate F at the upper limit b.
3. Evaluate F at the lower limit a.
4. Subtract: F(b) − F(a).
Example: ∫₀² x² dx = [x³/3]₀² = (8/3) − (0/3) = 8/3.
Properties:
• ∫ₐᵇ f(x) dx = −∫ᵇₐ f(x) dx (reversing limits flips the sign)
• ∫ₐᵇ f(x) dx + ∫ᵇᶜ f(x) dx = ∫ₐᶜ f(x) dx (splitting intervals)
• ∫ₐᵃ f(x) dx = 0 (zero-width interval)
The King's Property — ∫ₐᵇ f(x) dx = ∫ₐᵇ f(a + b − x) dx
This property is a JEE favorite because it simplifies integrals that look impossible. The idea: replace x with (a + b − x) — the integral stays the same.
Example: ∫₀^{π/2} sin(x)/(sin(x) + cos(x)) dx.
Let I = ∫₀^{π/2} sin(x)/(sin(x) + cos(x)) dx.
Using King's: I = ∫₀^{π/2} sin(π/2 − x)/(sin(π/2 − x) + cos(π/2 − x)) dx
= ∫₀^{π/2} cos(x)/(cos(x) + sin(x)) dx.
Adding: 2I = ∫₀^{π/2} (sin + cos)/(sin + cos) dx = ∫₀^{π/2} 1 dx = π/2.
Therefore: I = π/4. Magic! 🎩
Even & Odd Function Integration
For symmetric intervals [−a, a], the parity of the function simplifies things dramatically.
The Definite Integral = The Net Area (Above − Below the x-axis)
This is the most visual application of integration: finding the area bounded by curves.
Steps:
1. Find the intersection points of the curves (where f(x) = g(x)).
2. Determine which curve is on top in each interval.
3. Integrate (top − bottom) over each interval.
4. Add the absolute values.
Area between curve and x-axis: ∫ₐᵇ |f(x)| dx. If f(x) is always positive on the interval, it's just ∫ₐᵇ f(x) dx.
Partial Fractions, Special Integrals, and Reduction Formulas
These techniques appear frequently in JEE Advanced. Here's a conceptual overview — the formulas are in your toolkit.
Partial Fractions — Breaking Rational Functions into Simple Pieces
When integrating rational functions (polynomial/polynomial), you decompose them into simpler fractions that you know how to integrate.
Step 1: Factor denominator: x² − 1 = (x − 1)(x + 1).
Step 2: Write 1/((x−1)(x+1)) = A/(x−1) + B/(x+1).
Step 3: Solve: A(x+1) + B(x−1) = 1. Put x=1: 2A = 1 → A = ½. Put x=−1: −2B = 1 → B = −½.
Step 4: Integrate: ∫ ½·1/(x−1) − ½·1/(x+1) dx = ½ ln|x−1| − ½ ln|x+1| + C = ½ ln|(x−1)/(x+1)| + C.
Partial fractions turns division into addition — then you just integrate ln terms!
Special Integral Forms
These three forms appear constantly in JEE. Derive them once, then use them as formulas.
These Traps Trip Up Even Top Students
Right: ∫ 2x dx = x² + C ✅
The + C is NOT optional! Since d/dx(constant) = 0, any constant could have been in the original function. The integral represents a family of functions, not just one.
In definite integration, the + C cancels out: F(b) + C − (F(a) + C) = F(b) − F(a). So you don't need + C in definite integrals, but it's a must for indefinite.
Right: ∫ 1/x dx = ln|x| + C ✅
The absolute value matters because 1/x is defined for negative x too! ln(x) is only defined for x > 0, but ln|x| works for all x ≠ 0.
Example: ∫₋₂⁻¹ 1/x dx = [ln|x|]₋₂⁻¹ = ln(1) − ln(2) = −ln(2). Without the absolute value, you'd get ln(−1) which doesn't exist!
Right: When x = 0 → u = 0. When x = 2 → u = 4. So the integral is ∫₀⁴ cos(u) du = [sin(u)]₀⁴ = sin(4). ✅
When you substitute in a definite integral, you MUST change the limits to the new variable. Alternatively, substitute back to x at the end and use the original limits.
4 Strategies That Crack Almost Any Problem
• Is it a basic form (power, trig, exponential)? → Use the basic rules.
• Does it look like f(g(x))·g'(x)? → Substitute u = g(x).
• Is it a product of two different kinds of functions? → Integration by parts (ILATE).
• Is it a rational function (polynomial/polynomial)? → Partial fractions.
• Does it have √(a²−x²) or 1/(a²+x²)? → Special forms.
Most JEE problems test your ability to recognize which technique to use. Practice identifying the form at a glance.
• Is the interval symmetric [−a, a]? → Check if the function is even or odd.
• Does the integrand look like it could use King's property (especially with trig functions and limits 0 to π/2)?
• Can you split the integral at a point where the function changes form (like |x|)?
Pro tip: If the integral looks impossibly hard, try King's property. If it still looks hard, add the original integral to the King's-transformed version — the sum often simplifies dramatically.
Complete the square to turn it into one of the special forms.
Example: ∫ 1/(x² + 2x + 5) dx.
Complete the square: x² + 2x + 5 = (x + 1)² + 4.
Now: ∫ 1/((x+1)² + 2²) dx = (1/2)·tan⁻¹((x+1)/2) + C.
This technique works for ANY quadratic — just rewrite x² + bx + c as (x + b/2)² + (c − b²/4).
This catches:
• Sign errors (e.g., ∫ sin(x) dx = −cos(x) + C, not cos(x) + C)
• Coefficient errors (e.g., was it ∫ 2x dx = x² + C or 2x² + C?)
• ln vs ln||absolute value issues
For definite integrals, after finding the anti-derivative, quickly verify by differentiating. Then plug in the bounds.
Multi-Step Problems That Combine Multiple Concepts
Example 1: King's Property + Substitution
Evaluate I = ∫₀^{π/2} √(tan(x)) dx.
By King's property (replace x with π/2 − x):
I = ∫₀^{π/2} √(tan(π/2 − x)) dx = ∫₀^{π/2} √(cot(x)) dx.
Add: 2I = ∫₀^{π/2} [√(tan(x)) + √(cot(x))] dx.
= (tan(x) + 1)/√(tan(x)) = (sin(x)/cos(x) + 1)/√(tan(x))
= (sin(x) + cos(x))/√(sin(x)cos(x)).
So 2I = ∫₀^{π/2} (sin(x) + cos(x))/√(sin(x)cos(x)) dx.
t² = sin²(x) + cos²(x) − 2sin(x)cos(x) = 1 − 2sin(x)cos(x).
So sin(x)cos(x) = (1 − t²)/2.
When x = 0: t = 0 − 1 = −1. When x = π/2: t = 1 − 0 = 1.
2I = ∫₋₁¹ dt / √((1 − t²)/2) = √2 ∫₋₁¹ dt/√(1 − t²)
= √2 [sin⁻¹(t)]₋₁¹ = √2(π/2 − (−π/2)) = √2·π.
Example 2: Area Between Curves
Find the area bounded by y = x² and y = √x.
Solutions: x = 0, x = 1.
Intersection points: (0, 0) and (1, 1).
At x = ½: x² = 0.25, √x = 0.707. So √x is above x² on (0, 1).
= ∫₀¹ (x¹/² − x²) dx
= [2x³/²/3 − x³/3]₀¹
= (2/3 − 1/3) − (0 − 0)
= 1/3 square units.
Example 3: Integration by Parts (JEE Advanced Style)
Evaluate ∫₀^π eˣ·cos(x) dx.
du = −sin(x) dx, v = eˣ.
I = [eˣ·cos(x)]₀^π − ∫₀^π eˣ·(−sin(x)) dx
= [eˣ·cos(x)]₀^π + ∫₀^π eˣ·sin(x) dx
= (e^π·cos(π) − e⁰·cos(0)) + ∫₀^π eˣ·sin(x) dx
= (e^π·(−1) − 1·1) + ∫₀^π eˣ·sin(x) dx
= −e^π − 1 + ∫₀^π eˣ·sin(x) dx.
u = sin(x), dv = eˣ dx. du = cos(x) dx, v = eˣ.
J = [eˣ·sin(x)]₀^π − ∫₀^π eˣ·cos(x) dx
= (e^π·0 − e⁰·0) − I = −I.
So I = −e^π − 1 − I
2I = −(e^π + 1)
Practice Zone: Think, Don't Compute
These questions test if you truly understand integration concepts.