Skip to content

Commit

Permalink
Merge pull request #407 from math-comp/measurable_function
Browse files Browse the repository at this point in the history
definition of measurable function
  • Loading branch information
CohenCyril authored Aug 2, 2021
2 parents 9b8749a + d30caf9 commit 537d905
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG_UNRELEASED.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
+ lemma `bigcup_set_cond`
- in `classical_sets.v`:
+ lemmas `bigcupD1`, `bigcapD1`
- in `measure.v`:
+ definition `measurable_fun`

### Changed

Expand Down
5 changes: 5 additions & 0 deletions theories/measure.v
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ From HB Require Import structures.
(* forall Y, mu X = mu (X `&` Y) + mu (X `&` ~` Y) *)
(* measure_is_complete mu == the measure mu is complete *)
(* *)
(* measurable_fun D f == the function f with domain D is measurable *)
(* *)
(* Caratheodory theorem: *)
(* caratheodory_type mu := T, where mu : {outer_measure set T -> {ereal R}} *)
(* it is a canonical mesurableType copy of T. *)
Expand Down Expand Up @@ -1035,6 +1037,9 @@ Definition measure_is_complete (R : realType) (T : measurableType)
(mu : set T -> \bar R) :=
forall X, mu.-negligible X -> measurable X.

Definition measurable_fun (T U : measurableType) (D : set T) (f : T -> U) :=
forall Y, measurable Y -> measurable ((f @^-1` Y) `&` D).

Section caratheodory_measure.
Variables (R : realType) (T : Type) (mu : {outer_measure set T -> \bar R}).
Local Notation U := (caratheodory_type mu).
Expand Down

0 comments on commit 537d905

Please sign in to comment.