Skip to main content

Applications of Integration

  • Understand the concept of integration and its applications.
  • Learn how to compute areas under curves using definite integrals.
  • Explore the concept of finding the area between two curves.

Integration has a wide range of applications in mathematics, physics, engineering, and economics. It helps us compute areas, volumes, work, and even probabilities. In this section, we explore some fundamental applications of integration.

1. Area Under a Curve

The definite integral can be used to find the area enclosed between a function \( f(x) \) and the x-axis over an interval \([a, b]\):

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

 

If \( f(x) \) is below the x-axis in some region, its integral will be negative. To find the total area, we take the absolute value of such integrals.

Example 1: Finding the Area Between a Function and the X-Axis

Find the area enclosed by \( f(x) = x^2 - 4 \) from \( x = -2 \) to \( x = 2 \).

Step 1: Find where the function crosses the x-axis by solving \( x^2 - 4 = 0 \):

\[ x^2 = 4 \quad \Rightarrow \quad x = \pm 2 \]

Step 2: The function is below the x-axis for \( x \in (-2,2) \), so we integrate the absolute value:

\[ A = \int_{-2}^{2} |x^2 - 4| \, dx \]

Since \( x^2 - 4 \) is negative in this interval, we rewrite it as:

\[ A = \int_{-2}^{2} (4 - x^2) \, dx \]

Step 3: Compute the integral:

\[ \int (4 - x^2) \, dx = 4x - \frac{x^3}{3} \]

Step 4: Evaluate at \( x = 2 \) and \( x = -2 \):

\[ \left[ 4(2) - \frac{(2)^3}{3} \right] - \left[ 4(-2) - \frac{(-2)^3}{3} \right] \] \[ = \left[ 8 - \frac{8}{3} \right] - \left[ -8 + \frac{8}{3} \right] \] \[ = \left( \frac{24}{3} - \frac{8}{3} \right) - \left( \frac{-24}{3} + \frac{8}{3} \right) \] \[ = \frac{16}{3} - \left(-\frac{16}{3} \right) = \frac{32}{3} \]

Thus, the total area is \( \frac{32}{3} \).

1. Area Between Two Curves

The area between two functions \( f(x) \) and \( g(x) \) over an interval \([a, b]\) is given by:

\[ A = \int_a^b \big( f(x) - g(x) \big) \, dx \]

Example 2: Finding the Area Between Two Curves

Find the area enclosed between \( f(x) = x^2 \) and \( g(x) = x+2 \) from \( x = -1 \) to \( x = 2 \).

Step 1: Determine which function is on top.

Since \( x^2 \) is a parabola and \( x+2 \) is a straight line, \( g(x) = x+2 \) is greater over the given interval.

Step 2: Compute the integral:

\[ A = \int_{-1}^{2} \big( (x+2) - x^2 \big) \, dx \]

Step 3: Integrate:

\[ \int (x+2 - x^2) \, dx = \int (x - x^2 + 2) \, dx \] \[ = \frac{x^2}{2} - \frac{x^3}{3} + 2x \]

Step 4: Evaluate at \( x = 2 \) and \( x = -1 \):

\[ \left[ \frac{(2)^2}{2} - \frac{(2)^3}{3} + 2(2) \right] - \left[ \frac{(-1)^2}{2} - \frac{(-1)^3}{3} + 2(-1) \right] \] \[ = \left[ \frac{4}{2} - \frac{8}{3} + 4 \right] - \left[ \frac{1}{2} + \frac{1}{3} - 2 \right] \] \[ = \left[ 2 - \frac{8}{3} + 4 \right] - \left[ \frac{1}{2} + \frac{1}{3} - 2 \right] \] \[ = \frac{18}{3} - \frac{8}{3} + 4 - \left(\frac{3}{6} + \frac{2}{6} - 2 \right) \] \[ = \frac{10}{3} + 4 - \left(\frac{5}{6} - 2 \right) \] \[ = \frac{10}{3} + 4 - \frac{5}{6} + 2 \] \[ = \frac{10}{3} + 6 - \frac{5}{6} \] \[ = \frac{10}{3} + \frac{36}{6} - \frac{5}{6} \] \[ = \frac{20}{6} + \frac{31}{6} = \frac{51}{6} = \frac{17}{2} \]

