Skip to content

Commit

Permalink
fixes #1297 (#1298)
Browse files Browse the repository at this point in the history
* fixes #1297
  • Loading branch information
affeldt-aist authored Aug 22, 2024
1 parent 8acde98 commit 7171aaf
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG_UNRELEASED.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,9 @@
- in `derive.v`:
+ lemma `derivable_cst`

- in `lebesgue_measure.v`:
+ lemma `measurable_funX` (was `measurable_fun_pow`)

### Deprecated

### Removed
Expand Down
4 changes: 2 additions & 2 deletions theories/lebesgue_measure.v
Original file line number Diff line number Diff line change
Expand Up @@ -1840,8 +1840,8 @@ under eq_fun do rewrite -mulr_natr.
by do 2 apply: measurable_funM => //.
Qed.

Lemma measurable_funX {R : realType} D (f : R -> R) n : measurable_fun D f ->
measurable_fun D (fun x => f x ^+ n).
Lemma measurable_funX d (T : measurableType d) {R : realType} D (f : T -> R) n :
measurable_fun D f -> measurable_fun D (fun x => f x ^+ n).
Proof.
move=> mf.
exact: (@measurable_comp _ _ _ _ _ _ setT (fun x : R => x ^+ n) _ f).
Expand Down

0 comments on commit 7171aaf

Please sign in to comment.