Complete proofs for absolutely integrable functions in Section 1.3.4#433
Merged
teorth merged 4 commits intoteorth:mainfrom Jan 15, 2026
Merged
Complete proofs for absolutely integrable functions in Section 1.3.4#433teorth merged 4 commits intoteorth:mainfrom
teorth merged 4 commits intoteorth:mainfrom
Conversation
- Implement RealMeasurable.measurable_pos: prove positive part is unsigned measurable using continuity of max(·,0) composition - Implement RealMeasurable.measurable_neg: prove negative part is unsigned measurable using continuity of max(-·,0) composition - Implement RealAbsolutelyIntegrable.pos: prove positive part is absolutely integrable via monotonicity of integral - Implement RealAbsolutelyIntegrable.neg: prove negative part is absolutely integrable via monotonicity of integral All four proofs replace sorry placeholders with complete implementations.
- Implement RealSimpleFunction.absolutelyIntegrable_iff': bidirectional equivalence between simple function and general absolute integrability using constant sequences and simple integral equality - Implement ComplexSimpleFunction.absolutelyIntegrable_iff': same for complex functions - Implement RealSimpleFunction.AbsolutelyIntegrable.integ_eq: prove simple function integral equals general Lebesgue integral via pos/neg decomposition - Implement ComplexSimpleFunction.AbsolutelyIntegrable.integ_eq: prove complex simple function integral equals general integral via real/imaginary decomposition All four proofs replace sorry placeholders with complete implementations.
…ions - Implement RealAbsolutelyIntegrable.add: sum is absolutely integrable via triangle inequality and integral additivity - Implement ComplexAbsolutelyIntegrable.add: same for complex functions - Implement RealAbsolutelyIntegrable.sub: difference is absolutely integrable via norm_sub_le - Implement ComplexAbsolutelyIntegrable.sub: same for complex functions - Implement RealAbsolutelyIntegrable.smul: scalar multiple is absolutely integrable via norm_mul and integral homogeneity - Implement ComplexAbsolutelyIntegrable.smul: same for complex functions - Implement RealAbsolutelyIntegrable.of_neg: negation via smul with -1 - Implement ComplexAbsolutelyIntegrable.of_neg: same for complex functions - Implement ComplexAbsolutelyIntegrable.conj: conjugation preserves absolute integrability via norm_conj All nine proofs replace sorry placeholders with complete implementations using measurability, norm bounds, and integral properties.
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.
Summary
Positive/Negative Parts:
Simple Function Equivalences:
Closure Properties:
All proofs replace
sorryplaceholders with complete implementations using measurability, norm bounds, continuity, and integral properties.