In short

Definite integrals satisfy algebraic rules — you can reverse limits, split intervals, pull out constants, and add integrals. The reflection property \int_0^a f(x)\,dx = \int_0^a f(a-x)\,dx and its generalisation \int_a^b f(x)\,dx = \int_a^b f(a+b-x)\,dx are among the most powerful tricks in the JEE toolkit: they let you simplify integrals by replacing x with a - x. Even and odd function symmetry halves or eliminates work on symmetric intervals.

Compute this integral:

\int_0^{\pi/2} \frac{\sin x}{\sin x + \cos x}\,dx

Try finding an antiderivative. The integrand \frac{\sin x}{\sin x + \cos x} does not have a clean closed-form antiderivative in terms of elementary functions — at least not one you would find by standard methods in a reasonable time.

But the answer is \pi/4. And you can get it in three lines, without finding an antiderivative at all, using a single property of definite integrals.

The properties in this article are not just "rules to memorise." They are shortcuts that turn impossible-looking integrals into exercises. Knowing them is the difference between spending 20 minutes on a problem and solving it in 30 seconds.

The basic properties

Here are the foundational rules, each with a proof.

Property 1: Reversing limits

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

Proof. Let F be an antiderivative of f. Then \int_a^b f(x)\,dx = F(b) - F(a) and \int_b^a f(x)\,dx = F(a) - F(b). These are negatives of each other.

This is the "direction matters" property. Integrating from left to right gives the opposite sign of integrating from right to left. As a special case, \int_a^a f(x)\,dx = 0 — the integral over a zero-width interval is zero.

Property 2: Constant multiple

\int_a^b c \cdot f(x)\,dx = c \cdot \int_a^b f(x)\,dx

Proof. If F is an antiderivative of f, then cF is an antiderivative of cf. So \int_a^b cf\,dx = cF(b) - cF(a) = c[F(b) - F(a)] = c\int_a^b f\,dx.

Constants pass through the integral sign. This is the linearity property for scaling.

Property 3: Sum rule

\int_a^b [f(x) + g(x)]\,dx = \int_a^b f(x)\,dx + \int_a^b g(x)\,dx

Proof. If F' = f and G' = g, then (F+G)' = f + g. So \int_a^b (f+g)\,dx = [F(b)+G(b)] - [F(a)+G(a)] = [F(b)-F(a)] + [G(b)-G(a)].

Properties 2 and 3 together say the definite integral is a linear operator: \int_a^b [\alpha f + \beta g]\,dx = \alpha\int_a^b f\,dx + \beta\int_a^b g\,dx.

Property 4: Interval splitting

\int_a^b f(x)\,dx = \int_a^c f(x)\,dx + \int_c^b f(x)\,dx

for any c (not necessarily between a and b).

Proof. \int_a^c f\,dx + \int_c^b f\,dx = [F(c) - F(a)] + [F(b) - F(c)] = F(b) - F(a) = \int_a^b f\,dx. The F(c) terms cancel.

This lets you break an integral at any convenient point. It is especially useful when f has a different formula on different parts of the interval (piecewise functions).

Property 5: Comparison

If f(x) \geq g(x) for all x in [a, b], then

\int_a^b f(x)\,dx \geq \int_a^b g(x)\,dx

Proof. Let h(x) = f(x) - g(x) \geq 0. Each Riemann sum for h is a sum of non-negative terms (each h(x_k^*) \cdot \Delta x \geq 0), so the limit is non-negative. Therefore \int_a^b h\,dx \geq 0, which means \int_a^b f\,dx \geq \int_a^b g\,dx.

A special case: if f(x) \geq 0 on [a, b], then \int_a^b f(x)\,dx \geq 0.

The reflection property

This is the single most useful property for competitive exams.

The reflection property

\int_0^a f(x)\,dx = \int_0^a f(a - x)\,dx

Proof. In the integral \int_0^a f(x)\,dx, substitute u = a - x. Then du = -dx. When x = 0, u = a; when x = a, u = 0. So:

\int_0^a f(x)\,dx = \int_a^0 f(a - u)\,(-du) = \int_0^a f(a - u)\,du

Rename the dummy variable u back to x:

= \int_0^a f(a - x)\,dx

That is the entire proof — one substitution.

What it means geometrically. Replacing x with a - x reflects the interval [0, a] around its midpoint. The point x maps to a - x: the left endpoint 0 goes to a, the right endpoint a goes to 0, and the midpoint a/2 stays fixed. So the property says: the area under f is the same as the area under the "reflected" function f(a-x).

Solving the opening problem

Return to I = \int_0^{\pi/2} \frac{\sin x}{\sin x + \cos x}\,dx.

Apply the reflection property with a = \pi/2: replace x with \pi/2 - x.

I = \int_0^{\pi/2} \frac{\sin(\pi/2 - x)}{\sin(\pi/2 - x) + \cos(\pi/2 - x)}\,dx = \int_0^{\pi/2} \frac{\cos x}{\cos x + \sin x}\,dx

Now add the original and the reflected:

