Skip to content

Integrals | CBSE - Wyatt's Notes

sources:

  • text: Standard textbook reference

Integration is the reverse process of differentiation. This topic covers basic integrals, substitution, partial fractions, and definite integrals.

  • xndx=xn+1n+1+C\int x^n \, dx = \frac{x^{n+1}}{n+1} + C for n1n \neq -1
  • 1xdx=lnx+C\int \frac{1}{x} \, dx = \ln|x| + C
  • exdx=ex+C\int e^x \, dx = e^x + C, axdx=axlna+C\int a^x \, dx = \frac{a^x}{\ln a} + C
  • sinxdx=cosx+C\int \sin x \, dx = -\cos x + C, cosxdx=sinx+C\int \cos x \, dx = \sin x + C
  • sec2xdx=tanx+C\int \sec^2 x \, dx = \tan x + C, csc2xdx=cotx+C\int \csc^2 x \, dx = -\cot x + C
  • secxtanxdx=secx+C\int \sec x \tan x \, dx = \sec x + C, cscxcotxdx=cscx+C\int \csc x \cot x \, dx = -\csc x + C
  • Substitution: f(g(x))g(x)dx=f(u)du\int f(g(x))g'(x) \, dx = \int f(u) \, du where u=g(x)u = g(x)
  • Integration by parts: udv=uvvdu\int u \, dv = uv - \int v \, du
  • Definite integral: abf(x)dx=F(b)F(a)\int_a^b f(x) \, dx = F(b) - F(a)
  • Properties: abf(x)dx=baf(x)dx\int_a^b f(x) \, dx = -\int_b^a f(x) \, dx, abf(x)dx=acf(x)dx+cbf(x)dx\int_a^b f(x) \, dx = \int_a^c f(x) \, dx + \int_c^b f(x) \, dx

Problem: Evaluate 2xcos(x2)dx\int 2x \cos(x^2) \, dx.

Solution:

Let u=x2u = x^2, so du=2xdxdu = 2x \, dx.

2xcos(x2)dx=cosudu=sinu+C=sin(x2)+C\int 2x \cos(x^2) \, dx = \int \cos u \, du = \sin u + C = \sin(x^2) + C

Common mistake: Forgetting to substitute back. The answer is sin(x2)+C\sin(x^2) + C, not sinu+C\sin u + C.

Problem: Evaluate xexdx\int x e^x \, dx.

Solution:

Let u=xu = x and dv=exdxdv = e^x \, dx. Then du=dxdu = dx and v=exv = e^x.

xexdx=xexexdx=xexex+C=ex(x1)+C\int x e^x \, dx = x e^x - \int e^x \, dx = x e^x - e^x + C = e^x(x - 1) + C

Common mistake: Choosing the wrong uu and dvdv. Use LIATE (Logarithmic, Inverse trig, Algebraic, Trigonometric, Exponential) to choose uu.

Problem: Evaluate 0π/2sin2xdx\int_0^{\pi/2} \sin^2 x \, dx.

Solution:

Use the identity sin2x=1cos2x2\sin^2 x = \frac{1 - \cos 2x}{2}:

0π/2sin2xdx=0π/21cos2x2dx=12[xsin2x2]0π/2\int_0^{\pi/2} \sin^2 x \, dx = \int_0^{\pi/2} \frac{1 - \cos 2x}{2} \, dx = \frac{1}{2}\left[x - \frac{\sin 2x}{2}\right]_0^{\pi/2}

=12[π20(00)]=π4= \frac{1}{2}\left[\frac{\pi}{2} - 0 - (0 - 0)\right] = \frac{\pi}{4}

Common mistake: Forgetting to evaluate at both limits. The definite integral is F(b)F(a)F(b) - F(a), not just F(b)F(b).

Problem: Evaluate 2x+3(x+1)(x+2)dx\int \frac{2x + 3}{(x+1)(x+2)} \, dx.

Solution:

Decompose into partial fractions: 2x+3(x+1)(x+2)=Ax+1+Bx+2\frac{2x+3}{(x+1)(x+2)} = \frac{A}{x+1} + \frac{B}{x+2}

2x+3=A(x+2)+B(x+1)2x + 3 = A(x+2) + B(x+1)

Set x=1x = -1: 1=A(1)1 = A(1), so A=1A = 1. Set x=2x = -2: 1=B(1)-1 = B(-1), so B=1B = 1.

