fix: restore determinant scaling factor to measure_linear - #636
Open
Chessing234 wants to merge 1 commit into
Open
fix: restore determinant scaling factor to measure_linear#636Chessing234 wants to merge 1 commit into
Chessing234 wants to merge 1 commit into
Conversation
Exercise 1.1.11(2) states the linear image measure scales by D (the witness the statement itself introduces), matching measure_linear_of_elem and measure_linear_det right below it, plus the doc comment. As written the RHS dropped D entirely, i.e. claimed linear maps preserve Jordan measure exactly, which is false (e.g. x -> 2x doubles the measure of [0,1]).
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.
exercise 1.1.11(2):
measure_linear's conclusion dropped theDit existentially introduces, so as stated it claims linear maps preserve jordan measure exactly. counterexample:x ↦ 2xon[0,1]doubles the measure. the elementary-set version right above (measure_linear_of_elem) andmeasure_linear_detright below both already assume/use theD *factor, and the doc comment says "up to determinant scaling" - so this just brings the statement in line with its neighbors.