I + I = \int_0^{\pi/2} \frac{\sin x}{\sin x + \cos x}\,dx + \int_0^{\pi/2} \frac{\cos x}{\cos x + \sin x}\,dx
2I = \int_0^{\pi/2} \frac{\sin x + \cos x}{\sin x + \cos x}\,dx = \int_0^{\pi/2} 1\,dx = \frac{\pi}{2}
I = \frac{\pi}{4}

Three lines. No antiderivative needed.

The generalised reflection property

The same idea works on any interval [a, b], not just [0, a]:

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

Proof. Substitute u = a + b - x. Then du = -dx, and the limits transform as x = a \to u = b, x = b \to u = a. So \int_a^b f(x)\,dx = \int_b^a f(a+b-u)(-du) = \int_a^b f(a+b-u)\,du.

The special case a = 0 recovers the earlier property.

Even and odd functions on symmetric intervals

When the interval is symmetric about the origin — [-a, a] — and the function has a definite parity, the integral simplifies dramatically.

Even and odd function integrals

If f is even (f(-x) = f(x)):

\int_{-a}^a f(x)\,dx = 2\int_0^a f(x)\,dx

If f is odd (f(-x) = -f(x)):

\int_{-a}^a f(x)\,dx = 0

Proof (even case). Split the integral at 0:

\int_{-a}^a f(x)\,dx = \int_{-a}^0 f(x)\,dx + \int_0^a f(x)\,dx

In the first integral, substitute u = -x, so du = -dx:

\int_{-a}^0 f(x)\,dx = \int_a^0 f(-u)(-du) = \int_0^a f(-u)\,du = \int_0^a f(u)\,du

The last step uses f(-u) = f(u) (the even property). So the two pieces are equal, giving 2\int_0^a f(x)\,dx.

Proof (odd case). The same substitution gives \int_{-a}^0 f(x)\,dx = \int_0^a f(-u)\,du = -\int_0^a f(u)\,du, using f(-u) = -f(u). The two pieces cancel, giving 0.

Practical value. If you see \int_{-2}^2 x^3\,dx, you can immediately say the answer is 0 — the function x^3 is odd. No computation needed. Similarly, \int_{-\pi}^{\pi} \cos x\,dx = 2\int_0^{\pi} \cos x\,dx = 2[\sin x]_0^{\pi} = 0. (The cosine function is even, so we double — and the result still happens to be zero because of where \sin vanishes.)

Example 1: Using the reflection property

Evaluate \displaystyle I = \int_0^{\pi} \frac{x\sin x}{1 + \cos^2 x}\,dx.

Step 1. Apply the reflection property: replace x with \pi - x.

I = \int_0^{\pi} \frac{(\pi - x)\sin(\pi - x)}{1 + \cos^2(\pi - x)}\,dx

Since \sin(\pi - x) = \sin x and \cos(\pi - x) = -\cos x, so \cos^2(\pi - x) = \cos^2 x:

I = \int_0^{\pi} \frac{(\pi - x)\sin x}{1 + \cos^2 x}\,dx

Why: the reflection property lets you replace x with \pi - x throughout. The trig identities simplify the reflected integrand.

Step 2. Add the original integral and the reflected integral.

2I = \int_0^{\pi} \frac{x\sin x}{1 + \cos^2 x}\,dx + \int_0^{\pi} \frac{(\pi - x)\sin x}{1 + \cos^2 x}\,dx = \int_0^{\pi} \frac{\pi \sin x}{1 + \cos^2 x}\,dx

Why: the x and (\pi - x) in the numerators add to \pi, eliminating the variable from the numerator.

Step 3. Evaluate the resulting integral. Substitute t = \cos x, so dt = -\sin x\,dx. When x = 0, t = 1; when x = \pi, t = -1.

2I = \pi\int_1^{-1} \frac{-dt}{1 + t^2} = \pi\int_{-1}^1 \frac{dt}{1+t^2} = \pi\bigl[\arctan t\bigr]_{-1}^1
= \pi\!\left[\frac{\pi}{4} - \left(-\frac{\pi}{4}\right)\right] = \pi \cdot \frac{\pi}{2} = \frac{\pi^2}{2}

Why: the substitution converts the trig integral into a standard arctangent integral.

Step 4. Solve for I.

I = \frac{\pi^2}{4}

Why: divide both sides of 2I = \pi^2/2 by 2.

Result: \displaystyle\int_0^{\pi} \frac{x\sin x}{1 + \cos^2 x}\,dx = \frac{\pi^2}{4}.

The integrand $\frac{x\sin x}{1+\cos^2 x}$ on $[0, \pi]$. Finding an antiderivative for this is extremely difficult. But the reflection property eliminates the $x$ from the numerator, reducing the problem to a standard arctangent integral. The area under this curve is $\pi^2/4$.

Example 2: Even/odd symmetry

Evaluate \displaystyle\int_{-3}^{3} (x^3\cos x + x^2\sin^2 x)\,dx.

Step 1. Check the parity of each term.

