Admin 12 Jun 2026 09:44

 

Double Integrals of Functions of Two Variables

Definition and Basic Concepts

Double integrals extend the concept of single integration to functions of two variables. While a single integral represents the area under a curve, a double integral represents a volume under a surface defined by a function f(x,y) over a region in the xy-plane.

$$ \iint_R f(x,y) \,dA $$

Here, R represents the region of integration in the xy-plane, f(x,y) is the function being integrated, and dA represents the infinitesimal area element.

For a rectangular region R = [a, b] [c, d], the double integral can be defined as the limit of a Riemann sum:

$$ \iint_R f(x,y) \,dA = \lim_{m,n \to \infty} \sum_{i=1}^{m}\sum_{j=1}^{n} f(x_i^*, y_j^*) \Delta A $$

Where $(x_i^*, y_j^*)$ is a sample point in the $\text{(i,j)}^{th}$ subrectangle, and $\Delta A = \Delta x \cdot \Delta y$ is the area of each subrectangle.

Geometric Interpretation

The double integral $\iint_R f(x,y) \,dA$ can be interpreted as the signed volume between the surface $z = f(x,y)$ and the region R in the xy-plane. When f(x,y) is positive, the volume is above the plane; when f(x,y) is negative, the volume is below the plane.

If f(x,y) = 1 for all (x,y) in R, then the double integral equals the area of region R:

$$ \iint_R 1 \,dA = \text{Area of } R $$
Note: This explains why double integrals can be used to find areas and not just volumes.

Properties of Double Integrals

Double integrals share several important properties with single integrals:

  • Linearity: For constants a and b and functions f and g:
    $$ \iint_R [a \cdot f(x,y) + b \cdot g(x,y)] \,dA = a \cdot \iint_R f(x,y) \,dA + b \cdot \iint_R g(x,y) \,dA $$
  • Additivity: If R = R R where R and R are non-overlapping regions:
    $$ \iint_R f(x,y) \,dA = \iint_{R_1} f(x,y) \,dA + \iint_{R_2} f(x,y) \,dA $$
  • Comparison Property: If f(x,y) g(x,y) for all (x,y) in R:
    $$ \iint_R f(x,y) \,dA \geq \iint_R g(x,y) \,dA $$
  • Bounds: If m f(x,y) M for all (x,y) in R:
    $$ m \cdot \text{Area}(R) \leq \iint_R f(x,y) \,dA \leq M \cdot \text{Area}(R) $$

Calculating Double Integrals

The primary method for evaluating double integrals is to convert them into iterated integrals, as stated in Fubini's Theorem.

Fubini's Theorem

If f is continuous on the rectangle R = [a, b] [c, d], then:

$$ \iint_R f(x,y) \,dA = \int_a^b \left( \int_c^d f(x,y) \,dy \right) \,dx = \int_c^d \left( \int_a^b f(x,y) \,dx \right) \,dy $$

This theorem allows us to evaluate double integrals as iterated single integrals, computing one variable at a time.

Order of Integration

The order in which we integrate can affect the difficulty of the calculation, though the result remains the same. When selecting an order, consider:

  • Whether integrating with respect to x or y first yields simpler intermediate expressions
  • Whether the region of integration is easier to describe in one order
  • Whether one order requires splitting the region into multiple subregions

Example 1

Evaluate the double integral $\iint_R \sin(x+y) \,dA$ where R = [0, /2] [0, /2].

Solution:

Using Fubini's theorem:

$$ \begin{aligned} \iint_R \sin(x+y) \,dA &= \int_0^{\pi/2} \left( \int_0^{\pi/2} \sin(x+y) \,dy \right) \,dx \\ &= \int_0^{\pi/2} \left[ -\cos(x+y) \right]_{y=0}^{y=\pi/2} \,dx \\ &= \int_0^{\pi/2} \left[ -\cos(x+\pi/2) + \cos(x) \right] \,dx \\ &= \int_0^{\pi/2} \left[ \sin(x) + \cos(x) \right] \,dx \\ &= \left[ -\cos(x) + \sin(x) \right]_{x=0}^{x=\pi/2} \\ &= (-\cos(\pi/2) + \sin(\pi/2)) - (-\cos(0) + \sin(0)) \\ &= (0 + 1) - (-1 + 0) = 2 \end{aligned} $$

