📐
📊
✖️
← Back to Dashboard
Font Size:

1. Introduction

Integration is the inverse operation of differentiation. If differentiation finds the rate of change of a function, integration reconstructs the function from its rate of change, and simultaneously computes the area enclosed by a curve. The Fundamental Theorem of Calculus unifies these two viewpoints: the definite integral is the net area under a curve, and it can be evaluated by antidifferentiation.

This chapter introduces integration as the inverse of differentiation, presents the standard formulae for indefinite integrals, and develops the three central techniques: integration by substitution, integration by partial fractions, and integration by parts. It then defines the definite integral as the limit of a sum, establishes its properties, and applies the fundamental theorem to evaluate definite integrals. The chapter closes with the reduction-based evaluation of some special definite integrals.

Integration is the most computation-heavy chapter of the syllabus and carries a very high weightage in the board examination. The ability to recognise the form of an integrand and select the right technique quickly is the difference between a good and an excellent performance. The techniques developed here also feed directly into the chapter on application of integrals, where definite integrals are used to compute areas and volumes.

2. Integration as the Inverse of Differentiation

If $\frac{d}{dx}F(x) = f(x)$, then $\int f(x)\,dx = F(x) + C$, where C is the constant of integration. The constant appears because differentiation destroys constants; it is the reason every indefinite integral carries a + C.

Standard Integrals

$$\int x^n dx = \frac{x^{n+1}}{n+1} + C \quad (n \neq -1), \qquad \int \frac{1}{x} dx = \ln|x| + C$$

$$\int e^x dx = e^x + C, \qquad \int \sin x\, dx = -\cos x + C, \qquad \int \cos x\, dx = \sin x + C$$

$$\int \sec^2 x\, dx = \tan x + C, \qquad \int \sec x \tan x\, dx = \sec x + C$$

$$\int \csc^2 x\, dx = -\cot x + C, \qquad \int \csc x \cot x\, dx = -\csc x + C$$

$$\int \frac{1}{\sqrt{1 - x^2}} dx = \sin^{-1}x + C, \qquad \int \frac{1}{1 + x^2} dx = \tan^{-1}x + C$$

Rules of Integration

3. Integration by Substitution

The substitution method reverses the chain rule. If an integrand contains a function and its derivative (up to a constant factor), substitute $t = f(x)$, so that $dt = f'(x)dx$:

$$\int f'(x) \cdot g(f(x))\, dx = \int g(t)\, dt$$

Standard Substitution Forms

