Use this skill when working on integration-theory problems in measure theory.
Decision Tree
Simple function integration
For s = sum(a_i * chi_{E_i}): integral s dmu = sum(a_i * mu(E_i))
sympy_compute.py simplify "simple_integral"
Monotone Convergence Theorem (MCT)
If 0 <= f_n <= f_{n+1} and f_n -> f:
lim integral(f_n) = integral(lim f_n)
Use for increasing sequences
Dominated Convergence Theorem (DCT)
If |f_n| <= g (integrable) and f_n -> f pointwise:
lim integral(f_n) = integral(f)
z3_solve.py prove "dominated_convergence"
Fatou's Lemma
integral(liminf f_n) <= liminf(integral f_n)
Use as lower bound when MCT/DCT don't apply
Fubini-Tonelli
For product measures: switch order of integration
Tonelli: non-negative functions (always valid)
Fubini: integrable functions
Tool Commands
Sympy_Simple_Integral
uv run python -m runtime.harness scripts/sympy_compute.py integrate "sum(a_i * chi_E_i)" --var mu
Z3_Mct
uv run python -m runtime.harness scripts/z3_solve.py prove "f_n_increasing implies lim_integral_equals_integral_lim"
Z3_Dct
uv run python -m runtime.harness scripts/z3_solve.py prove "abs(f_n) <= g and g_integrable implies limit_exchange"
Sympy_Fatou
uv run python -m runtime.harness scripts/sympy_compute.py limit "liminf(integral_f_n)" --comparison "integral_liminf_f_n"
Key Techniques
From indexed textbooks:
[Measure, Integration Real Analysis (... (Z-Library)] If you go at a leisurely pace, then covering Chapters 1–5 in the rst semester may be a good goal. If you go a bit faster, then covering Chapters 1–6 in the rst semester may be more appropriate. For a second-semester course, covering some subset of Chapters 6 through 12 should produce a good course.
[Measure, Integration Real Analysis (... (Z-Library)] Suppose B is a Borel set and f : B R is a Lebesgue measurable function. B : g(x) = f (x) gj Open Access This chapter is licensed under the terms of the Creative Commons Attribution-NonCommercial 4. International License (http://creativecommons.
[Measure, Integration Real Analysis (... (Z-Library)] Statue in Milan of Maria Gaetana Agnesi, who in 1748 published one of the rst calculus textbooks. A translation of her book into English was published in 1801. In this chapter, we develop a method of integration more powerful than methods contemplated by the pioneers of calculus.
[Measure, Integration Real Analysis (... (Z-Library)] Preface for Instructors Chapter 3: Integration with respect to a measure is dened in this chapter in a natural fashion rst for nonnegative measurable functions, and then for real-valued measurable functions. The Monotone Convergence Theorem and the Dominated Convergence Theorem are the big results in this chapter that allow us to interchange integrals and limits under appropriate conditions. Preface for Instructors Chapter 8: This chapter focuses on Hilbert spaces, which play a central role in modern mathematics.
[Measure, Integration Real Analysis (... (Z-Library)] Chapter 6: After a quick review of metric spaces and vector spaces, this chapter denes normed vector spaces. The big result here is the Hahn–Banach Theorem about extending bounded linear functionals from a subspace to the whole space. Then this chapter introduces Banach spaces.
Cognitive Tools Reference
See .claude/skills/math-mode/SKILL.md for full tool documentation.
1---2name: integration-theory3description: Integration Theory4---56# Integration Theory78## When to Use910Use this skill when working on integration-theory problems in measure theory.1112## Decision Tree1314151. **Simple function integration**16 - For s = sum(a_i * chi_{E_i}): integral s dmu = sum(a_i * mu(E_i))17 - `sympy_compute.py simplify "simple_integral"`18192. **Monotone Convergence Theorem (MCT)**20 - If 0 <= f_n <= f_{n+1} and f_n -> f:21 - lim integral(f_n) = integral(lim f_n)22 - Use for increasing sequences23243. **Dominated Convergence Theorem (DCT)**25 - If |f_n| <= g (integrable) and f_n -> f pointwise:26 - lim integral(f_n) = integral(f)27 - `z3_solve.py prove "dominated_convergence"`28294. **Fatou's Lemma**30 - integral(liminf f_n) <= liminf(integral f_n)31 - Use as lower bound when MCT/DCT don't apply32335. **Fubini-Tonelli**34 - For product measures: switch order of integration35 - Tonelli: non-negative functions (always valid)36 - Fubini: integrable functions373839## Tool Commands4041### Sympy_Simple_Integral42```bash43uv run python -m runtime.harness scripts/sympy_compute.py integrate "sum(a_i * chi_E_i)" --var mu44```4546### Z3_Mct47```bash48uv run python -m runtime.harness scripts/z3_solve.py prove "f_n_increasing implies lim_integral_equals_integral_lim"49```5051### Z3_Dct52```bash53uv run python -m runtime.harness scripts/z3_solve.py prove "abs(f_n) <= g and g_integrable implies limit_exchange"54```5556### Sympy_Fatou57```bash58uv run python -m runtime.harness scripts/sympy_compute.py limit "liminf(integral_f_n)" --comparison "integral_liminf_f_n"59```6061## Key Techniques6263*From indexed textbooks:*6465- [Measure, Integration Real Analysis (... (Z-Library)] If you go at a leisurely pace, then covering Chapters 1–5 in the rst semester may be a good goal. If you go a bit faster, then covering Chapters 1–6 in the rst semester may be more appropriate. For a second-semester course, covering some subset of Chapters 6 through 12 should produce a good course.66- [Measure, Integration Real Analysis (... (Z-Library)] Suppose B is a Borel set and f : B R is a Lebesgue measurable function. B : g(x) = f (x) gj Open Access This chapter is licensed under the terms of the Creative Commons Attribution-NonCommercial 4. International License (http://creativecommons.67- [Measure, Integration Real Analysis (... (Z-Library)] Statue in Milan of Maria Gaetana Agnesi, who in 1748 published one of the rst calculus textbooks. A translation of her book into English was published in 1801. In this chapter, we develop a method of integration more powerful than methods contemplated by the pioneers of calculus.68- [Measure, Integration Real Analysis (... (Z-Library)] Preface for Instructors Chapter 3: Integration with respect to a measure is dened in this chapter in a natural fashion rst for nonnegative measurable functions, and then for real-valued measurable functions. The Monotone Convergence Theorem and the Dominated Convergence Theorem are the big results in this chapter that allow us to interchange integrals and limits under appropriate conditions. Preface for Instructors Chapter 8: This chapter focuses on Hilbert spaces, which play a central role in modern mathematics.69- [Measure, Integration Real Analysis (... (Z-Library)] Chapter 6: After a quick review of metric spaces and vector spaces, this chapter denes normed vector spaces. The big result here is the Hahn–Banach Theorem about extending bounded linear functionals from a subspace to the whole space. Then this chapter introduces Banach spaces.7071## Cognitive Tools Reference7273See `.claude/skills/math-mode/SKILL.md` for full tool documentation.
Run npx skillmds@latest add dojogenesis/integration-theory in your terminal (requires Node.js), paste this page's agent-chat prompt into Claude, Cursor, or any MCP-connected agent, or download the SKILL.md file and copy it into your agent's skills directory.
Integration Theory It is listed under Integrations & APIs on SkillMD.
This skill has not completed SkillMD's automated safety review yet. SkillMD never runs a skill's scripts for you; review the SKILL.md before installing.
This skill is tagged as working with Claude Code, Claude.ai, OpenAI Codex. SKILL.md is an open format, so most agents that read a skills directory can load it too.
Yes. Installing skills from SkillMD is free, and the skill stays under its author's original license.
DojoGenesis (@dojogenesis) published this skill. Their other Agent Skills are listed on their SkillMD profile.