Back to Library

MTH 102 LN4 Integration

Academic Session 2025/2026 | FUL BookBank Resources

Ready to read
MTH 102 Lecture Note 4 Integration

Lecture Note 4: Integration

1. Meaning of Integration

Integration is the process of finding a function from its derivative. It is the reverse operation of differentiation. If F′(x) = f(x), then F(x) is called an antiderivative of f(x).

The general antiderivative is written as:

∫ f(x) dx = F(x) + C

where C is an arbitrary constant called the constant of integration. The symbol is the integral sign, f(x) is the integrand, and dx shows that integration is carried out with respect to x.

Core Theorem

If F(x) is one antiderivative of f(x) on an interval, then every antiderivative of f(x) on that interval has the form:

F(x) + C

Example

Since ddx(x3) = 3x2, it follows that:

∫ 3x2 dx = x3 + C

Key Takeaways



2. Integration by the Power Rule

For any real number n ≠ -1, the power rule for integration is:

∫ xn dx = xn + 1n + 1 + C

In words: increase the power by one and divide by the new power.

Example 1

Evaluate 3√x dx.

Solution:

3√x = x1/3

3√x dx = ∫ x1/3 dx = x4/34/3 + C = 34x4/3 + C

Example 2

Evaluate 1x5 dx.

Solution:

1x5 = x-5

∫ x-5 dx = x-4-4 + C = -14x4 + C

Exam Points



3. Integration by Substitution

Integration by substitution is the reverse of the chain rule. It is used when an integral contains a composite expression and the derivative of the inner expression is present, either exactly or as a constant multiple.

If u = g(x), then:

du = g′(x) dx

The integral is changed from an expression in x to an expression in u, integrated, and then changed back to x.

Example 1

Evaluate ∫ (4 - 3x)1/7 dx.

Solution:

Let u = 4 - 3x. Then du = -3 dx, so dx = -13du.

∫ (4 - 3x)1/7 dx = -13∫ u1/7 du

= -13 × u8/78/7 + C = -724u8/7 + C

= -724(4 - 3x)8/7 + C

Example 2

Evaluate ∫ cos(3x + 5) dx.

Solution:

Let u = 3x + 5. Then du = 3dx, so dx = 13du.

∫ cos(3x + 5) dx = 13∫ cos u du = 13sin(3x + 5) + C

Example 3

Evaluate ∫ sin(5x - 2) dx.

Solution:

Let u = 5x - 2. Then du = 5dx, so dx = 15du.

∫ sin(5x - 2) dx = 15∫ sin u du = -15cos(5x - 2) + C

Key Takeaways



4. Integration of Trigonometric Expressions

Many trigonometric integrals become simple after applying identities. The most useful identities here are:

sin2x = 1 - cos 2x2

cos2x = 1 + cos 2x2

sin2x + cos2x = 1

4.1 Even Powers of Sine and Cosine

When the power is even, use the half-angle identities.

Example 1

Evaluate ∫ sin2x dx.

Solution:

∫ sin2x dx = ∫ 1 - cos 2x2 dx

= x2 - 14sin 2x + C

Example 2

Evaluate ∫ cos2(3x) dx.

Solution:

cos2(3x) = 1 + cos 6x2

∫ cos2(3x) dx = x2 + 112sin 6x + C

4.2 Odd Powers of Sine and Cosine

When an odd power occurs, separate one sine or cosine factor and convert the remaining even power using sin2x + cos2x = 1.

Example 3

Evaluate ∫ cos3x dx.

Solution:

cos3x = cos x(1 - sin2x)

Let u = sin x, so du = cos x dx.

∫ cos3x dx = ∫ (1 - u2) du = u - u33 + C

= sin x - sin3x3 + C

Example 4

Evaluate ∫ sin3x cos2x dx.

Solution:

sin3x = sin x(1 - cos2x)

∫ sin3x cos2x dx = ∫ [cos2x sin x - cos4x sin x] dx

Using u = cos x, du = -sin x dx, the result is:

-cos3x3 + cos5x5 + C

Exam Points



5. Trigonometric Substitution

Trigonometric substitution is used for integrals containing square roots of quadratic expressions. The substitution is chosen from a Pythagorean identity.

Expression TypeUseful Substitution
√(a2 - x2)x = a sin θ or x = a cos θ
a2 + x2x = a tan θ or x = a cot θ
√(x2 - a2)x = a sec θ or x = a csc θ

Example 1

Evaluate dx√(1 - x2).

Solution:

Let x = sin θ. Then dx = cos θ dθ and √(1 - x2) = cos θ.

Hence:

dx√(1 - x2) = ∫ dθ = θ + C

Since x = sin θ, θ = sin-1x. Therefore:

dx√(1 - x2) = sin-1x + C

Example 2

Evaluate dxx√(x2 - 25).

Solution:

Let x = 5sec θ. Then dx = 5sec θtan θ dθ and √(x2 - 25) = 5tan θ.

Therefore:

dxx√(x2 - 25) = ∫ 5sec θtan θ dθ(5sec θ)(5tan θ)

= 15∫ dθ = θ5 + C

Since x = 5sec θ, θ = sec-1(x5). Thus:

dxx√(x2 - 25) = 15sec-1(x5) + C

Key Takeaways