2x+3(x+1)(x+2)dx=1x+1dx+1x+2dx=lnx+1+lnx+2+C\int \frac{2x+3}{(x+1)(x+2)} \, dx = \int \frac{1}{x+1} \, dx + \int \frac{1}{x+2} \, dx = \ln|x+1| + \ln|x+2| + C

=ln(x+1)(x+2)+C= \ln|(x+1)(x+2)| + C

Common mistake: Forgetting the absolute value inside the logarithm. The integral of 1x\frac{1}{x} is lnx+C\ln|x| + C, not lnx+C\ln x + C.

Worked Example 5 — Integration by Substitution (Trigonometric)

Section titled “Worked Example 5 — Integration by Substitution (Trigonometric)”

Problem: Evaluate tanxdx\int \tan x \, dx.

Solution:

Rewrite: tanxdx=sinxcosxdx\int \tan x \, dx = \int \frac{\sin x}{\cos x} \, dx

Let u=cosxu = \cos x, so du=sinxdxdu = -\sin x \, dx:

=1udu=lnu+C=lncosx+C=lnsecx+C= -\int \frac{1}{u} \, du = -\ln|u| + C = -\ln|\cos x| + C = \ln|\sec x| + C

Common mistake: Not recognizing that tanx=sinxcosx\tan x = \frac{\sin x}{\cos x} is the starting point. Many students forget this basic identity.

  1. Evaluate x1+x2dx\int \frac{x}{\sqrt{1 + x^2}} \, dx using substitution.
  2. Evaluate xlnxdx\int x \ln x \, dx using integration by parts.
  3. Evaluate 01x2exdx\int_0^1 x^2 e^x \, dx.
  4. Evaluate 3x+5(x1)(x+2)dx\int \frac{3x + 5}{(x-1)(x+2)} \, dx using partial fractions.
  5. Evaluate secxdx\int \sec x \, dx (Hint: multiply by secx+tanxsecx+tanx\frac{\sec x + \tan x}{\sec x + \tan x}).
  • For substitution, look for a function and its derivative in the integrand
  • For integration by parts, choose uu using LIATE rule
  • For definite integrals, always evaluate at both limits
  • Practice with trigonometric identities for integrals of sin2x\sin^2 x and cos2x\cos^2 x
  • Partial fractions require the degree of the numerator to be less than the degree of the denominator
  • For repeated linear factors, use A(xa)+B(xa)2\frac{A}{(x-a)} + \frac{B}{(x-a)^2}
  1. Always include the constant of integration CC for indefinite integrals.
  2. For definite integrals, write F(b)F(a)F(b) - F(a) explicitly before computing.
  3. When using substitution, change the limits of integration if the integral is definite.
  4. Check your answer by differentiating the result.
  5. For partial fractions with irreducible quadratic factors in the denominator, use Ax+Bax2+bx+c\frac{Ax + B}{ax^2 + bx + c}.

Integration is the reverse of differentiation — if a derivative gives you the rate, an integral gives you the total accumulated quantity. Think of it as adding up infinitely many infinitely thin slices to find total area under a curve. Substitution is like undoing a chain rule: you identify an inner function and simplify. Integration by parts undoes the product rule, letting you trade one integral for another that might be simpler. Definite integrals give exact numerical answers by evaluating the antiderivative at the boundaries and subtracting, like measuring the net displacement from a velocity graph.

  • Derivatives — differentiation rules and chain rule
  • Matrices — linear algebra and systems
  • CBSE Physics — work as integral of force, and area under curves

Forgetting the constant of integration for indefinite integrals. Every indefinite integral must include ”+ C” because the derivative of a constant is zero. Students often omit the constant, losing the family of antiderivatives. This is automatically handled in definite integrals via the Fundamental Theorem of Calculus.

Confusing the product rule and chain rule for integration. Integration by parts (product rule in reverse) is for products of functions: integral u dv = uv - integral v du. The chain rule substitution is for composite functions: integral f(g(x))g’(x) dx = integral f(u) du. Applying the wrong technique leads to incorrect or unsolvable integrals.

Not changing the limits when using substitution in definite integrals. When substituting u = g(x), the limits must also change to u(a) and u(b). Students sometimes evaluate the antiderivative at the original x-limits instead of the new u-limits, giving incorrect numerical answers.