Regions That Are Not Rectangles

For more general regions, we can adapt the limits of integration accordingly. For a type I region (defined by a x b and g(x) y g(x)):

$$ \iint_D f(x,y) \,dA = \int_a^b \left( \int_{g_1(x)}^{g_2(x)} f(x,y) \,dy \right) \,dx $$

For a type II region (defined by c y d and h(y) x h(y)):

$$ \iint_D f(x,y) \,dA = \int_c^d \left( \int_{h_1(y)}^{h_2(y)} f(x,y) \,dx \right) \,dy $$

Example 2

Evaluate $\iint_D x \,dA$ where D is the region bounded by y = x and y = x.

Solution:

First, we find the intersection points of the curves: x = x gives us x = 0 and x = 1.

This is a type I region where x ranges from 0 to 1, and for each x, y ranges from x to x.

$$ \begin{aligned} \iint_D x \,dA &= \int_0^1 \left( \int_{x^2}^{x} x \,dy \right) \,dx \\ &= \int_0^1 x[y]_{y=x^2}^{y=x} \,dx \\ &= \int_0^1 x(x - x^2) \,dx \\ &= \int_0^1 (x^2 - x^3) \,dx \\ &= \left[ \frac{x^3}{3} - \frac{x^4}{4} \right]_0^1 \\ &= \frac{1}{3} - \frac{1}{4} = \frac{1}{12} \end{aligned} $$

Change of Variables

Sometimes, a double integral becomes easier to evaluate when we change variables. The most common change of variables in double integrals is from rectangular coordinates to polar coordinates.

$$ \iint_R f(x,y) \,dA = \iint_{S} f(r\cos\theta, r\sin\theta) \cdot r \,dr \,d\theta $$

Here, S is the region in the (r, ) plane that corresponds to R in the (x, y) plane. The factor r appears due to the Jacobian determinant of the transformation from rectangular to polar coordinates.

Note: The Jacobian for more general changes of variables u = u(x,y), v = v(x,y) is given by:
$$ \frac{\partial(x,y)}{\partial(u,v)} = \left| \begin{matrix} \frac{\partial x}{\partial u} & \frac{\partial x}{\partial v} \\ \frac{\partial y}{\partial u} & \frac{\partial y}{\partial v} \end{matrix} \right| $$

Example 3

Evaluate $\iint_R e^{-x^2-y^2} \,dA$ where R is the region x + y a, a > 0.

Solution:

This integral is difficult to evaluate in rectangular coordinates, but simplifies greatly in polar coordinates where x + y = r and the region R becomes 0 r a, 0 2.

$$ \begin{aligned} \iint_R e^{-x^2-y^2} \,dA &= \iint_R e^{-r^2} \cdot r \,dr \,d\theta \\ &= \int_0^{2\pi} \left( \int_0^{a} re^{-r^2} \,dr \right) \,d\theta \\ &= \int_0^{2\pi} \left[ -\frac{1}{2}e^{-r^2} \right]_{r=0}^{r=a} \,d\theta \\ &= \int_0^{2\pi} \left( -\frac{1}{2}e^{-a^2} + \frac{1}{2} \right) \,d\theta \\ &= \frac{1}{2}(1-e^{-a^2}) \int_0^{2\pi} d\theta \\ &= \pi(1-e^{-a^2}) \end{aligned} $$

Applications of Double Integrals

