English translation
Define the integrand
Multiple integrals extend summation from one dimension to two or higher dimensions. The key is not to compute first—but to clearly sketch the region of integration.
I always begin by drawing the region and labeling its upper and lower bounds. If the region is incorrect, even the neatest computation is meaningless.
In the previous article, we explored multivariable functions and their partial derivatives—laying the essential groundwork for understanding how to compute multiple integrals. Multiple integrals are a central concept in multivariable calculus, used to compute the “volume” or “total quantity” over a region in multidimensional space. In this article, we’ll introduce the concept of multiple integrals in detail, walk through systematic computational methods, and reinforce understanding with concrete examples.
Fundamental Concepts of Multiple Integrals
A multiple integral is the process of integrating a multivariable function over a specified region. Specifically, given a function , we aim to compute its double integral over region :
This expression means summing (in the limit sense) the values of across all points in , yielding an overall “volume” or “aggregate quantity.”
Describing Region
Region may be as simple as a rectangle—or as complex as a curved, irregular domain. Typically, we approximate by subdividing it into small rectangles, evaluate on each subrectangle, sum those values, and then take the limit as subdivisions become infinitely fine—yielding the formal definition of the double integral.
Step-by-Step Procedure for Computing Multiple Integrals
Computing a multiple integral generally follows these steps:
- Identify the region of integration : Clearly define the shape and extent of the domain.
- Choose the order of integration: Decide whether to integrate with respect to first and then , or vice versa.
- Set the integration limits: Determine the bounds for each variable based on the geometry of .
- Evaluate the inner integral: Compute the integral with respect to the inner variable.
- Evaluate the outer integral: Integrate the result of the inner integral with respect to the outer variable.
We now illustrate these steps with a concrete example.
Practical Example: Computing a Double Integral
Suppose we have the function , and wish to compute its double integral over the rectangular region .
Step 1: Identify Region
Here, is the unit square in the Cartesian plane: and .
Step 2: Choose Integration Order
We choose to integrate with respect to first, then .
When computing multiple integrals:
- First, sketch the region of integration;
- Then determine the integration order;
- Next, write down clear upper and lower limits;
- Finally, verify consistency between the integrand and its geometric interpretation.
Step 3: Set Integration Limits
Thus, the double integral becomes:
Step 4: Evaluate the Inner Integral
Compute the inner integral with respect to :
First term:
Since is constant with respect to :
So the inner integral evaluates to:
Step 5: Evaluate the Outer Integral
Substitute the result into the outer integral:
After reading Multiple Integrals in Multivariable Calculus, don’t stop at “I understand.” Go back, pick one step, and work through it yourself—then note where you get stuck. This makes future learning more solid.
First term:
Second term:
Therefore:
Hence, the value of the double integral is:
Python Implementation
We can compute this double integral numerically using scipy.integrate.dblquad. Below is the corresponding code:
from scipy.integrate import dblquad
# Define the integrand
def integrand(x, y):
return x**2 + y**2
# Define integration bounds
x_lower = 0
x_upper = 1
y_lower = 0
y_upper = 1
# Compute the double integral
result, error = dblquad(integrand, x_lower, x_upper, lambda x: y_lower, lambda x: y_upper)
print(f"Double integral result: {result:.2f}, Estimated error: {error:.2e}")
Running this code confirms our manual calculation.
When reviewing Multiple Integrals in Multivariable Calculus, place key concepts, procedural steps, and observable outcomes side-by-side on a single page for efficient recall.
When practicing Multiple Integrals in Multivariable Calculus, write input conditions, computational actions, and resulting outputs together—making future review faster and more reliable.
Summary
In this article, we thoroughly examined the concept and computation of multiple integrals, supported by a worked example to deepen intuition about multivariable calculus. In upcoming articles, we’ll explore real-world applications of multivariable calculus—broadening our conceptual toolkit further.
Continue