fix: Exercise 1.4.28(ii) needs μ(E) < ⊤, like part (i) - #644
Merged
teorth merged 1 commit intoAug 11, 2026
Merged
Conversation
approx_sigma_finite drops part (i)'s hfin : mu univ < top in favor of sigma-finiteness of the algebra's generating sequence, but places no bound on mu E itself. Part (i) gets mu E < top for free from mu univ < top; part (ii) needs it stated explicitly. Counterexample: X = R, B = finite unions of integer-endpoint intervals, mu = Lebesgue. mu is sigma-finite over B via A n = [-n,n), but E = union of [2n, 2n+1) over n is in sigma(B) with mu E = infinity. Every F in B is determined by finitely many integer breakpoints, so E symmDiff F contains infinitely many unit intervals for any such F, and mu(E symmDiff F) = infinity for every choice - no F can get within any finite epsilon. Added the missing hEfin : mu E < top hypothesis.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
approx_sigma_finite drops part (i)'s
hfin : μ univ < ⊤in favor of σ-finiteness of the algebra's generating sequence, but places no bound onμ Eitself. Part (i) getsμ E < ⊤for free fromμ univ < ⊤; part (ii) needs it stated explicitly.Counterexample: X = ℝ, B = finite unions of integer-endpoint intervals, μ = Lebesgue. μ is σ-finite over B via A n = [-n,n), but E = ⋃ₙ [2n, 2n+1) is in σ(B) with μ E = ∞. Every F ∈ B is determined by finitely many integer breakpoints, so E Δ F contains infinitely many unit intervals for any such F, and μ(E Δ F) = ∞ for every choice — no F gets within any finite ε.
Added the missing
hEfin : μ E < ⊤hypothesis.Note: I wasn't able to complete a local
lake buildfor this one (network contention on my machine during the mathlib4 fetch) — this is a minimal, single-hypothesis, statement-only change with no proof body (sorry), hand-checked against the type signature and the already-compiling siblingapprox_finiteabove it. Happy to iterate if CI (build_book.yml) flags anything.