Skip to content

Commit

Permalink
rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
affeldt-aist committed Jul 20, 2022
1 parent 181b688 commit ff090da
Show file tree
Hide file tree
Showing 2 changed files with 74 additions and 175 deletions.
7 changes: 6 additions & 1 deletion theories/measure.v
Original file line number Diff line number Diff line change
Expand Up @@ -1464,14 +1464,19 @@ Arguments measure_bigcup {d R T} mu A.
solve [apply: measure_sigma_additive] : core.
#[global] Hint Extern 0 (is_true (0 <= _)) => solve [apply: measure_ge0] : core.

Definition mpushforward d d' (T1 : measurableType d) (T2 : measurableType d')
(R : realFieldType) (f : T1 -> T2) (mf : measurable_fun setT f)
(m : {measure set T1 -> \bar R}) A :=
m (f @^-1` A).

Section pushforward_measure.
Local Open Scope ereal_scope.
Variables (d d' : measure_display).
Variables (T1 : measurableType d) (T2 : measurableType d') (f : T1 -> T2).
Hypothesis mf : measurable_fun setT f.
Variables (R : realFieldType) (m : {measure set T1 -> \bar R}).

Definition pushforward A := m (f @^-1` A).
Local Notation pushforward := (mpushforward mf m).

Let pushforward0 : pushforward set0 = 0.
Proof. by rewrite /pushforward preimage_set0 measure0. Qed.
Expand Down
Loading

0 comments on commit ff090da

Please sign in to comment.