First term: f_1(x) = x^3\cos x. Since (-x)^3 = -x^3 (odd) and \cos(-x) = \cos x (even), the product f_1(-x) = -x^3\cos x = -f_1(x). So f_1 is odd.

Second term: f_2(x) = x^2\sin^2 x. Since (-x)^2 = x^2 (even) and \sin^2(-x) = \sin^2 x (even), the product f_2(-x) = x^2\sin^2 x = f_2(x). So f_2 is even.

Why: odd times even is odd, even times even is even. Identifying parity before computing saves work.

Step 2. Apply the parity rules on [-3, 3].

\int_{-3}^3 x^3\cos x\,dx = 0 \qquad \text{(odd function on symmetric interval)}
\int_{-3}^3 x^2\sin^2 x\,dx = 2\int_0^3 x^2\sin^2 x\,dx \qquad \text{(even function)}

Why: the odd integral vanishes by cancellation (the left half is the negative of the right half). The even integral doubles.

Step 3. Compute \int_0^3 x^2\sin^2 x\,dx. Use \sin^2 x = \frac{1 - \cos 2x}{2}:

\int_0^3 x^2 \cdot \frac{1 - \cos 2x}{2}\,dx = \frac{1}{2}\int_0^3 x^2\,dx - \frac{1}{2}\int_0^3 x^2\cos 2x\,dx
= \frac{1}{2}\cdot\frac{27}{3} - \frac{1}{2}\int_0^3 x^2\cos 2x\,dx = \frac{9}{2} - \frac{1}{2}\int_0^3 x^2\cos 2x\,dx

The remaining integral \int_0^3 x^2\cos 2x\,dx is evaluated by integration by parts (twice). Setting u = x^2, dv = \cos 2x\,dx:

\int x^2\cos 2x\,dx = \frac{x^2\sin 2x}{2} - \int x\sin 2x\,dx = \frac{x^2\sin 2x}{2} + \frac{x\cos 2x}{2} - \frac{\sin 2x}{4}

Evaluating from 0 to 3:

= \left[\frac{9\sin 6}{2} + \frac{3\cos 6}{2} - \frac{\sin 6}{4}\right] - 0 = \frac{17\sin 6}{4} + \frac{3\cos 6}{2}

Why: integration by parts handles x^2\cos 2x; the key point is that the odd part of the original integrand contributed nothing.

Step 4. Combine.

\int_{-3}^3 (x^3\cos x + x^2\sin^2 x)\,dx = 0 + 2\!\left[\frac{9}{2} - \frac{1}{2}\!\left(\frac{17\sin 6}{4} + \frac{3\cos 6}{2}\right)\right]
= 9 - \frac{17\sin 6}{4} - \frac{3\cos 6}{2}

Why: the odd part vanished entirely, halving the amount of computation. The numerical value is approximately 9 - (-0.94) - (1.44) \approx 8.50.

Result: \displaystyle\int_{-3}^3 (x^3\cos x + x^2\sin^2 x)\,dx = 9 - \frac{17\sin 6}{4} - \frac{3\cos 6}{2}.

The solid curve is the full integrand. The dashed red curve is the even part $x^2\sin^2 x$ (symmetric about the $y$-axis). The dotted curve is the odd part $x^3\cos x$ (antisymmetric). The odd part contributes zero to the integral over $[-3, 3]$. Only the even part survives.

Common confusions

Going deeper

The properties above are the standard toolkit for definite integrals. If you are comfortable with all of them, you can stop here. The material below covers a subtlety about comparison bounds, and the connection between these properties and the Riemann sum definition.

Using comparison to estimate integrals

Property 5 (comparison) lets you bound integrals you cannot compute exactly. For example, on [0, 1], x^2 \leq x (because x \leq 1). So:

\int_0^1 x^2\,dx \leq \int_0^1 x\,dx
\frac{1}{3} \leq \frac{1}{2}

More usefully: on [0, 1], 1 \leq e^x \leq e (since e^x is increasing and e^0 = 1, e^1 = e). So:

\int_0^1 1\,dx \leq \int_0^1 e^x\,dx \leq \int_0^1 e\,dx
1 \leq \int_0^1 e^x\,dx \leq e

The exact value is e - 1 \approx 1.718, which is indeed between 1 and e \approx 2.718.

This technique is valuable for JEE problems that ask you to estimate or bound an integral rather than compute it exactly.

Proving properties from the Riemann sum

The proofs above used antiderivatives (the Fundamental Theorem). But every property can also be proved directly from the Riemann sum definition — the limit of \sum f(x_k^*)\Delta x.

For example, the linearity property \int_a^b [f+g]\,dx = \int_a^b f\,dx + \int_a^b g\,dx follows from the fact that \sum [f(x_k^*) + g(x_k^*)]\Delta x = \sum f(x_k^*)\Delta x + \sum g(x_k^*)\Delta x, and taking limits of both sides. No antiderivative is needed.

This matters because not every integrable function has an elementary antiderivative. The properties hold for all Riemann-integrable functions, not just those with nice closed-form antiderivatives. The Riemann sum proofs are more general.

Where this leads next