$$\int \frac{f'(x)}{f(x)} dx = \ln|f(x)| + C$$

$$\int [f(x)]^n f'(x) dx = \frac{[f(x)]^{n+1}}{n+1} + C$$

$$\int \frac{f'(x)}{\sqrt{1 - (f(x))^2}} dx = \sin^{-1}(f(x)) + C$$

Common substitutions for trigonometric and radical expressions: $x = a\sin\theta$ for $\sqrt{a^2 - x^2}$, $x = a\tan\theta$ for $\sqrt{a^2 + x^2}$, and $x = a\sec\theta$ for $\sqrt{x^2 - a^2}$.

4. Integration by Partial Fractions

A rational function $\frac{P(x)}{Q(x)}$, where the degree of P is less than the degree of Q, can be decomposed into partial fractions whose integrals are logarithms:

Form of denominator Partial fraction decomposition
(x - a)(x - b) A/(x - a) + B/(x - b)
(x - a)^2 A/(x - a) + B/(x - a)^2
(x - a)(x^2 + px + q) A/(x - a) + (Bx + C)/(x^2 + px + q)

For example:

$$\int \frac{1}{(x-1)(x-2)} dx$$

Decompose: $\frac{1}{(x-1)(x-2)} = \frac{A}{x-1} + \frac{B}{x-2}$. Solving gives $1 = A(x-2) + B(x-1)$; substituting x = 1 gives A = -1, and x = 2 gives B = 1. Hence

$$\int \frac{1}{(x-1)(x-2)} dx = -\ln|x-1| + \ln|x-2| + C = \ln\left|\frac{x-2}{x-1}\right| + C$$

5. Integration by Parts

The product rule in reverse gives

$$\int u\, dv = uv - \int v\, du$$

The function u is chosen according to the ILATE rule, in order of priority: Inverse trigonometric, Logarithmic, Algebraic, Trigonometric, Exponential. The more complex function should usually be kept as u.

Special Cases

For $\int e^x [f(x) + f'(x)] dx = e^x f(x) + C$, a very useful shortcut.

Examples

$$\int x e^x dx = x e^x - \int e^x dx = x e^x - e^x + C = e^x(x - 1) + C$$

$$\int x \ln x\, dx = \frac{x^2}{2}\ln x - \int \frac{x^2}{2} \cdot \frac{1}{x} dx = \frac{x^2}{2}\ln x - \frac{x^2}{4} + C$$

6. Some Standard Integrals

The following integrals occur repeatedly and should be memorised, where a > 0:

$$\int \frac{dx}{a^2 + x^2} = \frac{1}{a}\tan^{-1}\left(\frac{x}{a}\right) + C, \qquad \int \frac{dx}{x^2 - a^2} = \frac{1}{2a}\ln\left|\frac{x-a}{x+a}\right| + C$$

$$\int \frac{dx}{a^2 - x^2} = \frac{1}{2a}\ln\left|\frac{a+x}{a-x}\right| + C, \qquad \int \frac{dx}{\sqrt{a^2 - x^2}} = \sin^{-1}\left(\frac{x}{a}\right) + C$$

$$\int \frac{dx}{\sqrt{x^2 + a^2}} = \ln|x + \sqrt{x^2 + a^2}| + C, \qquad \int \frac{dx}{\sqrt{x^2 - a^2}} = \ln|x + \sqrt{x^2 - a^2}| + C$$

7. Definite Integrals

If f is continuous on [a, b] and F is an antiderivative of f, then

$$\int_a^b f(x)\, dx = F(b) - F(a)$$

Properties of Definite Integrals

  1. $\int_a^b f(x) dx = -\int_b^a f(x) dx$
  2. $\int_a^b f(x) dx = \int_a^c f(x) dx + \int_c^b f(x) dx$
  3. $\int_a^b f(x) dx = \int_a^b f(t) dt$ (the variable of integration is a dummy)
  4. $\int_0^a f(x) dx = \int_0^a f(a - x) dx$
  5. $\int_{-a}^{a} f(x) dx = 2\int_0^a f(x) dx$ if f is even, and $0$ if f is odd.
  6. $\int_a^b f(x) dx = \int_a^b f(a + b - x) dx$

The even/odd property is a powerful simplification tool: integrals of odd functions over symmetric intervals are automatically zero.

Quick Revision Tables

Table 1: Standard Integrals

Integrand Integral
x^n x^(n+1)/(n+1) + C
1/x ln
e^x e^x + C
sin x -cos x + C
cos x sin x + C
sec^2 x tan x + C
1/sqrt(1 - x^2) sin^(-1)x + C
1/(1 + x^2) tan^(-1)x + C

Table 2: Integration Techniques

Technique When to use Example form
Substitution Integrand contains f and f' integral f'(x)[f(x)]^n dx
Partial fractions Rational function P(x)/Q(x) integral dx/((x-a)(x-b))
By parts Product of unlike functions integral x e^x dx, x ln x dx
ILATE Choice of u in by parts I, L, A, T, E priority

Table 3: Definite Integral Properties

Property Formula
Swap limits int_a^b f = -int_b^a f
Split interval int_a^b f = int_a^c f + int_c^b f
Shift int_0^a f(x) = int_0^a f(a - x)
Even function int_(-a)^a f = 2 int_0^a f
Odd function int_(-a)^a f = 0

Mind Map

graph TD A["Integrals"] --> B["Indefinite Integrals"] A --> C["Techniques"] A --> D["Definite Integrals"] A --> E["Fundamental Theorem"] C --> C1["Substitution"] C --> C2["Partial fractions"] C --> C3["Integration by parts"] C --> C4["Standard forms"] B --> B1["Anti-derivative + C"] D --> D1["int_a^b f = F(b) - F(a)"] D --> D2["Properties: even/odd, shift"] E --> E1["Part 1: derivative of integral"] E --> E2["Part 2: area from anti-derivative"]

Important Diagrams (SVG)

Diagram 1: Area Interpretation of the Definite Integral

Definite Integral as Area Under a Curve Area = int_a^b f(x) dx x = a x = b The definite integral equals the signed area between the curve, the x-axis, and the vertical lines x = a and x = b. Golden Rule: Always take absolute value when area (not signed area) is required.

Diagram 2: Choosing u by the ILATE Rule in Integration by Parts

Integration by Parts: int u dv = uv - int v du ILATE priority for choosing u I: Inverse L: Log A: Algebraic T: Trig E: Expo Worked example: int x ln x dx Choose u = ln x (L before A), dv = x dx du = (1/x) dx, v = x^2/2 = (x^2/2) ln x - int (x^2/2)(1/x) dx = (x^2/2) ln x - x^2/4 + C Keep the anti-derivative; the constant C is added only at the very end. Golden Rule: Use ILATE; choose u as the function that simplifies on differentiation.

Common Mistakes

  1. Forgetting the constant of integration C in indefinite integrals; its omission loses marks in every problem.
  2. Using the power rule $\frac{x^{n+1}}{n+1}$ when n = -1; the integral of 1/x is ln|x|, not x^0/0.
  3. In substitution, forgetting to change the limits of a definite integral; after substitution the new limits must be in terms of the new variable.
  4. Applying partial fractions to a rational function whose numerator degree is not less than the denominator degree without first performing polynomial division.
  5. Choosing the wrong function as u in integration by parts, leading to a more complicated integral; ILATE should guide the choice.
  6. Forgetting absolute values in logarithmic integrals, such as $\int \frac{dx}{x} = \ln|x| + C$.
  7. Writing $\int \frac{1}{1 + x^2} dx$ as $\sin^{-1}x$; the correct anti-derivative is $\tan^{-1}x$, since d/dx(tan^(-1)x) = 1/(1+x^2).
  8. In definite integrals, evaluating F(a) - F(b) instead of F(b) - F(a); the upper limit comes first.
  9. Misapplying the even/odd property when the interval is not symmetric about zero.
  10. In integration by parts of definite integrals, forgetting to apply the limits to the whole expression uv and the remaining integral.

Exam Tips

  1. Always write + C for indefinite integrals and substitute limits for definite integrals; this single habit preserves marks.
  2. Learn to recognise the pattern $f'(x)[f(x)]^n$ instantly and substitute t = f(x); this covers a large class of board questions.
  3. For rational functions, check the degree of numerator and denominator first; if needed, divide before decomposing into partial fractions.
  4. In integration by parts, apply ILATE and for the special form $\int e^x[f(x) + f'(x)]dx$, use the shortcut $e^x f(x) + C$.
  5. Use the property $\int_0^a f(x)dx = \int_0^a f(a-x)dx$ to evaluate integrals of the form $\int \frac{1}{1 + \tan x}$ over symmetric ranges.
  6. Use the even/odd property to eliminate half of the work on symmetric intervals; odd functions integrate to zero over [-a, a].
  7. For definite integrals with products, consider differentiating part of the integrand and integrating the rest, matching the pattern of the fundamental theorem.
  8. Practise combining substitution with the standard forms $\sin^{-1}(x/a)$ and $\tan^{-1}(x/a)$; these appear frequently in both short and long answer questions.

Conclusion

Integration transforms the abstract idea of the anti-derivative into one of the most powerful computational tools in mathematics. The indefinite integral reconstructs functions from their rates of change, the substitution method and partial fractions and integration by parts provide systematic techniques for almost every standard integrand, and the definite integral supplies the area under a curve with the fundamental theorem linking the two worlds. The properties of definite integrals, especially the even-odd and shift properties, offer elegant shortcuts that save substantial time in examinations. Because integration threads through the application of integrals, differential equations, and beyond into physics and engineering, this chapter is rightly regarded as the heart of the calculus course. Diligent practice of recognising forms and choosing techniques is the surest route to mastery and to strong examination performance.