Grade 11 → Calculus → Integration ↓
Techniques of Integration
Integration is a fundamental concept in calculus, with many applications spanning across various scientific domains. Unlike differentiation, integration is often considered more challenging, as it requires finding the area under a curve or reversing the process of differentiation. To solve integration problems efficiently, several techniques of integration have been developed, which we will explore in depth in this article.
Introduction to integration
Before we get into specific techniques, let's make sure we understand what integration means. Integration is the inverse process of differentiation. While differentiation breaks down a function into its rate of change, integration adds up the accumulated quantities of a function. The simplest form of integration can be seen in calculating areas under curves.
The integral is represented by the symbol ∫
, followed by a function and the variable of integration. The integral of a function f(x)
with respect to x
is represented by ∫f(x)dx
.
Fundamental techniques of integration
1. Integration by replacement
Integration by substitution, also known as u-substitution, is one of the most common techniques, especially useful when dealing with combined functions. The idea is to transform the integral into a simpler form, possibly reducing it to a standard integral.
For example, suppose we need to integrate a function f(g(x))g'(x)
. We can set u = g(x)
and then du = g'(x)dx
The integral then becomes ∫f(u)du
.
Example: ∫2x(x² + 1)³dx Substitution: u = x² + 1 → du = 2xdx Integral becomes: ∫u³du = u⁴/4 + C = (x² + 1)⁴/4 + C
2. Integration by parts
Integration by parts is an extremely useful technique when integrating the product of two functions. This method is a consequence of the product rule for differentiation. The formula for integration by parts is:
∫u dv = uv - ∫v du
Here, u
and dv
are parts of the original integral, so du
and v
need to be calculated.
Example: ∫x eˣdx Choose: u = x → du = dx dv = eˣdx → v = eˣ Apply integration by parts: ∫x eˣdx = x eˣ - ∫eˣ dx = x eˣ - eˣ + C = eˣ(x - 1) + C
The use of integration by parts often involves trying different choices of u
and dv
before finding a combination that effectively simplifies the equation. A useful mnemonic is "LIPET", which suggests the order of choices: logarithmic, inverse trigonometric, polynomial, exponential, trigonometric.
3. Trigonometric integrals
Trigonometric integrals often involve sine, cosine, tangent, and their powers. Different strategies apply depending on the powers and interactions between trigonometric functions.
Let's consider the integrals related to sin m (x)
and cos n (x)
.
If m
or n
is odd, you can save one sine or cosine, converting the remainder using the Pythagorean identity sin²(x) + cos²(x) = 1
For example:
∫sin³(x)cos²(x)dx Save one sine: = ∫sin²(x)sin(x)cos²(x)dx Use identity: = ∫(1-cos²(x))sin(x)cos²(x)dx = ∫(sin(x)cos²(x) - sin(x)cos⁴(x))dx Substitution: u = cos(x) → du = -sin(x)dx = ∫(cos²(x)(-1) - cos⁴(x)(-1))du = -∫u²du + ∫u⁴du = -(u³/3) + (u⁵/5) + C = -(cos³(x)/3) + (cos⁵(x)/5) + C
When m
and n
are both even, identities such as sin²(x) = (1-cos(2x))/2
or cos²(x) = (1+cos(2x))/2
can be used to simplify integrals.
4. Trigonometric substitution
Trigonometric substitution is especially useful for integrals involving algebraic functions under square roots. For example, integrals of the form √(a² - x²)
, √(a² + x²)
, or √(x² - a²)
can be simplified using substitution.
Consider the substitution for √(a² - x²)
: Let x = a sin(θ)
, then dx = a cos(θ) dθ
and √(a² - x²) = a cos(θ)
.
Example: ∫√(4 - x²)dx Substitution: x = 2sin(θ) → dx = 2cos(θ)dθ Transform the integral: ∫√(4 - (2sin(θ))²)dx = ∫2cos²(θ)2cos(θ)dθ = 4∫cos²(θ)dθ Use double angle identity: cos²(θ) = (1 + cos(2θ))/2 = 4∫(1 + cos(2θ))/2dθ = 2∫(1 + cos(2θ))dθ = 2[θ + sin(2θ)/2] + C = 2[θ + sin(θ)cos(θ)] + C
These substitutions transform the integrand into a trigonometric expression, which is easier to integrate before re-substituting into the original variable.
5. Partial fraction decomposition
Partial fraction decomposition is used when integrating rational functions, that is, functions of the form P(x)/Q(x)
, where P(x)
and Q(x)
are both polynomials.
If the degree of P(x)
is less than the degree of Q(x)
, then the function can be decomposed into a sum of simple fractions, each of which can be integrated separately.
For example:
∫(4x - 3)/(x² - x - 2)dx Factor denominator: = ∫(4x - 3)/((x-2)(x+1))dx Decompose into partial fractions: 4x - 3 = A(x+1) + B(x-2) Solve for A and B: A(x+1) + B(x-2) = 4x - 3 A + B = 4 -A + 2B = -3 Solve the system: A = 5, B = -1 Rewrite integral: = ∫(5/(x-2) - 1/(x+1))dx Result: = 5ln|x-2| - ln|x+1| + C
The key to this method is to successfully express the integrand as a sum of fractions whose denominators are simple, each of which can be integrated using basic rules.
These are the elementary techniques of integration used for various tasks. Mastering them makes it possible to solve complex integrals by applying the appropriate method, simplifying the process and ensuring accurate results. With practice, it becomes intuitive to identify which technique to use, and tackling challenging integrals feels like solving a puzzle.
Conclusion
Integration techniques are varied and each has its own unique application. From substitution to trigonometric and partial fraction techniques, understanding and applying these methods enhances one's ability to solve integrals, making it an important part of calculus education. Remember to practice a variety of problems, as each integral potentially requires a unique approach or combination of techniques to solve.
Don't be intimidated by the complexity of integration. With these techniques, even the most complex integrals become easy to tackle. As you continue to learn and practice, you will find yourself becoming more confident and skilled at integrating a wide variety of functions.