Double integrals have numerous applications in physics, engineering, probability, and other fields:

  • Mass Calculation: If (x,y) is the density of a thin plate occupying region R in the xy-plane, then its mass M is:
    $$ M = \iint_R \rho(x,y) \,dA $$
  • Center of Mass: The coordinates of the center of mass (x, ) of a thin plate with density (x,y) are:
    $$ \bar{x} = \frac{1}{M}\iint_R x\rho(x,y) \,dA, \quad \bar{y} = \frac{1}{M}\iint_R y\rho(x,y) \,dA $$
  • Moments of Inertia: The moments of inertia about the x and y axes are:
    $$ I_x = \iint_R y^2\rho(x,y) \,dA, \quad I_y = \iint_R x^2\rho(x,y) \,dA $$
  • Probability: For a joint probability density function f(x,y), the probability that (X,Y) lies in region R is:
    $$ P((X,Y) \in R) = \iint_R f(x,y) \,dA $$
  • Surface Area: The area of a surface given by z = f(x,y) over region R is:
    $$ A = \iint_R \sqrt{1 + \left(\frac{\partial f}{\partial x}\right)^2 + \left(\frac{\partial f}{\partial y}\right)^2} \,dA $$
  • Average Value: The average value of a function f(x,y) over a region R is:
    $$ f_{avg} = \frac{1}{\text{Area}(R)} \iint_R f(x,y) \,dA $$

Example 4

Find the mass of a thin plate in the shape of the region bounded by y = x and y = 2x with density function (x,y) = xy.

Solution:

First, we need to find the intersection of the two curves: x = 2x gives x = 0.

We'll also want x to be positive for symmetry, so we consider x 0.

The region is a type I region with x ranging from 0 to some positive value (we'll determine the bounds by looking at the region between the curves). For each x > 0, y ranges from x to 2x.

$$ \begin{aligned} M &= \iint_R x^2y \,dA \\ &= \int_0^\infty \int_{x^2}^{2x^2} x^2y \,dy \,dx \\ &= \int_0^\infty x^2 \left[ \frac{y^2}{2} \right]_{y=x^2}^{y=2x^2} \,dx \\ &= \int_0^\infty x^2 \left( \frac{4x^4}{2} - \frac{x^4}{2} \right) \,dx \\ &= \frac{3}{2}\int_0^\infty x^6 \,dx \\ &= \frac{3}{2}\left[ \frac{x^7}{7} \right]_0^\infty \\ \end{aligned} $$

However, this integral diverges as x approaches infinity. To make the problem well-defined, let's restrict our region to where x ranges from 0 to a finite value, say 1.

$$ \begin{aligned} M &= \int_0^1 \int_{x^2}^{2x^2} x^2y \,dy \,dx \\ &= \frac{3}{2}\int_0^1 x^6 \,dx \\ &= \frac{3}{2}\left[ \frac{x^7}{7} \right]_0^1 \\ &= \frac{3}{2} \cdot \frac{1}{7} = \frac{3}{14} \end{aligned} $$

Conclusion

Double integrals are a fundamental tool in multivariable calculus, extending single integrals to functions of two variables. They provide a powerful method for calculating volumes, masses, probabilities, and many other physical quantities. By understanding the geometric interpretation, properties, and calculation techniques for double integrals, we gain valuable insights into multivariable functions and their applications across various scientific and engineering disciplines.

Reference Files For Double Integral Of A Function Of Two Variables
Screenshoot
File Name
multiple_integrals.pdf

File Size
0.17 MB

File Type
PDF

File Site
Description
This file is just a reference file for Double Integral Of A Function Of Two Variables. Does not guarantee that the specific things you want are included in it.
Direct download (wait 10 seconds)

Double Integral Of A Function Of Two Variables and Reference File Download Link


admin
Admin
2026-06-12 09:44:11

Theorem 2.1: In The Hyperbolic Plane, Consider Two Geodesics L1, L2 Starting At A Point A...


admin
Admin
2026-06-14 19:32:48

Change Of Variables Formula For Double Integrals and Reference File Download Link


admin
Admin
2026-06-09 14:30:22

Linear Equations In Two Variables and Reference File Download Link


admin
Admin
2026-06-07 16:26:11

Relationship Between Two Variables and Reference File Download Link


admin
Admin
2026-06-08 16:56:14