Integrals: Edge Cases and Subtle Traps (7)

easy 2 min read

Question

Evaluate 11x31+x2dx\displaystyle\int_{-1}^{1} \frac{x^3}{1+x^2}\,dx.

Solution — Step by Step

The integrand f(x)=x3/(1+x2)f(x) = x^3/(1+x^2). Test odd/even:

f(x)=(x)31+(x)2=x31+x2=f(x)f(-x) = \frac{(-x)^3}{1+(-x)^2} = \frac{-x^3}{1+x^2} = -f(x)

So ff is odd.

For an odd function on a symmetric interval [a,a][-a, a]:

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

11x31+x2dx=0\int_{-1}^{1} \frac{x^3}{1+x^2}\,dx = 0

The integral equals 00.

Why This Works

An odd function has equal positive and negative areas on a symmetric interval, so they cancel. We don’t need to find an antiderivative — the symmetry argument is a one-line solution.

This is one of the most reliable shortcuts in JEE. Whenever you see an integral on [a,a][-a, a], immediately check parity. If odd, the answer is zero. If even, the answer is twice the integral on [0,a][0, a].

Alternative Method

Substitute u=1+x2u = 1 + x^2, so du=2xdxdu = 2x\,dx and x2=u1x^2 = u - 1.

x31+x2dx=x2x1+x2dx=12u1udu=12(ulnu)+C\int \frac{x^3}{1+x^2}\,dx = \int \frac{x^2 \cdot x}{1+x^2}\,dx = \frac{1}{2}\int \frac{u-1}{u}\,du = \frac{1}{2}(u - \ln|u|) + C

Evaluating between 1-1 and 11 gives 00, since the antiderivative is even (depends on x2x^2). Same answer, more work.

The big-three integration shortcuts: parity on symmetric intervals, abf(x)dx=abf(a+bx)dx\int_a^b f(x)\,dx = \int_a^b f(a+b-x)\,dx (king’s rule), and recognising f(x)/f(x)f'(x)/f(x) as lnf(x)\ln|f(x)|. Drill these.

Common Mistake

Skipping the parity check and grinding through the substitution. You waste five minutes and risk an arithmetic error. The fix: every time the integral is on [a,a][-a, a], make parity check your first step.

Want to master this topic?

Read the complete guide with more examples and exam tips.

Go to full topic guide →

Try These Next