Guozhen AIGlobal AI field notes and model intelligence

English translation

13. Definite Integrals: Definition and Properties

Published:

Category: AI Calculus Basics

Read time: 4 min

Lesson #13Images 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: Definition and Properties of Definite Integrals

A definite integral can be understood as the limit of the sum of areas of many small rectangles. Its properties help you split, combine, and simplify integrals over complex intervals.

Checkpoint Map: Definition and Properties of Definite Integrals

I pay close attention to the direction of the limits of integration: reversing the upper and lower bounds flips the sign of the definite integral.

In the previous lesson, we covered the fundamentals of integration—including basic integration rules and the method of substitution. Today, we delve deeper into the concept, formal definition, and key properties of definite integrals. This material is essential for understanding how definite integrals are applied in practice—and serves as a solid foundation for the upcoming lesson, “Definite Integrals and Applications: The Relationship Between Integration and Area.”

Definition of the Definite Integral

A definite integral represents the accumulated value of a function over a specified interval. It is conventionally denoted by

abf(x)dx,\int_a^b f(x)\,dx,

which expresses the definite integral of f(x)f(x) over the closed interval [a,b][a, b].

Definition & Properties Flashcard

When learning the definite integral, focus on five core ideas: partitioning the interval, evaluating the function, approximating area, taking the limit, and recognizing fundamental properties.

Formal Definition

The rigorous definition of the definite integral relies on the Riemann sum. Given an interval [a,b][a, b], divide it into nn subintervals, each of width Δxi=xixi1\Delta x_i = x_i - x_{i-1}, where x0=ax_0 = a and xn=bx_n = b. Choose a sample point cic_i in each subinterval [xi1,xi][x_{i-1}, x_i]. The corresponding Riemann sum is:

Sn=i=1nf(ci)Δxi.S_n = \sum_{i=1}^{n} f(c_i)\,\Delta x_i.

As nn \to \infty—that is, as the number of subintervals grows without bound and their widths shrink toward zero—the limit of the Riemann sums defines the definite integral:

abf(x)dx=limnSn.\int_a^b f(x)\,dx = \lim_{n \to \infty} S_n.

Geometric Interpretation

Geometrically, the definite integral represents the net signed area between the curve y=f(x)y = f(x) and the xx-axis over [a,b][a, b]. Areas above the xx-axis contribute positively; those below contribute negatively. As a result, the definite integral may yield a negative value—or even zero—if positive and negative regions exactly cancel.

Properties of Definite Integrals

Several important properties underpin efficient computation and theoretical reasoning with definite integrals:

Calculus Reading Roadmap Card

After reading “Definite Integrals and Applications: Definition and Properties,” take one minute to reflect: Are the key concepts clearly distinguished? Can you reproduce the solution steps? Can you restate the conclusions in your own words?

  1. Linearity:
    If cc is a constant and f(x),g(x)f(x), g(x) are integrable functions, then

    ab[cf(x)+g(x)]dx=cabf(x)dx+abg(x)dx.\int_a^b \big[ c f(x) + g(x) \big]\,dx = c \int_a^b f(x)\,dx + \int_a^b g(x)\,dx.
  2. Additivity over Intervals:
    If a<b<ca < b < c, then

    acf(x)dx=abf(x)dx+bcf(x)dx.\int_a^c f(x)\,dx = \int_a^b f(x)\,dx + \int_b^c f(x)\,dx.
  3. Reversal of Limits:
    Swapping the upper and lower limits introduces a minus sign:

    abf(x)dx=baf(x)dx.\int_a^b f(x)\,dx = -\int_b^a f(x)\,dx.
  4. Order (Inequality) Property:
    If mf(x)Mm \leq f(x) \leq M for all x[c,d]x \in [c, d], then

    cdmdxcdf(x)dxcdMdx.\int_c^d m\,dx \leq \int_c^d f(x)\,dx \leq \int_c^d M\,dx.

    Equivalently, m(dc)cdf(x)dxM(dc)m(d - c) \leq \int_c^d f(x)\,dx \leq M(d - c).

These properties allow us to manipulate and simplify definite integrals effectively.

Application Example: Computing a Definite Integral

Let’s now apply the definition and properties of definite integrals to compute a concrete example.

Example: Compute 13x2dx\int_1^3 x^2\,dx

We evaluate the definite integral of f(x)=x2f(x) = x^2 over [1,3][1, 3]:

13x2dx.\int_1^3 x^2\,dx.

Step-by-Step Computation

  1. Find an Antiderivative:
    An antiderivative F(x)F(x) of f(x)=x2f(x) = x^2 is

    F(x)=x33+C.F(x) = \frac{x^3}{3} + C.
  2. Apply the Fundamental Theorem of Calculus:
    Using the Newton–Leibniz formula:

    13x2dx=F(3)F(1)=(333)(133)=913=263.\int_1^3 x^2\,dx = F(3) - F(1) = \left(\frac{3^3}{3}\right) - \left(\frac{1^3}{3}\right) = 9 - \frac{1}{3} = \frac{26}{3}.
  3. Result:
    Therefore, 13x2dx=263\int_1^3 x^2\,dx = \frac{26}{3}.

Code Implementation

We can verify this result using Python and SymPy:

import sympy as sp

x = sp.symbols('x')
f = x**2
integral_value = sp.integrate(f, (x, 1, 3))
integral_value

Running this code returns 263\frac{26}{3}, confirming our manual calculation.

Application Review Card: Definition and Properties of Definite Integrals

When reviewing “Definite Integrals and Applications: Definition and Properties,” place key concepts, procedural steps, and final results on the same page for efficient recall.

Application Checklist Card: Definition and Properties of Definite Integrals

When practicing “Definite Integrals and Applications: Definition and Properties,” write the input conditions, computational actions, and observable outputs together—making future review straightforward.

Conclusion

This article introduced the definition and essential properties of definite integrals, illustrated with a concrete computational example. These foundations prepare you for the next lesson: “Definite Integrals and Applications: The Relationship Between Integration and Area.” In subsequent tutorials, we will explore how definite integrals quantify geometric area—and how these ideas power core techniques in artificial intelligence and machine learning. Through this series, you’ll develop both conceptual depth and practical fluency in applying calculus to real-world AI problems.

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 13. Definite Integrals: Definition and Properties?

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...