integration-theory
SolidProblem-solving strategies for integration theory in measure theory
AI & Automation 3,795 stars
297 forks Updated 4 months ago MIT
Install
Quality Score: 86/100
Stars 20%
Recency 20%
Frontmatter 20%
Documentation 15%
Issue Health 10%
License 10%
Description 5%
Skill Content
# Integration Theory
## When to Use
Use this skill when working on integration-theory problems in measure theory.
## Decision Tree
1. **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"`
2. **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
3. **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"`
4. **Fatou's Lemma**
- integral(liminf f_n) <= liminf(integral f_n)
- Use as lower bound when MCT/DCT don't apply
5. **Fubini-Tonelli**
- For product measures: switch order of integration
- Tonelli: non-negative functions (always valid)
- Fubini: integrable functions
## Tool Commands
### Sympy_Simple_Integral
```bash
uv run python -m runtime.harness scripts/sympy_compute.py integrate "sum(a_i * chi_E_i)" --var mu
```
### Z3_Mct
```bash
uv run python -m runtime.harness scripts/z3_solve.py prove "f_n_increasing implies lim_integral_equals_integral_lim"
```
### Z3_Dct
```bash
uv run python -m runtime.harness scripts/z3_solve.py prove "abs(f_n) <= g and g_integrable implies limit_exchange"
```
### Sympy_Fatou
```bash
uv run python -m runtime.harness scripts/sympy_compute.py limit "liminf(integral_f_n)" --comparison "integral_lim...
Details
- Author
- parcadei
- Repository
- parcadei/Continuous-Claude-v3
- Created
- 5 months ago
- Last Updated
- 4 months ago
- Language
- Python
- License
- MIT
Similar Skills
Semantically similar based on skill content — not just same category
AI & Automation Solid
integration-theory
Problem-solving strategies for integration theory in measure theory
496 Updated 1 months ago
vibeeval AI & Automation Solid
lebesgue-measure
Problem-solving strategies for lebesgue measure in measure theory
3,795 Updated 4 months ago
parcadei AI & Automation Solid
numerical-integration
Problem-solving strategies for numerical integration in numerical methods
3,795 Updated 4 months ago
parcadei AI & Automation Solid
lebesgue-measure
Problem-solving strategies for lebesgue measure in measure theory
496 Updated 1 months ago
vibeeval AI & Automation Solid
numerical-integration
Problem-solving strategies for numerical integration in numerical methods
496 Updated 1 months ago
vibeeval