Fill auxiliary sorries in Cor 11.10.3 and Prop 11.10.6#497
Open
XPiPiT wants to merge 1 commit intoteorth:mainfrom
Open
Fill auxiliary sorries in Cor 11.10.3 and Prop 11.10.6#497XPiPiT wants to merge 1 commit intoteorth:mainfrom
XPiPiT wants to merge 1 commit intoteorth:mainfrom
Conversation
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.
Scope
This PR fills only the two unlabeled auxiliary sorries in
Analysis/Section_11_10.lean:RS_integ_eq_integ_of_mul_deriv(Corollary 11.10.3): the twowhysub-lemmas insideh1andh2.RS_integ_of_comp(Proposition 11.10.6): thehfφ_bddstep.Exercise-labeled sorries are intentionally untouched, in respect of the policy stated in CONTRIBUTING.md ("I do not intend to place solutions in this repository directly"):
integ_of_mul_deriv(Exercise 11.10.1) — unchangedPiecewiseConstantOn.RS_integ_of_comp(Exercise 11.10.2) — unchangedexample(Exercise 11.10.3) — unchangedThe interpretation here is that the unlabeled sorries inside otherwise-complete proofs (those with the comment
-- This proof is adapted from the structure of the original text) are completion gaps in the proof scaffolding, not exercises for the reader. If this interpretation is wrong and these are also intended as exercises, please feel free to close.Approach
Cor 11.10.3 — both
whysub-lemmasBoth have the same shape (lower vs. upper integral monotonicity under non-negative weight multiplication). For each:
gofh * α'.h ≤ f(resp.f ≤ h) andα' ≥ 0(from the existinghα'_nonneg) to liftgto a minorant/majorant off * α'viamul_le_mul_of_nonneg_right.integ_le_lower_integral/upper_integral_le_integ.The
BddOn (h * α')step is inlined as a 4-line direct proof rather than depending onBddOn.mul(which issorryinSection_9_6.lean:185), keeping the chain free of unproved dependencies.Prop 11.10.6 —
hfφ_bddBoundedness of
f ∘ φfollows immediately from boundedness offon[φ a, φ b]plusφ([a,b]) ⊆ [φ a, φ b]from monotonicity. The same upper bound transfers without modification.Build status
lake buildpasses with zero errors (verified locally; 3533 jobs built successfully).Notes