Get the FREE Ultimate OpenClaw Setup Guide →

lebesgue-measure

npx machina-cli add skill parcadei/Continuous-Claude-v3/lebesgue-measure --openclaw
Files (1)
SKILL.md
3.2 KB

Lebesgue Measure

When to Use

Use this skill when working on lebesgue-measure problems in measure theory.

Decision Tree

  1. Outer measure construction

    • m*(A) = inf{sum |I_n| : A subset union(I_n)}
    • sympy_compute.py sum "length(I_n)" --var n
  2. Caratheodory criterion

    • E is measurable if: m*(A) = m*(A & E) + m*(A & E^c) for all A
    • z3_solve.py prove "caratheodory_criterion"
  3. Lebesgue measure properties

    • Translation invariant: m(E + x) = m(E)
    • sigma-additive on measurable sets
    • m([a,b]) = b - a
  4. Regularity theorems

    • Inner regularity: m(E) = sup{m(K) : K compact, K subset E}
    • Outer regularity: m(E) = inf{m(U) : U open, E subset U}

Tool Commands

Sympy_Outer_Measure

uv run python -m runtime.harness scripts/sympy_compute.py sum "length(I_n)" --var n --from 1 --to oo

Z3_Caratheodory

uv run python -m runtime.harness scripts/z3_solve.py prove "mu(A) == mu(A & E) + mu(A & E_complement)"

Sympy_Borel_Sets

uv run python -m runtime.harness scripts/sympy_compute.py simplify "open_set_countable_union"

Key Techniques

From indexed textbooks:

  • [Measure, Integration Real Analysis (... (Z-Library)] Lebesgue measure on the Lebesgue measurable sets does have one small advantage over Lebesgue measure on the Borel sets: every subset of a set with (outer) measure 0 is Lebesgue measurable but is not necessarily a Borel set. However, any natural process that produces a subset of R will produce a Borel set. Thus this small advantage does not often come up in practice.
  • [Measure, Integration Real Analysis (... (Z-Library)] B j j You have probably long suspected that not every subset of R is a Borel set. Now j j j j Section 2D Lebesgue Measure restricted to the Borel sets, is a measure. Borel sets Outer measure is a measure on (R, of R.
  • [Measure, Integration Real Analysis (... (Z-Library)] The terminology Lebesgue set would make good sense in parallel to the termi- nology Borel set. However, Lebesgue set has another meaning, so we need to use Lebesgue measurable set. Every Lebesgue measurable set differs from a Borel set by a set with outer measure 0.
  • [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)] Egorov’s Theorem, which states that pointwise convergence of a sequence of measurable functions is close to uniform convergence, has multiple applications in later chapters. Luzin’s Theorem, back in the context of R, sounds spectacular but has no other uses in this book and thus can be skipped if you are pressed for time. Chapter 4: The highlight of this chapter is the Lebesgue Differentiation Theorem, which allows us to differentiate an integral.

Cognitive Tools Reference

See .claude/skills/math-mode/SKILL.md for full tool documentation.

Source

git clone https://github.com/parcadei/Continuous-Claude-v3/blob/main/.claude/skills/math/measure-theory/lebesgue-measure/SKILL.mdView on GitHub

Overview

Learn strategies for tackling Lebesgue measure tasks in measure theory. This skill guides you through outer measure construction, Carathéodory measurability checks, and regularity principles, with concrete tool commands to apply.

How This Skill Works

Outer measure is built from coverings: m*(A) is the infimum of total lengths of coverings. Then test measurability with Carathéodory: m*(A) = m*(A∩E) + m*(A∩E^c) for all A, and use regularity to approximate by compact and open sets.

When to Use It

  • Construct outer measure m*(A) for a given A via coverings
  • Verify Lebesgue measurability of a set using Carathéodory
  • Apply translation invariance and sigma-additivity in calculations
  • Use inner/outer regularity to bound or compute m(E)
  • Work with tool commands to compute open-set unions or prove equalities

Quick Start

  1. Step 1: Review outer measure and Carathéodory definitions
  2. Step 2: Use tool commands to compute m*(A) and verify measurability
  3. Step 3: Apply regularity to bound or pin down m(E)

Best Practices

  • Start with outer measure coverage strategies (I_n) to bound m*(A)
  • Apply the Carathéodory criterion to confirm measurability of E
  • Use inner/outer regularity to approximate E by compact K and open U
  • Check core properties: translation invariance and sigma-additivity
  • Validate with simple examples like intervals and null sets

Example Use Cases

  • Compute m([a,b]) = b - a
  • Show that a subset of a measure-zero set is Lebesgue measurable
  • Bound the measure of a union of disjoint intervals via outer measure
  • Demonstrate Carathéodory measurability for a constructed E
  • Approximate a complicated set by open U or compact K to estimate m(E)

Frequently Asked Questions

Add this skill to your agents
Sponsor this space

Reach thousands of developers