Guozhen AIGlobal AI field notes and model intelligence

English translation

Define the integrand

Published:

Category: AI Calculus for Beginners

Read time: 4 min

Lesson #17Images are preserved from the source page

AI Article Decision Snapshot

Turn the lesson into workflow, model, budget, and security checks before choosing tools.

Use this quick snapshot before leaving the article. It keeps the next search tied to practical AI software, model/API, cost, privacy, and implementation questions.

Workflow fit

Identify the real job behind the article: coding, research, document review, support, analytics, content, or internal automation.

Model or tool decision

Decide whether the next step is a software shortlist, an AI tool comparison, an API platform choice, or a model benchmark.

Budget and usage signal

Estimate seats, API calls, prompt volume, retries, review time, and fallback work before assuming the workflow is cheap.

Security and privacy review

Check whether source code, customer data, private documents, prompts, logs, or embeddings will enter the AI workflow.

Concept Map for Computing Multiple Integrals

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.

Checklist for Computing Multiple Integrals

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 f(x,y)f(x, y), we aim to compute its double integral over region DD:

Df(x,y)dxdy\iint_D f(x, y) \, dx \, dy

This expression means summing (in the limit sense) the values of f(x,y)f(x, y) across all points (x,y)(x, y) in DD, yielding an overall “volume” or “aggregate quantity.”

Describing Region DD

Region DD may be as simple as a rectangle—or as complex as a curved, irregular domain. Typically, we approximate DD by subdividing it into small rectangles, evaluate ff 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:

  1. Identify the region of integration DD: Clearly define the shape and extent of the domain.
  2. Choose the order of integration: Decide whether to integrate with respect to xx first and then yy, or vice versa.
  3. Set the integration limits: Determine the bounds for each variable based on the geometry of DD.
  4. Evaluate the inner integral: Compute the integral with respect to the inner variable.
  5. 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 f(x,y)=x2+y2f(x, y) = x^2 + y^2, and wish to compute its double integral over the rectangular region D=[0,1]×[0,1]D = [0, 1] \times [0, 1].

Step 1: Identify Region DD

Here, DD is the unit square in the Cartesian plane: 0x10 \leq x \leq 1 and 0y10 \leq y \leq 1.

Step 2: Choose Integration Order

We choose to integrate with respect to xx first, then yy.

Decision Card for Computing Multiple Integrals

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:

Df(x,y)dxdy=0101(x2+y2)dxdy\iint_D f(x, y) \, dx \, dy = \int_0^1 \int_0^1 (x^2 + y^2) \, dx \, dy

Step 4: Evaluate the Inner Integral

Compute the inner integral with respect to xx:

01(x2+y2)dx=01x2dx+01y2dx\int_0^1 (x^2 + y^2) \, dx = \int_0^1 x^2 \, dx + \int_0^1 y^2 \, dx

First term:

01x2dx=[x33]01=13\int_0^1 x^2 \, dx = \left[ \frac{x^3}{3} \right]_0^1 = \frac{1}{3}

Since y2y^2 is constant with respect to xx:

01y2dx=y2011dx=y2\int_0^1 y^2 \, dx = y^2 \cdot \int_0^1 1 \, dx = y^2

So the inner integral evaluates to:

01(x2+y2)dx=13+y2\int_0^1 (x^2 + y^2) \, dx = \frac{1}{3} + y^2

Step 5: Evaluate the Outer Integral

Substitute the result into the outer integral:

Calculus Reading Roadmap Card

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.

01(13+y2)dy=0113dy+01y2dy\int_0^1 \left( \frac{1}{3} + y^2 \right) \, dy = \int_0^1 \frac{1}{3} \, dy + \int_0^1 y^2 \, dy

First term:

0113dy=13[y]01=13\int_0^1 \frac{1}{3} \, dy = \frac{1}{3} \cdot \left[ y \right]_0^1 = \frac{1}{3}

Second term:

01y2dy=[y33]01=13\int_0^1 y^2 \, dy = \left[ \frac{y^3}{3} \right]_0^1 = \frac{1}{3}

Therefore:

01(13+y2)dy=13+13=23\int_0^1 \left( \frac{1}{3} + y^2 \right) \, dy = \frac{1}{3} + \frac{1}{3} = \frac{2}{3}

Hence, the value of the double integral is:

Df(x,y)dxdy=23\iint_D f(x, y) \, dx \, dy = \frac{2}{3}

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.

Application Review Card: Multiple Integrals in Multivariable Calculus

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.

Application Check Card: Multiple Integrals in Multivariable Calculus

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.

Apply This Lesson

Turn this article into AI software, model, API, and security decisions.

English Article FAQ

Use this article as evidence before choosing AI tools

How should I use this AI Tutorials article?

Use it as the implementation or learning layer, then connect the idea to AI software buyer guides, tool comparisons, benchmarks, API choices, and security checks before making a production decision.

Is this English article different from the Chinese original?

The English edition is localized for global AI readers while preserving the original diagrams, screenshots, prompts, code examples, and source context from the Chinese article.

What should I read after Define the integrand?

Continue with AI Software Buyer Guides, AI Tools Workbench, Best AI Coding Agents, AI Model Benchmarks, OpenAI vs Anthropic API, or LLM Security Tools depending on the decision you need to make.

Can this article alone choose an AI product or model?

No. Treat the article as evidence and context, then validate fit with pricing, privacy requirements, integration effort, benchmark results, workflow tests, and fallback planning.

Continue

Keep reading from here

Browse English site

Reader Messages

Reader messages

Questions, corrections, extra sources, or hands-on results can be left here. No login is required.

Max 800 characters

To reduce spam, each message is checked for length, link count, and posting frequency.

0/800

Messages

0 messages
Loading messages...