Complete proofs for PreL1 and L1 space structure#434
Merged
teorth merged 5 commits intoteorth:mainfrom Jan 20, 2026
Merged
Conversation
- Implement ComplexAbsolutelyIntegrable.zero: prove zero function is absolutely integrable using zero simple function representation and empty set measure - Complete PreL1.inst_AddZeroClass.zero: use ComplexAbsolutelyIntegrable.zero instead of sorry - Complete PreL1.inst_AddZeroClass.zero_add and add_zero: prove zero addition identities via function extensionality and Pi.zero_apply - Complete PreL1.inst_addCommMonoid.add_assoc and add_comm: prove associativity and commutativity via function extensionality and ring properties All proofs replace sorry placeholders with complete implementations.
Prove that the norm of the zero function is zero, completing the proof that zero is absolutely integrable with norm zero.
Remove redundant comments
- L1.dist_eq: Prove distance equals norm of difference (trivial by definition) - L1.dist_eq_zero: Complete proof that distance is zero iff functions are equal almost everywhere The proof shows that dist([f], [g]) = 0 ↔ f = g a.e. by: 1. Converting distance to integral of |f - g| 2. Using UnsignedLebesgueIntegral.eq_zero_aeZero 3. Showing the sets where functions differ are equal
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.
This PR completes proofs for the PreL1 and L1 space structure in Section 1.3.4.
Summary of changes:
All proofs replace sorry placeholders with complete implementations, establishing the foundational structure for L¹ space as a normed vector space.