6. Integration by Parts

Integration by parts is the reverse of the product rule. It is used for integrals involving products of functions.

∫ u dv = uv - ∫ v du

A useful guide for choosing u is LIATE: logarithmic, inverse trigonometric, algebraic, trigonometric, exponential.

Example 1

Evaluate ∫ te-3t dt.

Solution:

Let u = t, so du = dt. Let dv = e-3tdt, so v = -13e-3t.

∫ te-3tdt = uv - ∫ vdu

= -13te-3t + 13∫ e-3tdt

= -13te-3t - 19e-3t + C

Example 2

Evaluate ∫ x2sin x dx.

Solution:

Let u = x2 and dv = sin x dx. Then du = 2x dx and v = -cos x.

∫ x2sin x dx = -x2cos x + 2∫ x cos x dx

Apply integration by parts again to ∫ x cos x dx:

∫ x cos x dx = x sin x + cos x

Therefore:

∫ x2sin x dx = -x2cos x + 2x sin x + 2cos x + C

Exam Points



7. Integration by Partial Fractions

Partial fractions are used to integrate rational functions, that is, fractions whose numerator and denominator are polynomials. The goal is to split a complicated fraction into simpler fractions.

Common Forms

For distinct linear factors:

P(x)(x + a)(x + b) = Ax + a + Bx + b

For a repeated linear factor:

P(x)(x + a)2(x + b) = Ax + a + B(x + a)2 + Cx + b

Example 1

Evaluate x + 2(x + 3)(x + 4) dx.

Solution:

Write:

x + 2(x + 3)(x + 4) = Ax + 3 + Bx + 4

Then:

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

Put x = -3: A = -1.

Put x = -4: B = 2.

Thus:

x + 2(x + 3)(x + 4) dx = -∫ dxx + 3 + 2∫ dxx + 4

= -ln|x + 3| + 2ln|x + 4| + C

Example 2

Evaluate dx(x - 1)2(x + 2).

Solution:

Decompose:

1(x - 1)2(x + 2) = Ax - 1 + B(x - 1)2 + Cx + 2

Solving for the constants gives:

A = -19, B = 13, C = 19

Therefore:

dx(x - 1)2(x + 2) = 19ln|x + 2x - 1| - 13(x - 1) + C

Key Takeaways



8. Definite Integrals

A definite integral has limits of integration and gives a numerical value:

ab f(x) dx

If F′(x) = f(x), then:

ab f(x) dx = F(b) - F(a)

This result is the evaluation form of the Fundamental Theorem of Calculus.

Substitution in Definite Integrals

When using substitution in a definite integral, either:

Example 1

Evaluate 02 (x + 1)(x2 + 2x + 3)5 dx.

Solution:

Let u = x2 + 2x + 3. Then du = 2(x + 1)dx, so (x + 1)dx = 12du.

When x = 0, u = 3. When x = 2, u = 11.

Therefore:

02 (x + 1)(x2 + 2x + 3)5 dx = 12311 u5 du

= 112(116 - 36)

Example 2

Evaluate 01 dx√(4 - x2).

Solution:

Let x = 2sin u. Then dx = 2cos u du and √(4 - x2) = 2cos u.

When x = 0, u = 0. When x = 1, u = π6.

Thus:

01 dx√(4 - x2) = ∫0π/6 du = π6

Exam Points



9. Exam-Focused Formula Summary

∫ f(x) dx = F(x) + C, where F′(x) = f(x).

∫ xn dx = xn + 1n + 1 + C, for n ≠ -1.

1x dx = ln|x| + C.

∫ sin x dx = -cos x + C.

∫ cos x dx = sin x + C.

∫ sec2x dx = tan x + C.

∫ csc2x dx = -cot x + C.

∫ u dv = uv - ∫ v du.

ab f(x) dx = F(b) - F(a).



10. Practice Questions for Revision

A. Power Rule

  1. Evaluate ∫ x7 dx.
  2. Evaluate 1x4 dx.
  3. Evaluate ∫ √x dx.
  4. Evaluate 3√(x2) dx.

B. Substitution

  1. Evaluate ∫ (2x + 1)(x2 + x + 3)5 dx.
  2. Evaluate ∫ sin(4x - 1) dx.
  3. Evaluate ∫ cos(7x + 2) dx.
  4. Evaluate ∫ x√(x2 + 5) dx.

C. Trigonometric Integrals

  1. Evaluate ∫ sin4x dx.
  2. Evaluate ∫ cos3x dx.
  3. Evaluate ∫ sin5x dx.
  4. Evaluate ∫ tan4x sec2x dx.

D. Techniques of Integration

  1. Evaluate dx√(4 - x2).
  2. Evaluate ∫ x cos x dx.
  3. Evaluate ∫ xe-x dx.
  4. Evaluate ∫ x2ln x dx.
  5. Evaluate x + 3x(x + 1) dx.

E. Definite Integrals

  1. Evaluate -10 (x + 3)4 dx.
  2. Evaluate 01 x2(x3 + 7)2/3 dx.
  3. Evaluate 01 dx√(4 - x2).


11. Final Revision Checklist

🏆

Mastered this topic?

Put your knowledge to the test! Take a timed practice quiz to see how well you've prepared for the exams.

🚀 Open CBT Practice Hub