Truncated logarithm over the natural numbers#1311
Open
LorenzoMolena wants to merge 3 commits into
Open
Conversation
…t/Mod` ; move `≤-·sk-cancel` and `<-·sk-cancel` from `Fin/Properties` to `Nat/Order`, giving shorter inductive proofs
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 introduces the truncated logarithm of
xin baseb, as the unique natural numberlsuch thatb ^ l ≤ x < b ^ (suc l).The base
band argumentxare also natural numbers subject to2 ≤ band1 ≤ x; these assumptions are enforced by implicit arguments of type2 ≤ᵗ band1 ≤ᵗ x, to make computing withlogeasier.However, for stating and proving the properties, it was more straightforward to work with a base of the form
suc (suc m), rather than using an implicit argument.Some auxiliary lemmas were also added in the
Nat.ModandNat.Ordermodules; in particular,≤-·sk-canceland<-·sk-cancelhave been moved fromFin.PropertiestoNat.Order, using shorter inductive proofs.