Thus, the total area enclosed between the curves is \( \frac{17}{2} \).

Practice Problems

Problem 1: Find the area enclosed by \( f(x) = x^3 - 3x \) from \( x = -2 \) to \( x = 2 \).

Solution:

Find where \( x^3 - 3x = 0 \):

\[ x(x^2 - 3) = 0 \quad \Rightarrow \quad x = 0, \pm\sqrt{3} \]

Set up the integral and compute:

\[ A = \int_{-2}^{2} |x^3 - 3x| \, dx \]

(Complete solution follows the same process as Example 1.)

Problem 2: Find the area between \( f(x) = x^2 - 2x \) and \( g(x) = 3x - x^2 \) from \( x = 0 \) to \( x = 3 \).

Solution:

Find where \( x^2 - 2x = 3x - x^2 \) and set up the integral.

Compute \( \int_0^3 ( (3x - x^2) - (x^2 - 2x) ) \, dx \).

(Complete solution follows the same process as Example 2.)


This Week's Best Picks from Amazon

Please see more curated items that we picked from Amazon here .

Popular posts from this blog

LU Decomposition

LU Decomposition: A Step-by-Step Guide LU Decomposition, also known as LU Factorization, is a method of decomposing a square matrix into two triangular matrices: a lower triangular matrix L and an upper triangular matrix U . This is useful for solving linear equations, computing determinants, and inverting matrices efficiently. What is LU Decomposition? LU Decomposition expresses a matrix A as: \[ A = LU \] where: L is a lower triangular matrix with ones on the diagonal. U is an upper triangular matrix. Step-by-Step Process Consider the matrix: \[ A = \begin{bmatrix} 2 & 3 & 1 \\ 4 & 7 & 3 \\ 6 & 18 & 5 \end{bmatrix} \] Step 1: Initialize L as an Identity Matrix Start with an identity matrix for \( L \): \[ L = \begin{bmatrix} 1 & 0 & 0 \\ 0 ...

Gaussian Elimination: A Step-by-Step Guide

Gaussian Elimination: A Step-by-Step Guide Gaussian Elimination is a systematic method for solving systems of linear equations. It works by transforming a given system into an equivalent one in row echelon form using a sequence of row operations. Once in this form, the system can be solved efficiently using back-substitution . What is Gaussian Elimination? Gaussian elimination consists of two main stages: Forward Elimination: Convert the system into an upper triangular form. Back-Substitution: Solve for unknowns starting from the last equation. Definition of a Pivot A pivot is the first nonzero entry in a row when moving from left to right. Pivots are used to eliminate the elements below them, transforming the system into an upper triangular form. Step-by-Step Example Consider the system of equations: \[ \begin{aligned} 2x + 3y - z &= 5 \\ 4x + y...

Vector Spaces and Linear Transformation

Vector Spaces and Linear Transformations A vector space is a set of vectors that satisfies specific properties under vector addition and scalar multiplication. Definition of a Vector Space A set \( V \) is called a vector space over a field \( \mathbb{R} \) (real numbers) if it satisfies the following properties: Closure under addition: If \( \mathbf{u}, \mathbf{v} \in V \), then \( \mathbf{u} + \mathbf{v} \in V \). Closure under scalar multiplication: If \( \mathbf{v} \in V \) and \( c \in \mathbb{R} \), then \( c\mathbf{v} \in V \). Associativity: \( (\mathbf{u} + \mathbf{v}) + \mathbf{w} = \mathbf{u} + (\mathbf{v} + \mathbf{w}) \). Commutativity: \( \mathbf{u} + \mathbf{v} = \mathbf{v} + \mathbf{u} \). Existence of a zero vector: There exists a vector \( \mathbf{0} \) such that \( \mathbf{v} + \mathbf{0} = \mathbf{v} \). Existence of additive inverses: For eac...