| author | sultana | 
| Wed, 19 Feb 2014 15:57:02 +0000 | |
| changeset 55587 | 5d3db2c626e3 | 
| parent 54418 | 3b8e33d1a39a | 
| child 56166 | 9a241bc276cd | 
| permissions | -rw-r--r-- | 
| 42148 | 1 | (* Title: HOL/Probability/Probability_Measure.thy | 
| 42067 | 2 | Author: Johannes Hölzl, TU München | 
| 3 | Author: Armin Heller, TU München | |
| 4 | *) | |
| 5 | ||
| 42148 | 6 | header {*Probability measure*}
 | 
| 42067 | 7 | |
| 42148 | 8 | theory Probability_Measure | 
| 47694 | 9 | imports Lebesgue_Measure Radon_Nikodym | 
| 35582 | 10 | begin | 
| 11 | ||
| 45777 
c36637603821
remove unnecessary sublocale instantiations in HOL-Probability (for clarity and speedup); remove Infinite_Product_Measure.product_prob_space which was a duplicate of Probability_Measure.product_prob_space
 hoelzl parents: 
45712diff
changeset | 12 | locale prob_space = finite_measure + | 
| 47694 | 13 | assumes emeasure_space_1: "emeasure M (space M) = 1" | 
| 38656 | 14 | |
| 45777 
c36637603821
remove unnecessary sublocale instantiations in HOL-Probability (for clarity and speedup); remove Infinite_Product_Measure.product_prob_space which was a duplicate of Probability_Measure.product_prob_space
 hoelzl parents: 
45712diff
changeset | 15 | lemma prob_spaceI[Pure.intro!]: | 
| 47694 | 16 | assumes *: "emeasure M (space M) = 1" | 
| 45777 
c36637603821
remove unnecessary sublocale instantiations in HOL-Probability (for clarity and speedup); remove Infinite_Product_Measure.product_prob_space which was a duplicate of Probability_Measure.product_prob_space
 hoelzl parents: 
45712diff
changeset | 17 | shows "prob_space M" | 
| 
c36637603821
remove unnecessary sublocale instantiations in HOL-Probability (for clarity and speedup); remove Infinite_Product_Measure.product_prob_space which was a duplicate of Probability_Measure.product_prob_space
 hoelzl parents: 
45712diff
changeset | 18 | proof - | 
| 
c36637603821
remove unnecessary sublocale instantiations in HOL-Probability (for clarity and speedup); remove Infinite_Product_Measure.product_prob_space which was a duplicate of Probability_Measure.product_prob_space
 hoelzl parents: 
45712diff
changeset | 19 | interpret finite_measure M | 
| 
c36637603821
remove unnecessary sublocale instantiations in HOL-Probability (for clarity and speedup); remove Infinite_Product_Measure.product_prob_space which was a duplicate of Probability_Measure.product_prob_space
 hoelzl parents: 
45712diff
changeset | 20 | proof | 
| 47694 | 21 | show "emeasure M (space M) \<noteq> \<infinity>" using * by simp | 
| 45777 
c36637603821
remove unnecessary sublocale instantiations in HOL-Probability (for clarity and speedup); remove Infinite_Product_Measure.product_prob_space which was a duplicate of Probability_Measure.product_prob_space
 hoelzl parents: 
45712diff
changeset | 22 | qed | 
| 
c36637603821
remove unnecessary sublocale instantiations in HOL-Probability (for clarity and speedup); remove Infinite_Product_Measure.product_prob_space which was a duplicate of Probability_Measure.product_prob_space
 hoelzl parents: 
45712diff
changeset | 23 | show "prob_space M" by default fact | 
| 38656 | 24 | qed | 
| 25 | ||
| 40859 | 26 | abbreviation (in prob_space) "events \<equiv> sets M" | 
| 47694 | 27 | abbreviation (in prob_space) "prob \<equiv> measure M" | 
| 28 | abbreviation (in prob_space) "random_variable M' X \<equiv> X \<in> measurable M M'" | |
| 53015 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51683diff
changeset | 29 | abbreviation (in prob_space) "expectation \<equiv> integral\<^sup>L M" | 
| 35582 | 30 | |
| 47694 | 31 | lemma (in prob_space) prob_space_distr: | 
| 32 | assumes f: "f \<in> measurable M M'" shows "prob_space (distr M M' f)" | |
| 33 | proof (rule prob_spaceI) | |
| 34 | have "f -` space M' \<inter> space M = space M" using f by (auto dest: measurable_space) | |
| 35 | with f show "emeasure (distr M M' f) (space (distr M M' f)) = 1" | |
| 36 | by (auto simp: emeasure_distr emeasure_space_1) | |
| 43339 | 37 | qed | 
| 38 | ||
| 40859 | 39 | lemma (in prob_space) prob_space: "prob (space M) = 1" | 
| 47694 | 40 | using emeasure_space_1 unfolding measure_def by (simp add: one_ereal_def) | 
| 41981 
cdf7693bbe08
reworked Probability theory: measures are not type restricted to positive extended reals
 hoelzl parents: 
41831diff
changeset | 41 | |
| 
cdf7693bbe08
reworked Probability theory: measures are not type restricted to positive extended reals
 hoelzl parents: 
41831diff
changeset | 42 | lemma (in prob_space) prob_le_1[simp, intro]: "prob A \<le> 1" | 
| 
cdf7693bbe08
reworked Probability theory: measures are not type restricted to positive extended reals
 hoelzl parents: 
41831diff
changeset | 43 | using bounded_measure[of A] by (simp add: prob_space) | 
| 
cdf7693bbe08
reworked Probability theory: measures are not type restricted to positive extended reals
 hoelzl parents: 
41831diff
changeset | 44 | |
| 47694 | 45 | lemma (in prob_space) not_empty: "space M \<noteq> {}"
 | 
| 46 | using prob_space by auto | |
| 41981 
cdf7693bbe08
reworked Probability theory: measures are not type restricted to positive extended reals
 hoelzl parents: 
41831diff
changeset | 47 | |
| 47694 | 48 | lemma (in prob_space) measure_le_1: "emeasure M X \<le> 1" | 
| 49 | using emeasure_space[of M X] by (simp add: emeasure_space_1) | |
| 42950 
6e5c2a3c69da
move lemmas to Extended_Reals and Extended_Real_Limits
 hoelzl parents: 
42902diff
changeset | 50 | |
| 43339 | 51 | lemma (in prob_space) AE_I_eq_1: | 
| 47694 | 52 |   assumes "emeasure M {x\<in>space M. P x} = 1" "{x\<in>space M. P x} \<in> sets M"
 | 
| 53 | shows "AE x in M. P x" | |
| 43339 | 54 | proof (rule AE_I) | 
| 47694 | 55 |   show "emeasure M (space M - {x \<in> space M. P x}) = 0"
 | 
| 56 | using assms emeasure_space_1 by (simp add: emeasure_compl) | |
| 43339 | 57 | qed (insert assms, auto) | 
| 58 | ||
| 40859 | 59 | lemma (in prob_space) prob_compl: | 
| 41981 
cdf7693bbe08
reworked Probability theory: measures are not type restricted to positive extended reals
 hoelzl parents: 
41831diff
changeset | 60 | assumes A: "A \<in> events" | 
| 38656 | 61 | shows "prob (space M - A) = 1 - prob A" | 
| 41981 
cdf7693bbe08
reworked Probability theory: measures are not type restricted to positive extended reals
 hoelzl parents: 
41831diff
changeset | 62 | using finite_measure_compl[OF A] by (simp add: prob_space) | 
| 35582 | 63 | |
| 47694 | 64 | lemma (in prob_space) AE_in_set_eq_1: | 
| 65 | assumes "A \<in> events" shows "(AE x in M. x \<in> A) \<longleftrightarrow> prob A = 1" | |
| 66 | proof | |
| 67 | assume ae: "AE x in M. x \<in> A" | |
| 68 |   have "{x \<in> space M. x \<in> A} = A" "{x \<in> space M. x \<notin> A} = space M - A"
 | |
| 50244 
de72bbe42190
qualified interpretation of sigma_algebra, to avoid name clashes
 immler parents: 
50104diff
changeset | 69 | using `A \<in> events`[THEN sets.sets_into_space] by auto | 
| 47694 | 70 | with AE_E2[OF ae] `A \<in> events` have "1 - emeasure M A = 0" | 
| 71 | by (simp add: emeasure_compl emeasure_space_1) | |
| 72 | then show "prob A = 1" | |
| 73 | using `A \<in> events` by (simp add: emeasure_eq_measure one_ereal_def) | |
| 74 | next | |
| 75 | assume prob: "prob A = 1" | |
| 76 | show "AE x in M. x \<in> A" | |
| 77 | proof (rule AE_I) | |
| 78 |     show "{x \<in> space M. x \<notin> A} \<subseteq> space M - A" by auto
 | |
| 79 | show "emeasure M (space M - A) = 0" | |
| 80 | using `A \<in> events` prob | |
| 81 | by (simp add: prob_compl emeasure_space_1 emeasure_eq_measure one_ereal_def) | |
| 82 | show "space M - A \<in> events" | |
| 83 | using `A \<in> events` by auto | |
| 84 | qed | |
| 85 | qed | |
| 86 | ||
| 87 | lemma (in prob_space) AE_False: "(AE x in M. False) \<longleftrightarrow> False" | |
| 88 | proof | |
| 89 | assume "AE x in M. False" | |
| 90 |   then have "AE x in M. x \<in> {}" by simp
 | |
| 91 | then show False | |
| 92 | by (subst (asm) AE_in_set_eq_1) auto | |
| 93 | qed simp | |
| 94 | ||
| 95 | lemma (in prob_space) AE_prob_1: | |
| 96 | assumes "prob A = 1" shows "AE x in M. x \<in> A" | |
| 97 | proof - | |
| 98 | from `prob A = 1` have "A \<in> events" | |
| 99 | by (metis measure_notin_sets zero_neq_one) | |
| 100 | with AE_in_set_eq_1 assms show ?thesis by simp | |
| 101 | qed | |
| 102 | ||
| 50098 | 103 | lemma (in prob_space) AE_const[simp]: "(AE x in M. P) \<longleftrightarrow> P" | 
| 104 | by (cases P) (auto simp: AE_False) | |
| 105 | ||
| 106 | lemma (in prob_space) AE_contr: | |
| 107 | assumes ae: "AE \<omega> in M. P \<omega>" "AE \<omega> in M. \<not> P \<omega>" | |
| 108 | shows False | |
| 109 | proof - | |
| 110 | from ae have "AE \<omega> in M. False" by eventually_elim auto | |
| 111 | then show False by auto | |
| 112 | qed | |
| 113 | ||
| 43339 | 114 | lemma (in prob_space) expectation_less: | 
| 115 | assumes [simp]: "integrable M X" | |
| 49786 | 116 | assumes gt: "AE x in M. X x < b" | 
| 43339 | 117 | shows "expectation X < b" | 
| 118 | proof - | |
| 119 | have "expectation X < expectation (\<lambda>x. b)" | |
| 47694 | 120 | using gt emeasure_space_1 | 
| 43340 
60e181c4eae4
lemma: independence is equal to mutual information = 0
 hoelzl parents: 
43339diff
changeset | 121 | by (intro integral_less_AE_space) auto | 
| 43339 | 122 | then show ?thesis using prob_space by simp | 
| 123 | qed | |
| 124 | ||
| 125 | lemma (in prob_space) expectation_greater: | |
| 126 | assumes [simp]: "integrable M X" | |
| 49786 | 127 | assumes gt: "AE x in M. a < X x" | 
| 43339 | 128 | shows "a < expectation X" | 
| 129 | proof - | |
| 130 | have "expectation (\<lambda>x. a) < expectation X" | |
| 47694 | 131 | using gt emeasure_space_1 | 
| 43340 
60e181c4eae4
lemma: independence is equal to mutual information = 0
 hoelzl parents: 
43339diff
changeset | 132 | by (intro integral_less_AE_space) auto | 
| 43339 | 133 | then show ?thesis using prob_space by simp | 
| 134 | qed | |
| 135 | ||
| 136 | lemma (in prob_space) jensens_inequality: | |
| 137 | fixes a b :: real | |
| 49786 | 138 | assumes X: "integrable M X" "AE x in M. X x \<in> I" | 
| 43339 | 139 |   assumes I: "I = {a <..< b} \<or> I = {a <..} \<or> I = {..< b} \<or> I = UNIV"
 | 
| 140 | assumes q: "integrable M (\<lambda>x. q (X x))" "convex_on I q" | |
| 141 | shows "q (expectation X) \<le> expectation (\<lambda>x. q (X x))" | |
| 142 | proof - | |
| 46731 | 143 |   let ?F = "\<lambda>x. Inf ((\<lambda>t. (q x - q t) / (x - t)) ` ({x<..} \<inter> I))"
 | 
| 49786 | 144 |   from X(2) AE_False have "I \<noteq> {}" by auto
 | 
| 43339 | 145 | |
| 146 | from I have "open I" by auto | |
| 147 | ||
| 148 | note I | |
| 149 | moreover | |
| 150 |   { assume "I \<subseteq> {a <..}"
 | |
| 151 | with X have "a < expectation X" | |
| 152 | by (intro expectation_greater) auto } | |
| 153 | moreover | |
| 154 |   { assume "I \<subseteq> {..< b}"
 | |
| 155 | with X have "expectation X < b" | |
| 156 | by (intro expectation_less) auto } | |
| 157 | ultimately have "expectation X \<in> I" | |
| 158 | by (elim disjE) (auto simp: subset_eq) | |
| 159 | moreover | |
| 160 |   { fix y assume y: "y \<in> I"
 | |
| 161 | with q(2) `open I` have "Sup ((\<lambda>x. q x + ?F x * (y - x)) ` I) = q y" | |
| 51475 
ebf9d4fd00ba
introduct the conditional_complete_lattice type class; generalize theorems about real Sup and Inf to it
 hoelzl parents: 
50419diff
changeset | 162 | by (auto intro!: cSup_eq_maximum convex_le_Inf_differential image_eqI[OF _ y] simp: interior_open) } | 
| 43339 | 163 | ultimately have "q (expectation X) = Sup ((\<lambda>x. q x + ?F x * (expectation X - x)) ` I)" | 
| 164 | by simp | |
| 165 | also have "\<dots> \<le> expectation (\<lambda>w. q (X w))" | |
| 51475 
ebf9d4fd00ba
introduct the conditional_complete_lattice type class; generalize theorems about real Sup and Inf to it
 hoelzl parents: 
50419diff
changeset | 166 | proof (rule cSup_least) | 
| 43339 | 167 |     show "(\<lambda>x. q x + ?F x * (expectation X - x)) ` I \<noteq> {}"
 | 
| 168 |       using `I \<noteq> {}` by auto
 | |
| 169 | next | |
| 170 | fix k assume "k \<in> (\<lambda>x. q x + ?F x * (expectation X - x)) ` I" | |
| 171 | then guess x .. note x = this | |
| 172 | have "q x + ?F x * (expectation X - x) = expectation (\<lambda>w. q x + ?F x * (X w - x))" | |
| 47694 | 173 | using prob_space by (simp add: X) | 
| 43339 | 174 | also have "\<dots> \<le> expectation (\<lambda>w. q (X w))" | 
| 175 | using `x \<in> I` `open I` X(2) | |
| 49786 | 176 | apply (intro integral_mono_AE integral_add integral_cmult integral_diff | 
| 177 | lebesgue_integral_const X q) | |
| 178 | apply (elim eventually_elim1) | |
| 179 | apply (intro convex_le_Inf_differential) | |
| 180 | apply (auto simp: interior_open q) | |
| 181 | done | |
| 43339 | 182 | finally show "k \<le> expectation (\<lambda>w. q (X w))" using x by auto | 
| 183 | qed | |
| 184 | finally show "q (expectation X) \<le> expectation (\<lambda>x. q (X x))" . | |
| 185 | qed | |
| 186 | ||
| 50001 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 187 | subsection  {* Introduce binder for probability *}
 | 
| 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 188 | |
| 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 189 | syntax | 
| 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 190 |   "_prob" :: "pttrn \<Rightarrow> logic \<Rightarrow> logic \<Rightarrow> logic" ("('\<P>'(_ in _. _'))")
 | 
| 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 191 | |
| 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 192 | translations | 
| 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 193 |   "\<P>(x in M. P)" => "CONST measure M {x \<in> CONST space M. P}"
 | 
| 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 194 | |
| 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 195 | definition | 
| 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 196 | "cond_prob M P Q = \<P>(\<omega> in M. P \<omega> \<and> Q \<omega>) / \<P>(\<omega> in M. Q \<omega>)" | 
| 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 197 | |
| 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 198 | syntax | 
| 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 199 |   "_conditional_prob" :: "pttrn \<Rightarrow> logic \<Rightarrow> logic \<Rightarrow> logic \<Rightarrow> logic" ("('\<P>'(_ in _. _ \<bar>/ _'))")
 | 
| 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 200 | |
| 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 201 | translations | 
| 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 202 | "\<P>(x in M. P \<bar> Q)" => "CONST cond_prob M (\<lambda>x. P) (\<lambda>x. Q)" | 
| 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 203 | |
| 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 204 | lemma (in prob_space) AE_E_prob: | 
| 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 205 | assumes ae: "AE x in M. P x" | 
| 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 206 |   obtains S where "S \<subseteq> {x \<in> space M. P x}" "S \<in> events" "prob S = 1"
 | 
| 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 207 | proof - | 
| 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 208 | from ae[THEN AE_E] guess N . | 
| 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 209 | then show thesis | 
| 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 210 | by (intro that[of "space M - N"]) | 
| 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 211 | (auto simp: prob_compl prob_space emeasure_eq_measure) | 
| 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 212 | qed | 
| 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 213 | |
| 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 214 | lemma (in prob_space) prob_neg: "{x\<in>space M. P x} \<in> events \<Longrightarrow> \<P>(x in M. \<not> P x) = 1 - \<P>(x in M. P x)"
 | 
| 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 215 | by (auto intro!: arg_cong[where f=prob] simp add: prob_compl[symmetric]) | 
| 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 216 | |
| 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 217 | lemma (in prob_space) prob_eq_AE: | 
| 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 218 |   "(AE x in M. P x \<longleftrightarrow> Q x) \<Longrightarrow> {x\<in>space M. P x} \<in> events \<Longrightarrow> {x\<in>space M. Q x} \<in> events \<Longrightarrow> \<P>(x in M. P x) = \<P>(x in M. Q x)"
 | 
| 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 219 | by (rule finite_measure_eq_AE) auto | 
| 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 220 | |
| 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 221 | lemma (in prob_space) prob_eq_0_AE: | 
| 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 222 | assumes not: "AE x in M. \<not> P x" shows "\<P>(x in M. P x) = 0" | 
| 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 223 | proof cases | 
| 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 224 |   assume "{x\<in>space M. P x} \<in> events"
 | 
| 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 225 | with not have "\<P>(x in M. P x) = \<P>(x in M. False)" | 
| 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 226 | by (intro prob_eq_AE) auto | 
| 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 227 | then show ?thesis by simp | 
| 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 228 | qed (simp add: measure_notin_sets) | 
| 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 229 | |
| 50098 | 230 | lemma (in prob_space) prob_Collect_eq_0: | 
| 231 |   "{x \<in> space M. P x} \<in> sets M \<Longrightarrow> \<P>(x in M. P x) = 0 \<longleftrightarrow> (AE x in M. \<not> P x)"
 | |
| 232 | using AE_iff_measurable[OF _ refl, of M "\<lambda>x. \<not> P x"] by (simp add: emeasure_eq_measure) | |
| 233 | ||
| 234 | lemma (in prob_space) prob_Collect_eq_1: | |
| 235 |   "{x \<in> space M. P x} \<in> sets M \<Longrightarrow> \<P>(x in M. P x) = 1 \<longleftrightarrow> (AE x in M. P x)"
 | |
| 236 |   using AE_in_set_eq_1[of "{x\<in>space M. P x}"] by simp
 | |
| 237 | ||
| 238 | lemma (in prob_space) prob_eq_0: | |
| 239 | "A \<in> sets M \<Longrightarrow> prob A = 0 \<longleftrightarrow> (AE x in M. x \<notin> A)" | |
| 240 | using AE_iff_measurable[OF _ refl, of M "\<lambda>x. x \<notin> A"] | |
| 241 | by (auto simp add: emeasure_eq_measure Int_def[symmetric]) | |
| 242 | ||
| 243 | lemma (in prob_space) prob_eq_1: | |
| 244 | "A \<in> sets M \<Longrightarrow> prob A = 1 \<longleftrightarrow> (AE x in M. x \<in> A)" | |
| 245 | using AE_in_set_eq_1[of A] by simp | |
| 246 | ||
| 50001 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 247 | lemma (in prob_space) prob_sums: | 
| 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 248 |   assumes P: "\<And>n. {x\<in>space M. P n x} \<in> events"
 | 
| 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 249 |   assumes Q: "{x\<in>space M. Q x} \<in> events"
 | 
| 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 250 | assumes ae: "AE x in M. (\<forall>n. P n x \<longrightarrow> Q x) \<and> (Q x \<longrightarrow> (\<exists>!n. P n x))" | 
| 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 251 | shows "(\<lambda>n. \<P>(x in M. P n x)) sums \<P>(x in M. Q x)" | 
| 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 252 | proof - | 
| 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 253 | from ae[THEN AE_E_prob] guess S . note S = this | 
| 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 254 |   then have disj: "disjoint_family (\<lambda>n. {x\<in>space M. P n x} \<inter> S)"
 | 
| 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 255 | by (auto simp: disjoint_family_on_def) | 
| 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 256 | from S have ae_S: | 
| 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 257 |     "AE x in M. x \<in> {x\<in>space M. Q x} \<longleftrightarrow> x \<in> (\<Union>n. {x\<in>space M. P n x} \<inter> S)"
 | 
| 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 258 |     "\<And>n. AE x in M. x \<in> {x\<in>space M. P n x} \<longleftrightarrow> x \<in> {x\<in>space M. P n x} \<inter> S"
 | 
| 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 259 | using ae by (auto dest!: AE_prob_1) | 
| 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 260 | from ae_S have *: | 
| 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 261 |     "\<P>(x in M. Q x) = prob (\<Union>n. {x\<in>space M. P n x} \<inter> S)"
 | 
| 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 262 | using P Q S by (intro finite_measure_eq_AE) auto | 
| 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 263 | from ae_S have **: | 
| 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 264 |     "\<And>n. \<P>(x in M. P n x) = prob ({x\<in>space M. P n x} \<inter> S)"
 | 
| 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 265 | using P Q S by (intro finite_measure_eq_AE) auto | 
| 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 266 | show ?thesis | 
| 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 267 | unfolding * ** using S P disj | 
| 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 268 | by (intro finite_measure_UNION) auto | 
| 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 269 | qed | 
| 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 270 | |
| 54418 | 271 | lemma (in prob_space) prob_EX_countable: | 
| 272 |   assumes sets: "\<And>i. i \<in> I \<Longrightarrow> {x\<in>space M. P i x} \<in> sets M" and I: "countable I" 
 | |
| 273 | assumes disj: "AE x in M. \<forall>i\<in>I. \<forall>j\<in>I. P i x \<longrightarrow> P j x \<longrightarrow> i = j" | |
| 274 | shows "\<P>(x in M. \<exists>i\<in>I. P i x) = (\<integral>\<^sup>+i. \<P>(x in M. P i x) \<partial>count_space I)" | |
| 275 | proof - | |
| 276 | let ?N= "\<lambda>x. \<exists>!i\<in>I. P i x" | |
| 277 | have "ereal (\<P>(x in M. \<exists>i\<in>I. P i x)) = \<P>(x in M. (\<exists>i\<in>I. P i x \<and> ?N x))" | |
| 278 | unfolding ereal.inject | |
| 279 | proof (rule prob_eq_AE) | |
| 280 | show "AE x in M. (\<exists>i\<in>I. P i x) = (\<exists>i\<in>I. P i x \<and> ?N x)" | |
| 281 | using disj by eventually_elim blast | |
| 282 | qed (auto intro!: sets.sets_Collect_countable_Ex' sets.sets_Collect_conj sets.sets_Collect_countable_Ex1' I sets)+ | |
| 283 |   also have "\<P>(x in M. (\<exists>i\<in>I. P i x \<and> ?N x)) = emeasure M (\<Union>i\<in>I. {x\<in>space M. P i x \<and> ?N x})"
 | |
| 284 | unfolding emeasure_eq_measure by (auto intro!: arg_cong[where f=prob]) | |
| 285 |   also have "\<dots> = (\<integral>\<^sup>+i. emeasure M {x\<in>space M. P i x \<and> ?N x} \<partial>count_space I)"
 | |
| 286 | by (rule emeasure_UN_countable) | |
| 287 | (auto intro!: sets.sets_Collect_countable_Ex' sets.sets_Collect_conj sets.sets_Collect_countable_Ex1' I sets | |
| 288 | simp: disjoint_family_on_def) | |
| 289 | also have "\<dots> = (\<integral>\<^sup>+i. \<P>(x in M. P i x) \<partial>count_space I)" | |
| 290 | unfolding emeasure_eq_measure using disj | |
| 291 | by (intro positive_integral_cong ereal.inject[THEN iffD2] prob_eq_AE) | |
| 292 | (auto intro!: sets.sets_Collect_countable_Ex' sets.sets_Collect_conj sets.sets_Collect_countable_Ex1' I sets)+ | |
| 293 | finally show ?thesis . | |
| 294 | qed | |
| 295 | ||
| 50001 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 296 | lemma (in prob_space) cond_prob_eq_AE: | 
| 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 297 |   assumes P: "AE x in M. Q x \<longrightarrow> P x \<longleftrightarrow> P' x" "{x\<in>space M. P x} \<in> events" "{x\<in>space M. P' x} \<in> events"
 | 
| 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 298 |   assumes Q: "AE x in M. Q x \<longleftrightarrow> Q' x" "{x\<in>space M. Q x} \<in> events" "{x\<in>space M. Q' x} \<in> events"
 | 
| 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 299 | shows "cond_prob M P Q = cond_prob M P' Q'" | 
| 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 300 | using P Q | 
| 50244 
de72bbe42190
qualified interpretation of sigma_algebra, to avoid name clashes
 immler parents: 
50104diff
changeset | 301 | by (auto simp: cond_prob_def intro!: arg_cong2[where f="op /"] prob_eq_AE sets.sets_Collect_conj) | 
| 50001 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 302 | |
| 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 303 | |
| 40859 | 304 | lemma (in prob_space) joint_distribution_Times_le_fst: | 
| 47694 | 305 | "random_variable MX X \<Longrightarrow> random_variable MY Y \<Longrightarrow> A \<in> sets MX \<Longrightarrow> B \<in> sets MY | 
| 53015 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51683diff
changeset | 306 | \<Longrightarrow> emeasure (distr M (MX \<Otimes>\<^sub>M MY) (\<lambda>x. (X x, Y x))) (A \<times> B) \<le> emeasure (distr M MX X) A" | 
| 47694 | 307 | by (auto simp: emeasure_distr measurable_pair_iff comp_def intro!: emeasure_mono measurable_sets) | 
| 40859 | 308 | |
| 309 | lemma (in prob_space) joint_distribution_Times_le_snd: | |
| 47694 | 310 | "random_variable MX X \<Longrightarrow> random_variable MY Y \<Longrightarrow> A \<in> sets MX \<Longrightarrow> B \<in> sets MY | 
| 53015 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51683diff
changeset | 311 | \<Longrightarrow> emeasure (distr M (MX \<Otimes>\<^sub>M MY) (\<lambda>x. (X x, Y x))) (A \<times> B) \<le> emeasure (distr M MY Y) B" | 
| 47694 | 312 | by (auto simp: emeasure_distr measurable_pair_iff comp_def intro!: emeasure_mono measurable_sets) | 
| 40859 | 313 | |
| 45777 
c36637603821
remove unnecessary sublocale instantiations in HOL-Probability (for clarity and speedup); remove Infinite_Product_Measure.product_prob_space which was a duplicate of Probability_Measure.product_prob_space
 hoelzl parents: 
45712diff
changeset | 314 | locale pair_prob_space = pair_sigma_finite M1 M2 + M1: prob_space M1 + M2: prob_space M2 for M1 M2 | 
| 41689 
3e39b0e730d6
the measure valuation is again part of the measure_space type, instead of an explicit parameter to the locale;
 hoelzl parents: 
41661diff
changeset | 315 | |
| 53015 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51683diff
changeset | 316 | sublocale pair_prob_space \<subseteq> P: prob_space "M1 \<Otimes>\<^sub>M M2" | 
| 45777 
c36637603821
remove unnecessary sublocale instantiations in HOL-Probability (for clarity and speedup); remove Infinite_Product_Measure.product_prob_space which was a duplicate of Probability_Measure.product_prob_space
 hoelzl parents: 
45712diff
changeset | 317 | proof | 
| 53015 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51683diff
changeset | 318 | show "emeasure (M1 \<Otimes>\<^sub>M M2) (space (M1 \<Otimes>\<^sub>M M2)) = 1" | 
| 49776 | 319 | by (simp add: M2.emeasure_pair_measure_Times M1.emeasure_space_1 M2.emeasure_space_1 space_pair_measure) | 
| 45777 
c36637603821
remove unnecessary sublocale instantiations in HOL-Probability (for clarity and speedup); remove Infinite_Product_Measure.product_prob_space which was a duplicate of Probability_Measure.product_prob_space
 hoelzl parents: 
45712diff
changeset | 320 | qed | 
| 40859 | 321 | |
| 47694 | 322 | locale product_prob_space = product_sigma_finite M for M :: "'i \<Rightarrow> 'a measure" + | 
| 45777 
c36637603821
remove unnecessary sublocale instantiations in HOL-Probability (for clarity and speedup); remove Infinite_Product_Measure.product_prob_space which was a duplicate of Probability_Measure.product_prob_space
 hoelzl parents: 
45712diff
changeset | 323 | fixes I :: "'i set" | 
| 
c36637603821
remove unnecessary sublocale instantiations in HOL-Probability (for clarity and speedup); remove Infinite_Product_Measure.product_prob_space which was a duplicate of Probability_Measure.product_prob_space
 hoelzl parents: 
45712diff
changeset | 324 | assumes prob_space: "\<And>i. prob_space (M i)" | 
| 42988 | 325 | |
| 45777 
c36637603821
remove unnecessary sublocale instantiations in HOL-Probability (for clarity and speedup); remove Infinite_Product_Measure.product_prob_space which was a duplicate of Probability_Measure.product_prob_space
 hoelzl parents: 
45712diff
changeset | 326 | sublocale product_prob_space \<subseteq> M: prob_space "M i" for i | 
| 42988 | 327 | by (rule prob_space) | 
| 328 | ||
| 45777 
c36637603821
remove unnecessary sublocale instantiations in HOL-Probability (for clarity and speedup); remove Infinite_Product_Measure.product_prob_space which was a duplicate of Probability_Measure.product_prob_space
 hoelzl parents: 
45712diff
changeset | 329 | locale finite_product_prob_space = finite_product_sigma_finite M I + product_prob_space M I for M I | 
| 42988 | 330 | |
| 53015 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51683diff
changeset | 331 | sublocale finite_product_prob_space \<subseteq> prob_space "\<Pi>\<^sub>M i\<in>I. M i" | 
| 45777 
c36637603821
remove unnecessary sublocale instantiations in HOL-Probability (for clarity and speedup); remove Infinite_Product_Measure.product_prob_space which was a duplicate of Probability_Measure.product_prob_space
 hoelzl parents: 
45712diff
changeset | 332 | proof | 
| 53015 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51683diff
changeset | 333 | show "emeasure (\<Pi>\<^sub>M i\<in>I. M i) (space (\<Pi>\<^sub>M i\<in>I. M i)) = 1" | 
| 47694 | 334 | by (simp add: measure_times M.emeasure_space_1 setprod_1 space_PiM) | 
| 45777 
c36637603821
remove unnecessary sublocale instantiations in HOL-Probability (for clarity and speedup); remove Infinite_Product_Measure.product_prob_space which was a duplicate of Probability_Measure.product_prob_space
 hoelzl parents: 
45712diff
changeset | 335 | qed | 
| 42988 | 336 | |
| 337 | lemma (in finite_product_prob_space) prob_times: | |
| 338 | assumes X: "\<And>i. i \<in> I \<Longrightarrow> X i \<in> sets (M i)" | |
| 53015 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51683diff
changeset | 339 | shows "prob (\<Pi>\<^sub>E i\<in>I. X i) = (\<Prod>i\<in>I. M.prob i (X i))" | 
| 42988 | 340 | proof - | 
| 53015 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51683diff
changeset | 341 | have "ereal (measure (\<Pi>\<^sub>M i\<in>I. M i) (\<Pi>\<^sub>E i\<in>I. X i)) = emeasure (\<Pi>\<^sub>M i\<in>I. M i) (\<Pi>\<^sub>E i\<in>I. X i)" | 
| 47694 | 342 | using X by (simp add: emeasure_eq_measure) | 
| 343 | also have "\<dots> = (\<Prod>i\<in>I. emeasure (M i) (X i))" | |
| 42988 | 344 | using measure_times X by simp | 
| 47694 | 345 | also have "\<dots> = ereal (\<Prod>i\<in>I. measure (M i) (X i))" | 
| 346 | using X by (simp add: M.emeasure_eq_measure setprod_ereal) | |
| 42859 
d9dfc733f25c
add product of probability spaces with finite cardinality
 hoelzl parents: 
42858diff
changeset | 347 | finally show ?thesis by simp | 
| 
d9dfc733f25c
add product of probability spaces with finite cardinality
 hoelzl parents: 
42858diff
changeset | 348 | qed | 
| 
d9dfc733f25c
add product of probability spaces with finite cardinality
 hoelzl parents: 
42858diff
changeset | 349 | |
| 47694 | 350 | section {* Distributions *}
 | 
| 42892 | 351 | |
| 47694 | 352 | definition "distributed M N X f \<longleftrightarrow> distr M N X = density N f \<and> | 
| 353 | f \<in> borel_measurable N \<and> (AE x in N. 0 \<le> f x) \<and> X \<in> measurable M N" | |
| 36624 | 354 | |
| 47694 | 355 | lemma | 
| 50003 | 356 | assumes "distributed M N X f" | 
| 357 | shows distributed_distr_eq_density: "distr M N X = density N f" | |
| 358 | and distributed_measurable: "X \<in> measurable M N" | |
| 359 | and distributed_borel_measurable: "f \<in> borel_measurable N" | |
| 360 | and distributed_AE: "(AE x in N. 0 \<le> f x)" | |
| 361 | using assms by (simp_all add: distributed_def) | |
| 362 | ||
| 363 | lemma | |
| 364 | assumes D: "distributed M N X f" | |
| 365 | shows distributed_measurable'[measurable_dest]: | |
| 366 | "g \<in> measurable L M \<Longrightarrow> (\<lambda>x. X (g x)) \<in> measurable L N" | |
| 367 | and distributed_borel_measurable'[measurable_dest]: | |
| 368 | "h \<in> measurable L N \<Longrightarrow> (\<lambda>x. f (h x)) \<in> borel_measurable L" | |
| 369 | using distributed_measurable[OF D] distributed_borel_measurable[OF D] | |
| 370 | by simp_all | |
| 39097 | 371 | |
| 47694 | 372 | lemma | 
| 373 | shows distributed_real_measurable: "distributed M N X (\<lambda>x. ereal (f x)) \<Longrightarrow> f \<in> borel_measurable N" | |
| 374 | and distributed_real_AE: "distributed M N X (\<lambda>x. ereal (f x)) \<Longrightarrow> (AE x in N. 0 \<le> f x)" | |
| 375 | by (simp_all add: distributed_def borel_measurable_ereal_iff) | |
| 35977 | 376 | |
| 50003 | 377 | lemma | 
| 378 | assumes D: "distributed M N X (\<lambda>x. ereal (f x))" | |
| 379 | shows distributed_real_measurable'[measurable_dest]: | |
| 380 | "h \<in> measurable L N \<Longrightarrow> (\<lambda>x. f (h x)) \<in> borel_measurable L" | |
| 381 | using distributed_real_measurable[OF D] | |
| 382 | by simp_all | |
| 383 | ||
| 384 | lemma | |
| 53015 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51683diff
changeset | 385 | assumes D: "distributed M (S \<Otimes>\<^sub>M T) (\<lambda>x. (X x, Y x)) f" | 
| 50003 | 386 | shows joint_distributed_measurable1[measurable_dest]: | 
| 387 | "h1 \<in> measurable N M \<Longrightarrow> (\<lambda>x. X (h1 x)) \<in> measurable N S" | |
| 388 | and joint_distributed_measurable2[measurable_dest]: | |
| 389 | "h2 \<in> measurable N M \<Longrightarrow> (\<lambda>x. Y (h2 x)) \<in> measurable N T" | |
| 390 | using measurable_compose[OF distributed_measurable[OF D] measurable_fst] | |
| 391 | using measurable_compose[OF distributed_measurable[OF D] measurable_snd] | |
| 392 | by auto | |
| 393 | ||
| 47694 | 394 | lemma distributed_count_space: | 
| 395 | assumes X: "distributed M (count_space A) X P" and a: "a \<in> A" and A: "finite A" | |
| 396 |   shows "P a = emeasure M (X -` {a} \<inter> space M)"
 | |
| 39097 | 397 | proof - | 
| 47694 | 398 |   have "emeasure M (X -` {a} \<inter> space M) = emeasure (distr M (count_space A) X) {a}"
 | 
| 50003 | 399 | using X a A by (simp add: emeasure_distr) | 
| 47694 | 400 |   also have "\<dots> = emeasure (density (count_space A) P) {a}"
 | 
| 401 | using X by (simp add: distributed_distr_eq_density) | |
| 53015 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51683diff
changeset | 402 |   also have "\<dots> = (\<integral>\<^sup>+x. P a * indicator {a} x \<partial>count_space A)"
 | 
| 47694 | 403 | using X a by (auto simp add: emeasure_density distributed_def indicator_def intro!: positive_integral_cong) | 
| 404 | also have "\<dots> = P a" | |
| 405 | using X a by (subst positive_integral_cmult_indicator) (auto simp: distributed_def one_ereal_def[symmetric] AE_count_space) | |
| 406 | finally show ?thesis .. | |
| 39092 | 407 | qed | 
| 35977 | 408 | |
| 47694 | 409 | lemma distributed_cong_density: | 
| 410 | "(AE x in N. f x = g x) \<Longrightarrow> g \<in> borel_measurable N \<Longrightarrow> f \<in> borel_measurable N \<Longrightarrow> | |
| 411 | distributed M N X f \<longleftrightarrow> distributed M N X g" | |
| 412 | by (auto simp: distributed_def intro!: density_cong) | |
| 413 | ||
| 414 | lemma subdensity: | |
| 415 | assumes T: "T \<in> measurable P Q" | |
| 416 | assumes f: "distributed M P X f" | |
| 417 | assumes g: "distributed M Q Y g" | |
| 418 | assumes Y: "Y = T \<circ> X" | |
| 419 | shows "AE x in P. g (T x) = 0 \<longrightarrow> f x = 0" | |
| 420 | proof - | |
| 421 |   have "{x\<in>space Q. g x = 0} \<in> null_sets (distr M Q (T \<circ> X))"
 | |
| 422 | using g Y by (auto simp: null_sets_density_iff distributed_def) | |
| 423 | also have "distr M Q (T \<circ> X) = distr (distr M P X) Q T" | |
| 424 | using T f[THEN distributed_measurable] by (rule distr_distr[symmetric]) | |
| 425 |   finally have "T -` {x\<in>space Q. g x = 0} \<inter> space P \<in> null_sets (distr M P X)"
 | |
| 426 | using T by (subst (asm) null_sets_distr_iff) auto | |
| 427 |   also have "T -` {x\<in>space Q. g x = 0} \<inter> space P = {x\<in>space P. g (T x) = 0}"
 | |
| 428 | using T by (auto dest: measurable_space) | |
| 429 | finally show ?thesis | |
| 430 | using f g by (auto simp add: null_sets_density_iff distributed_def) | |
| 35977 | 431 | qed | 
| 432 | ||
| 47694 | 433 | lemma subdensity_real: | 
| 434 | fixes g :: "'a \<Rightarrow> real" and f :: "'b \<Rightarrow> real" | |
| 435 | assumes T: "T \<in> measurable P Q" | |
| 436 | assumes f: "distributed M P X f" | |
| 437 | assumes g: "distributed M Q Y g" | |
| 438 | assumes Y: "Y = T \<circ> X" | |
| 439 | shows "AE x in P. g (T x) = 0 \<longrightarrow> f x = 0" | |
| 440 | using subdensity[OF T, of M X "\<lambda>x. ereal (f x)" Y "\<lambda>x. ereal (g x)"] assms by auto | |
| 441 | ||
| 49788 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 442 | lemma distributed_emeasure: | 
| 53015 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51683diff
changeset | 443 | "distributed M N X f \<Longrightarrow> A \<in> sets N \<Longrightarrow> emeasure M (X -` A \<inter> space M) = (\<integral>\<^sup>+x. f x * indicator A x \<partial>N)" | 
| 50003 | 444 | by (auto simp: distributed_AE | 
| 49788 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 445 | distributed_distr_eq_density[symmetric] emeasure_density[symmetric] emeasure_distr) | 
| 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 446 | |
| 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 447 | lemma distributed_positive_integral: | 
| 53015 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51683diff
changeset | 448 | "distributed M N X f \<Longrightarrow> g \<in> borel_measurable N \<Longrightarrow> (\<integral>\<^sup>+x. f x * g x \<partial>N) = (\<integral>\<^sup>+x. g (X x) \<partial>M)" | 
| 50003 | 449 | by (auto simp: distributed_AE | 
| 49788 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 450 | distributed_distr_eq_density[symmetric] positive_integral_density[symmetric] positive_integral_distr) | 
| 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 451 | |
| 47694 | 452 | lemma distributed_integral: | 
| 453 | "distributed M N X f \<Longrightarrow> g \<in> borel_measurable N \<Longrightarrow> (\<integral>x. f x * g x \<partial>N) = (\<integral>x. g (X x) \<partial>M)" | |
| 50003 | 454 | by (auto simp: distributed_real_AE | 
| 47694 | 455 | distributed_distr_eq_density[symmetric] integral_density[symmetric] integral_distr) | 
| 456 | ||
| 457 | lemma distributed_transform_integral: | |
| 458 | assumes Px: "distributed M N X Px" | |
| 459 | assumes "distributed M P Y Py" | |
| 460 | assumes Y: "Y = T \<circ> X" and T: "T \<in> measurable N P" and f: "f \<in> borel_measurable P" | |
| 461 | shows "(\<integral>x. Py x * f x \<partial>P) = (\<integral>x. Px x * f (T x) \<partial>N)" | |
| 41689 
3e39b0e730d6
the measure valuation is again part of the measure_space type, instead of an explicit parameter to the locale;
 hoelzl parents: 
41661diff
changeset | 462 | proof - | 
| 47694 | 463 | have "(\<integral>x. Py x * f x \<partial>P) = (\<integral>x. f (Y x) \<partial>M)" | 
| 464 | by (rule distributed_integral) fact+ | |
| 465 | also have "\<dots> = (\<integral>x. f (T (X x)) \<partial>M)" | |
| 466 | using Y by simp | |
| 467 | also have "\<dots> = (\<integral>x. Px x * f (T x) \<partial>N)" | |
| 468 | using measurable_comp[OF T f] Px by (intro distributed_integral[symmetric]) (auto simp: comp_def) | |
| 45777 
c36637603821
remove unnecessary sublocale instantiations in HOL-Probability (for clarity and speedup); remove Infinite_Product_Measure.product_prob_space which was a duplicate of Probability_Measure.product_prob_space
 hoelzl parents: 
45712diff
changeset | 469 | finally show ?thesis . | 
| 39092 | 470 | qed | 
| 36624 | 471 | |
| 49788 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 472 | lemma (in prob_space) distributed_unique: | 
| 47694 | 473 | assumes Px: "distributed M S X Px" | 
| 49788 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 474 | assumes Py: "distributed M S X Py" | 
| 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 475 | shows "AE x in S. Px x = Py x" | 
| 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 476 | proof - | 
| 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 477 | interpret X: prob_space "distr M S X" | 
| 50003 | 478 | using Px by (intro prob_space_distr) simp | 
| 49788 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 479 | have "sigma_finite_measure (distr M S X)" .. | 
| 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 480 | with sigma_finite_density_unique[of Px S Py ] Px Py | 
| 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 481 | show ?thesis | 
| 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 482 | by (auto simp: distributed_def) | 
| 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 483 | qed | 
| 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 484 | |
| 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 485 | lemma (in prob_space) distributed_jointI: | 
| 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 486 | assumes "sigma_finite_measure S" "sigma_finite_measure T" | 
| 50003 | 487 | assumes X[measurable]: "X \<in> measurable M S" and Y[measurable]: "Y \<in> measurable M T" | 
| 53015 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51683diff
changeset | 488 | assumes [measurable]: "f \<in> borel_measurable (S \<Otimes>\<^sub>M T)" and f: "AE x in S \<Otimes>\<^sub>M T. 0 \<le> f x" | 
| 49788 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 489 | assumes eq: "\<And>A B. A \<in> sets S \<Longrightarrow> B \<in> sets T \<Longrightarrow> | 
| 53015 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51683diff
changeset | 490 |     emeasure M {x \<in> space M. X x \<in> A \<and> Y x \<in> B} = (\<integral>\<^sup>+x. (\<integral>\<^sup>+y. f (x, y) * indicator B y \<partial>T) * indicator A x \<partial>S)"
 | 
| 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51683diff
changeset | 491 | shows "distributed M (S \<Otimes>\<^sub>M T) (\<lambda>x. (X x, Y x)) f" | 
| 49788 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 492 | unfolding distributed_def | 
| 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 493 | proof safe | 
| 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 494 | interpret S: sigma_finite_measure S by fact | 
| 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 495 | interpret T: sigma_finite_measure T by fact | 
| 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 496 | interpret ST: pair_sigma_finite S T by default | 
| 47694 | 497 | |
| 49788 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 498 |   from ST.sigma_finite_up_in_pair_measure_generator guess F :: "nat \<Rightarrow> ('b \<times> 'c) set" .. note F = this
 | 
| 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 499 |   let ?E = "{a \<times> b |a b. a \<in> sets S \<and> b \<in> sets T}"
 | 
| 53015 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51683diff
changeset | 500 | let ?P = "S \<Otimes>\<^sub>M T" | 
| 49788 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 501 | show "distr M ?P (\<lambda>x. (X x, Y x)) = density ?P f" (is "?L = ?R") | 
| 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 502 | proof (rule measure_eqI_generator_eq[OF Int_stable_pair_measure_generator[of S T]]) | 
| 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 503 | show "?E \<subseteq> Pow (space ?P)" | 
| 50244 
de72bbe42190
qualified interpretation of sigma_algebra, to avoid name clashes
 immler parents: 
50104diff
changeset | 504 | using sets.space_closed[of S] sets.space_closed[of T] by (auto simp: space_pair_measure) | 
| 49788 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 505 | show "sets ?L = sigma_sets (space ?P) ?E" | 
| 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 506 | by (simp add: sets_pair_measure space_pair_measure) | 
| 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 507 | then show "sets ?R = sigma_sets (space ?P) ?E" | 
| 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 508 | by simp | 
| 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 509 | next | 
| 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 510 | interpret L: prob_space ?L | 
| 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 511 | by (rule prob_space_distr) (auto intro!: measurable_Pair) | 
| 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 512 | show "range F \<subseteq> ?E" "(\<Union>i. F i) = space ?P" "\<And>i. emeasure ?L (F i) \<noteq> \<infinity>" | 
| 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 513 | using F by (auto simp: space_pair_measure) | 
| 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 514 | next | 
| 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 515 | fix E assume "E \<in> ?E" | 
| 50003 | 516 | then obtain A B where E[simp]: "E = A \<times> B" | 
| 517 | and A[measurable]: "A \<in> sets S" and B[measurable]: "B \<in> sets T" by auto | |
| 49788 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 518 |     have "emeasure ?L E = emeasure M {x \<in> space M. X x \<in> A \<and> Y x \<in> B}"
 | 
| 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 519 | by (auto intro!: arg_cong[where f="emeasure M"] simp add: emeasure_distr measurable_Pair) | 
| 53015 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51683diff
changeset | 520 | also have "\<dots> = (\<integral>\<^sup>+x. (\<integral>\<^sup>+y. (f (x, y) * indicator B y) * indicator A x \<partial>T) \<partial>S)" | 
| 50003 | 521 | using f by (auto simp add: eq positive_integral_multc intro!: positive_integral_cong) | 
| 49788 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 522 | also have "\<dots> = emeasure ?R E" | 
| 50001 
382bd3173584
add syntax and a.e.-rules for (conditional) probability on predicates
 hoelzl parents: 
49795diff
changeset | 523 | by (auto simp add: emeasure_density T.positive_integral_fst_measurable(2)[symmetric] | 
| 49788 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 524 | intro!: positive_integral_cong split: split_indicator) | 
| 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 525 | finally show "emeasure ?L E = emeasure ?R E" . | 
| 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 526 | qed | 
| 50003 | 527 | qed (auto simp: f) | 
| 49788 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 528 | |
| 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 529 | lemma (in prob_space) distributed_swap: | 
| 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 530 | assumes "sigma_finite_measure S" "sigma_finite_measure T" | 
| 53015 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51683diff
changeset | 531 | assumes Pxy: "distributed M (S \<Otimes>\<^sub>M T) (\<lambda>x. (X x, Y x)) Pxy" | 
| 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51683diff
changeset | 532 | shows "distributed M (T \<Otimes>\<^sub>M S) (\<lambda>x. (Y x, X x)) (\<lambda>(x, y). Pxy (y, x))" | 
| 49788 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 533 | proof - | 
| 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 534 | interpret S: sigma_finite_measure S by fact | 
| 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 535 | interpret T: sigma_finite_measure T by fact | 
| 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 536 | interpret ST: pair_sigma_finite S T by default | 
| 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 537 | interpret TS: pair_sigma_finite T S by default | 
| 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 538 | |
| 50003 | 539 | note Pxy[measurable] | 
| 49788 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 540 | show ?thesis | 
| 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 541 | apply (subst TS.distr_pair_swap) | 
| 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 542 | unfolding distributed_def | 
| 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 543 | proof safe | 
| 53015 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51683diff
changeset | 544 | let ?D = "distr (S \<Otimes>\<^sub>M T) (T \<Otimes>\<^sub>M S) (\<lambda>(x, y). (y, x))" | 
| 49788 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 545 | show 1: "(\<lambda>(x, y). Pxy (y, x)) \<in> borel_measurable ?D" | 
| 50003 | 546 | by auto | 
| 49788 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 547 | with Pxy | 
| 53015 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51683diff
changeset | 548 | show "AE x in distr (S \<Otimes>\<^sub>M T) (T \<Otimes>\<^sub>M S) (\<lambda>(x, y). (y, x)). 0 \<le> (case x of (x, y) \<Rightarrow> Pxy (y, x))" | 
| 49788 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 549 | by (subst AE_distr_iff) | 
| 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 550 | (auto dest!: distributed_AE | 
| 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 551 | simp: measurable_split_conv split_beta | 
| 51683 
baefa3b461c2
generalize Borel-set properties from real/ereal/ordered_euclidean_spaces to order_topology and real_normed_vector
 hoelzl parents: 
51475diff
changeset | 552 | intro!: measurable_Pair) | 
| 53015 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51683diff
changeset | 553 | show 2: "random_variable (distr (S \<Otimes>\<^sub>M T) (T \<Otimes>\<^sub>M S) (\<lambda>(x, y). (y, x))) (\<lambda>x. (Y x, X x))" | 
| 50003 | 554 | using Pxy by auto | 
| 53015 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51683diff
changeset | 555 |     { fix A assume A: "A \<in> sets (T \<Otimes>\<^sub>M S)"
 | 
| 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51683diff
changeset | 556 | let ?B = "(\<lambda>(x, y). (y, x)) -` A \<inter> space (S \<Otimes>\<^sub>M T)" | 
| 50244 
de72bbe42190
qualified interpretation of sigma_algebra, to avoid name clashes
 immler parents: 
50104diff
changeset | 557 | from sets.sets_into_space[OF A] | 
| 49788 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 558 | have "emeasure M ((\<lambda>x. (Y x, X x)) -` A \<inter> space M) = | 
| 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 559 | emeasure M ((\<lambda>x. (X x, Y x)) -` ?B \<inter> space M)" | 
| 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 560 | by (auto intro!: arg_cong2[where f=emeasure] simp: space_pair_measure) | 
| 53015 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51683diff
changeset | 561 | also have "\<dots> = (\<integral>\<^sup>+ x. Pxy x * indicator ?B x \<partial>(S \<Otimes>\<^sub>M T))" | 
| 50003 | 562 | using Pxy A by (intro distributed_emeasure) auto | 
| 49788 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 563 | finally have "emeasure M ((\<lambda>x. (Y x, X x)) -` A \<inter> space M) = | 
| 53015 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51683diff
changeset | 564 | (\<integral>\<^sup>+ x. Pxy x * indicator A (snd x, fst x) \<partial>(S \<Otimes>\<^sub>M T))" | 
| 49788 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 565 | by (auto intro!: positive_integral_cong split: split_indicator) } | 
| 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 566 | note * = this | 
| 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 567 | show "distr M ?D (\<lambda>x. (Y x, X x)) = density ?D (\<lambda>(x, y). Pxy (y, x))" | 
| 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 568 | apply (intro measure_eqI) | 
| 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 569 | apply (simp_all add: emeasure_distr[OF 2] emeasure_density[OF 1]) | 
| 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 570 | apply (subst positive_integral_distr) | 
| 50003 | 571 | apply (auto intro!: * simp: comp_def split_beta) | 
| 49788 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 572 | done | 
| 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 573 | qed | 
| 36624 | 574 | qed | 
| 575 | ||
| 47694 | 576 | lemma (in prob_space) distr_marginal1: | 
| 577 | assumes "sigma_finite_measure S" "sigma_finite_measure T" | |
| 53015 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51683diff
changeset | 578 | assumes Pxy: "distributed M (S \<Otimes>\<^sub>M T) (\<lambda>x. (X x, Y x)) Pxy" | 
| 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51683diff
changeset | 579 | defines "Px \<equiv> \<lambda>x. (\<integral>\<^sup>+z. Pxy (x, z) \<partial>T)" | 
| 47694 | 580 | shows "distributed M S X Px" | 
| 581 | unfolding distributed_def | |
| 582 | proof safe | |
| 583 | interpret S: sigma_finite_measure S by fact | |
| 584 | interpret T: sigma_finite_measure T by fact | |
| 585 | interpret ST: pair_sigma_finite S T by default | |
| 586 | ||
| 50003 | 587 | note Pxy[measurable] | 
| 588 | show X: "X \<in> measurable M S" by simp | |
| 47694 | 589 | |
| 50003 | 590 | show borel: "Px \<in> borel_measurable S" | 
| 591 | by (auto intro!: T.positive_integral_fst_measurable simp: Px_def) | |
| 39097 | 592 | |
| 53015 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51683diff
changeset | 593 | interpret Pxy: prob_space "distr M (S \<Otimes>\<^sub>M T) (\<lambda>x. (X x, Y x))" | 
| 50003 | 594 | by (intro prob_space_distr) simp | 
| 53015 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51683diff
changeset | 595 | have "(\<integral>\<^sup>+ x. max 0 (- Pxy x) \<partial>(S \<Otimes>\<^sub>M T)) = (\<integral>\<^sup>+ x. 0 \<partial>(S \<Otimes>\<^sub>M T))" | 
| 47694 | 596 | using Pxy | 
| 50003 | 597 | by (intro positive_integral_cong_AE) (auto simp: max_def dest: distributed_AE) | 
| 49788 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 598 | |
| 47694 | 599 | show "distr M S X = density S Px" | 
| 600 | proof (rule measure_eqI) | |
| 601 | fix A assume A: "A \<in> sets (distr M S X)" | |
| 50003 | 602 | with X measurable_space[of Y M T] | 
| 53015 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51683diff
changeset | 603 | have "emeasure (distr M S X) A = emeasure (distr M (S \<Otimes>\<^sub>M T) (\<lambda>x. (X x, Y x))) (A \<times> space T)" | 
| 50003 | 604 | by (auto simp add: emeasure_distr intro!: arg_cong[where f="emeasure M"]) | 
| 53015 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51683diff
changeset | 605 | also have "\<dots> = emeasure (density (S \<Otimes>\<^sub>M T) Pxy) (A \<times> space T)" | 
| 47694 | 606 | using Pxy by (simp add: distributed_def) | 
| 53015 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51683diff
changeset | 607 | also have "\<dots> = \<integral>\<^sup>+ x. \<integral>\<^sup>+ y. Pxy (x, y) * indicator (A \<times> space T) (x, y) \<partial>T \<partial>S" | 
| 47694 | 608 | using A borel Pxy | 
| 50003 | 609 | by (simp add: emeasure_density T.positive_integral_fst_measurable(2)[symmetric]) | 
| 53015 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51683diff
changeset | 610 | also have "\<dots> = \<integral>\<^sup>+ x. Px x * indicator A x \<partial>S" | 
| 47694 | 611 | apply (rule positive_integral_cong_AE) | 
| 49788 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 612 | using Pxy[THEN distributed_AE, THEN ST.AE_pair] AE_space | 
| 47694 | 613 | proof eventually_elim | 
| 49788 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 614 | fix x assume "x \<in> space S" "AE y in T. 0 \<le> Pxy (x, y)" | 
| 47694 | 615 | moreover have eq: "\<And>y. y \<in> space T \<Longrightarrow> indicator (A \<times> space T) (x, y) = indicator A x" | 
| 616 | by (auto simp: indicator_def) | |
| 53015 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51683diff
changeset | 617 | ultimately have "(\<integral>\<^sup>+ y. Pxy (x, y) * indicator (A \<times> space T) (x, y) \<partial>T) = (\<integral>\<^sup>+ y. Pxy (x, y) \<partial>T) * indicator A x" | 
| 50003 | 618 | by (simp add: eq positive_integral_multc cong: positive_integral_cong) | 
| 53015 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51683diff
changeset | 619 | also have "(\<integral>\<^sup>+ y. Pxy (x, y) \<partial>T) = Px x" | 
| 49788 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 620 | by (simp add: Px_def ereal_real positive_integral_positive) | 
| 53015 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51683diff
changeset | 621 | finally show "(\<integral>\<^sup>+ y. Pxy (x, y) * indicator (A \<times> space T) (x, y) \<partial>T) = Px x * indicator A x" . | 
| 47694 | 622 | qed | 
| 623 | finally show "emeasure (distr M S X) A = emeasure (density S Px) A" | |
| 624 | using A borel Pxy by (simp add: emeasure_density) | |
| 625 | qed simp | |
| 626 | ||
| 49788 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 627 | show "AE x in S. 0 \<le> Px x" | 
| 47694 | 628 | by (simp add: Px_def positive_integral_positive real_of_ereal_pos) | 
| 40859 | 629 | qed | 
| 630 | ||
| 49788 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 631 | lemma (in prob_space) distr_marginal2: | 
| 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 632 | assumes S: "sigma_finite_measure S" and T: "sigma_finite_measure T" | 
| 53015 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51683diff
changeset | 633 | assumes Pxy: "distributed M (S \<Otimes>\<^sub>M T) (\<lambda>x. (X x, Y x)) Pxy" | 
| 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51683diff
changeset | 634 | shows "distributed M T Y (\<lambda>y. (\<integral>\<^sup>+x. Pxy (x, y) \<partial>S))" | 
| 49788 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 635 | using distr_marginal1[OF T S distributed_swap[OF S T]] Pxy by simp | 
| 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 636 | |
| 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 637 | lemma (in prob_space) distributed_marginal_eq_joint1: | 
| 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 638 | assumes T: "sigma_finite_measure T" | 
| 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 639 | assumes S: "sigma_finite_measure S" | 
| 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 640 | assumes Px: "distributed M S X Px" | 
| 53015 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51683diff
changeset | 641 | assumes Pxy: "distributed M (S \<Otimes>\<^sub>M T) (\<lambda>x. (X x, Y x)) Pxy" | 
| 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51683diff
changeset | 642 | shows "AE x in S. Px x = (\<integral>\<^sup>+y. Pxy (x, y) \<partial>T)" | 
| 49788 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 643 | using Px distr_marginal1[OF S T Pxy] by (rule distributed_unique) | 
| 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 644 | |
| 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 645 | lemma (in prob_space) distributed_marginal_eq_joint2: | 
| 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 646 | assumes T: "sigma_finite_measure T" | 
| 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 647 | assumes S: "sigma_finite_measure S" | 
| 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 648 | assumes Py: "distributed M T Y Py" | 
| 53015 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51683diff
changeset | 649 | assumes Pxy: "distributed M (S \<Otimes>\<^sub>M T) (\<lambda>x. (X x, Y x)) Pxy" | 
| 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51683diff
changeset | 650 | shows "AE y in T. Py y = (\<integral>\<^sup>+x. Pxy (x, y) \<partial>S)" | 
| 49788 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 651 | using Py distr_marginal2[OF S T Pxy] by (rule distributed_unique) | 
| 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 652 | |
| 49795 | 653 | lemma (in prob_space) distributed_joint_indep': | 
| 654 | assumes S: "sigma_finite_measure S" and T: "sigma_finite_measure T" | |
| 50003 | 655 | assumes X[measurable]: "distributed M S X Px" and Y[measurable]: "distributed M T Y Py" | 
| 53015 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51683diff
changeset | 656 | assumes indep: "distr M S X \<Otimes>\<^sub>M distr M T Y = distr M (S \<Otimes>\<^sub>M T) (\<lambda>x. (X x, Y x))" | 
| 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51683diff
changeset | 657 | shows "distributed M (S \<Otimes>\<^sub>M T) (\<lambda>x. (X x, Y x)) (\<lambda>(x, y). Px x * Py y)" | 
| 49795 | 658 | unfolding distributed_def | 
| 659 | proof safe | |
| 660 | interpret S: sigma_finite_measure S by fact | |
| 661 | interpret T: sigma_finite_measure T by fact | |
| 662 | interpret ST: pair_sigma_finite S T by default | |
| 663 | ||
| 664 | interpret X: prob_space "density S Px" | |
| 665 | unfolding distributed_distr_eq_density[OF X, symmetric] | |
| 50003 | 666 | by (rule prob_space_distr) simp | 
| 49795 | 667 | have sf_X: "sigma_finite_measure (density S Px)" .. | 
| 668 | ||
| 669 | interpret Y: prob_space "density T Py" | |
| 670 | unfolding distributed_distr_eq_density[OF Y, symmetric] | |
| 50003 | 671 | by (rule prob_space_distr) simp | 
| 49795 | 672 | have sf_Y: "sigma_finite_measure (density T Py)" .. | 
| 673 | ||
| 53015 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51683diff
changeset | 674 | show "distr M (S \<Otimes>\<^sub>M T) (\<lambda>x. (X x, Y x)) = density (S \<Otimes>\<^sub>M T) (\<lambda>(x, y). Px x * Py y)" | 
| 49795 | 675 | unfolding indep[symmetric] distributed_distr_eq_density[OF X] distributed_distr_eq_density[OF Y] | 
| 676 | using distributed_borel_measurable[OF X] distributed_AE[OF X] | |
| 677 | using distributed_borel_measurable[OF Y] distributed_AE[OF Y] | |
| 50003 | 678 | by (rule pair_measure_density[OF _ _ _ _ T sf_Y]) | 
| 49795 | 679 | |
| 53015 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51683diff
changeset | 680 | show "random_variable (S \<Otimes>\<^sub>M T) (\<lambda>x. (X x, Y x))" by auto | 
| 49795 | 681 | |
| 53015 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51683diff
changeset | 682 | show Pxy: "(\<lambda>(x, y). Px x * Py y) \<in> borel_measurable (S \<Otimes>\<^sub>M T)" by auto | 
| 49795 | 683 | |
| 53015 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51683diff
changeset | 684 | show "AE x in S \<Otimes>\<^sub>M T. 0 \<le> (case x of (x, y) \<Rightarrow> Px x * Py y)" | 
| 51683 
baefa3b461c2
generalize Borel-set properties from real/ereal/ordered_euclidean_spaces to order_topology and real_normed_vector
 hoelzl parents: 
51475diff
changeset | 685 | apply (intro ST.AE_pair_measure borel_measurable_le Pxy borel_measurable_const) | 
| 49795 | 686 | using distributed_AE[OF X] | 
| 687 | apply eventually_elim | |
| 688 | using distributed_AE[OF Y] | |
| 689 | apply eventually_elim | |
| 690 | apply auto | |
| 691 | done | |
| 692 | qed | |
| 693 | ||
| 47694 | 694 | definition | 
| 695 | "simple_distributed M X f \<longleftrightarrow> distributed M (count_space (X`space M)) X (\<lambda>x. ereal (f x)) \<and> | |
| 696 | finite (X`space M)" | |
| 42902 | 697 | |
| 47694 | 698 | lemma simple_distributed: | 
| 699 | "simple_distributed M X Px \<Longrightarrow> distributed M (count_space (X`space M)) X Px" | |
| 700 | unfolding simple_distributed_def by auto | |
| 42902 | 701 | |
| 47694 | 702 | lemma simple_distributed_finite[dest]: "simple_distributed M X P \<Longrightarrow> finite (X`space M)" | 
| 703 | by (simp add: simple_distributed_def) | |
| 42902 | 704 | |
| 47694 | 705 | lemma (in prob_space) distributed_simple_function_superset: | 
| 706 |   assumes X: "simple_function M X" "\<And>x. x \<in> X ` space M \<Longrightarrow> P x = measure M (X -` {x} \<inter> space M)"
 | |
| 707 | assumes A: "X`space M \<subseteq> A" "finite A" | |
| 708 | defines "S \<equiv> count_space A" and "P' \<equiv> (\<lambda>x. if x \<in> X`space M then P x else 0)" | |
| 709 | shows "distributed M S X P'" | |
| 710 | unfolding distributed_def | |
| 711 | proof safe | |
| 712 | show "(\<lambda>x. ereal (P' x)) \<in> borel_measurable S" unfolding S_def by simp | |
| 713 | show "AE x in S. 0 \<le> ereal (P' x)" | |
| 714 | using X by (auto simp: S_def P'_def simple_distributed_def intro!: measure_nonneg) | |
| 715 | show "distr M S X = density S P'" | |
| 716 | proof (rule measure_eqI_finite) | |
| 717 | show "sets (distr M S X) = Pow A" "sets (density S P') = Pow A" | |
| 718 | using A unfolding S_def by auto | |
| 719 | show "finite A" by fact | |
| 720 | fix a assume a: "a \<in> A" | |
| 721 |     then have "a \<notin> X`space M \<Longrightarrow> X -` {a} \<inter> space M = {}" by auto
 | |
| 722 |     with A a X have "emeasure (distr M S X) {a} = P' a"
 | |
| 723 | by (subst emeasure_distr) | |
| 50002 
ce0d316b5b44
add measurability prover; add support for Borel sets
 hoelzl parents: 
50001diff
changeset | 724 | (auto simp add: S_def P'_def simple_functionD emeasure_eq_measure measurable_count_space_eq2 | 
| 47694 | 725 | intro!: arg_cong[where f=prob]) | 
| 53015 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51683diff
changeset | 726 |     also have "\<dots> = (\<integral>\<^sup>+x. ereal (P' a) * indicator {a} x \<partial>S)"
 | 
| 47694 | 727 | using A X a | 
| 728 | by (subst positive_integral_cmult_indicator) | |
| 729 | (auto simp: S_def P'_def simple_distributed_def simple_functionD measure_nonneg) | |
| 53015 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51683diff
changeset | 730 |     also have "\<dots> = (\<integral>\<^sup>+x. ereal (P' x) * indicator {a} x \<partial>S)"
 | 
| 47694 | 731 | by (auto simp: indicator_def intro!: positive_integral_cong) | 
| 732 |     also have "\<dots> = emeasure (density S P') {a}"
 | |
| 733 | using a A by (intro emeasure_density[symmetric]) (auto simp: S_def) | |
| 734 |     finally show "emeasure (distr M S X) {a} = emeasure (density S P') {a}" .
 | |
| 735 | qed | |
| 736 | show "random_variable S X" | |
| 737 | using X(1) A by (auto simp: measurable_def simple_functionD S_def) | |
| 738 | qed | |
| 42902 | 739 | |
| 47694 | 740 | lemma (in prob_space) simple_distributedI: | 
| 741 |   assumes X: "simple_function M X" "\<And>x. x \<in> X ` space M \<Longrightarrow> P x = measure M (X -` {x} \<inter> space M)"
 | |
| 742 | shows "simple_distributed M X P" | |
| 743 | unfolding simple_distributed_def | |
| 744 | proof | |
| 745 | have "distributed M (count_space (X ` space M)) X (\<lambda>x. ereal (if x \<in> X`space M then P x else 0))" | |
| 746 | (is "?A") | |
| 747 | using simple_functionD[OF X(1)] by (intro distributed_simple_function_superset[OF X]) auto | |
| 748 | also have "?A \<longleftrightarrow> distributed M (count_space (X ` space M)) X (\<lambda>x. ereal (P x))" | |
| 749 | by (rule distributed_cong_density) auto | |
| 750 | finally show "\<dots>" . | |
| 751 | qed (rule simple_functionD[OF X(1)]) | |
| 752 | ||
| 753 | lemma simple_distributed_joint_finite: | |
| 754 | assumes X: "simple_distributed M (\<lambda>x. (X x, Y x)) Px" | |
| 755 | shows "finite (X ` space M)" "finite (Y ` space M)" | |
| 42902 | 756 | proof - | 
| 47694 | 757 | have "finite ((\<lambda>x. (X x, Y x)) ` space M)" | 
| 758 | using X by (auto simp: simple_distributed_def simple_functionD) | |
| 759 | then have "finite (fst ` (\<lambda>x. (X x, Y x)) ` space M)" "finite (snd ` (\<lambda>x. (X x, Y x)) ` space M)" | |
| 760 | by auto | |
| 761 | then show fin: "finite (X ` space M)" "finite (Y ` space M)" | |
| 762 | by (auto simp: image_image) | |
| 763 | qed | |
| 764 | ||
| 765 | lemma simple_distributed_joint2_finite: | |
| 766 | assumes X: "simple_distributed M (\<lambda>x. (X x, Y x, Z x)) Px" | |
| 767 | shows "finite (X ` space M)" "finite (Y ` space M)" "finite (Z ` space M)" | |
| 768 | proof - | |
| 769 | have "finite ((\<lambda>x. (X x, Y x, Z x)) ` space M)" | |
| 770 | using X by (auto simp: simple_distributed_def simple_functionD) | |
| 771 | then have "finite (fst ` (\<lambda>x. (X x, Y x, Z x)) ` space M)" | |
| 772 | "finite ((fst \<circ> snd) ` (\<lambda>x. (X x, Y x, Z x)) ` space M)" | |
| 773 | "finite ((snd \<circ> snd) ` (\<lambda>x. (X x, Y x, Z x)) ` space M)" | |
| 774 | by auto | |
| 775 | then show fin: "finite (X ` space M)" "finite (Y ` space M)" "finite (Z ` space M)" | |
| 776 | by (auto simp: image_image) | |
| 42902 | 777 | qed | 
| 778 | ||
| 47694 | 779 | lemma simple_distributed_simple_function: | 
| 780 | "simple_distributed M X Px \<Longrightarrow> simple_function M X" | |
| 781 | unfolding simple_distributed_def distributed_def | |
| 50002 
ce0d316b5b44
add measurability prover; add support for Borel sets
 hoelzl parents: 
50001diff
changeset | 782 | by (auto simp: simple_function_def measurable_count_space_eq2) | 
| 47694 | 783 | |
| 784 | lemma simple_distributed_measure: | |
| 785 |   "simple_distributed M X P \<Longrightarrow> a \<in> X`space M \<Longrightarrow> P a = measure M (X -` {a} \<inter> space M)"
 | |
| 786 | using distributed_count_space[of M "X`space M" X P a, symmetric] | |
| 787 | by (auto simp: simple_distributed_def measure_def) | |
| 788 | ||
| 789 | lemma simple_distributed_nonneg: "simple_distributed M X f \<Longrightarrow> x \<in> space M \<Longrightarrow> 0 \<le> f (X x)" | |
| 790 | by (auto simp: simple_distributed_measure measure_nonneg) | |
| 42860 | 791 | |
| 47694 | 792 | lemma (in prob_space) simple_distributed_joint: | 
| 793 | assumes X: "simple_distributed M (\<lambda>x. (X x, Y x)) Px" | |
| 53015 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51683diff
changeset | 794 | defines "S \<equiv> count_space (X`space M) \<Otimes>\<^sub>M count_space (Y`space M)" | 
| 47694 | 795 | defines "P \<equiv> (\<lambda>x. if x \<in> (\<lambda>x. (X x, Y x))`space M then Px x else 0)" | 
| 796 | shows "distributed M S (\<lambda>x. (X x, Y x)) P" | |
| 797 | proof - | |
| 798 | from simple_distributed_joint_finite[OF X, simp] | |
| 799 | have S_eq: "S = count_space (X`space M \<times> Y`space M)" | |
| 800 | by (simp add: S_def pair_measure_count_space) | |
| 801 | show ?thesis | |
| 802 | unfolding S_eq P_def | |
| 803 | proof (rule distributed_simple_function_superset) | |
| 804 | show "simple_function M (\<lambda>x. (X x, Y x))" | |
| 805 | using X by (rule simple_distributed_simple_function) | |
| 806 | fix x assume "x \<in> (\<lambda>x. (X x, Y x)) ` space M" | |
| 807 | from simple_distributed_measure[OF X this] | |
| 808 |     show "Px x = prob ((\<lambda>x. (X x, Y x)) -` {x} \<inter> space M)" .
 | |
| 809 | qed auto | |
| 810 | qed | |
| 42860 | 811 | |
| 47694 | 812 | lemma (in prob_space) simple_distributed_joint2: | 
| 813 | assumes X: "simple_distributed M (\<lambda>x. (X x, Y x, Z x)) Px" | |
| 53015 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51683diff
changeset | 814 | defines "S \<equiv> count_space (X`space M) \<Otimes>\<^sub>M count_space (Y`space M) \<Otimes>\<^sub>M count_space (Z`space M)" | 
| 47694 | 815 | defines "P \<equiv> (\<lambda>x. if x \<in> (\<lambda>x. (X x, Y x, Z x))`space M then Px x else 0)" | 
| 816 | shows "distributed M S (\<lambda>x. (X x, Y x, Z x)) P" | |
| 817 | proof - | |
| 818 | from simple_distributed_joint2_finite[OF X, simp] | |
| 819 | have S_eq: "S = count_space (X`space M \<times> Y`space M \<times> Z`space M)" | |
| 820 | by (simp add: S_def pair_measure_count_space) | |
| 821 | show ?thesis | |
| 822 | unfolding S_eq P_def | |
| 823 | proof (rule distributed_simple_function_superset) | |
| 824 | show "simple_function M (\<lambda>x. (X x, Y x, Z x))" | |
| 825 | using X by (rule simple_distributed_simple_function) | |
| 826 | fix x assume "x \<in> (\<lambda>x. (X x, Y x, Z x)) ` space M" | |
| 827 | from simple_distributed_measure[OF X this] | |
| 828 |     show "Px x = prob ((\<lambda>x. (X x, Y x, Z x)) -` {x} \<inter> space M)" .
 | |
| 829 | qed auto | |
| 830 | qed | |
| 831 | ||
| 832 | lemma (in prob_space) simple_distributed_setsum_space: | |
| 833 | assumes X: "simple_distributed M X f" | |
| 834 | shows "setsum f (X`space M) = 1" | |
| 835 | proof - | |
| 836 |   from X have "setsum f (X`space M) = prob (\<Union>i\<in>X`space M. X -` {i} \<inter> space M)"
 | |
| 837 | by (subst finite_measure_finite_Union) | |
| 838 | (auto simp add: disjoint_family_on_def simple_distributed_measure simple_distributed_simple_function simple_functionD | |
| 839 | intro!: setsum_cong arg_cong[where f="prob"]) | |
| 840 | also have "\<dots> = prob (space M)" | |
| 841 | by (auto intro!: arg_cong[where f=prob]) | |
| 842 | finally show ?thesis | |
| 843 | using emeasure_space_1 by (simp add: emeasure_eq_measure one_ereal_def) | |
| 844 | qed | |
| 42860 | 845 | |
| 47694 | 846 | lemma (in prob_space) distributed_marginal_eq_joint_simple: | 
| 847 | assumes Px: "simple_function M X" | |
| 848 | assumes Py: "simple_distributed M Y Py" | |
| 849 | assumes Pxy: "simple_distributed M (\<lambda>x. (X x, Y x)) Pxy" | |
| 850 | assumes y: "y \<in> Y`space M" | |
| 851 | shows "Py y = (\<Sum>x\<in>X`space M. if (x, y) \<in> (\<lambda>x. (X x, Y x)) ` space M then Pxy (x, y) else 0)" | |
| 852 | proof - | |
| 853 | note Px = simple_distributedI[OF Px refl] | |
| 854 | have *: "\<And>f A. setsum (\<lambda>x. max 0 (ereal (f x))) A = ereal (setsum (\<lambda>x. max 0 (f x)) A)" | |
| 855 | by (simp add: setsum_ereal[symmetric] zero_ereal_def) | |
| 49788 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 856 | from distributed_marginal_eq_joint2[OF | 
| 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 857 | sigma_finite_measure_count_space_finite | 
| 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 858 | sigma_finite_measure_count_space_finite | 
| 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 859 | simple_distributed[OF Py] simple_distributed_joint[OF Pxy], | 
| 47694 | 860 | OF Py[THEN simple_distributed_finite] Px[THEN simple_distributed_finite]] | 
| 49788 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 861 | y | 
| 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 862 | Px[THEN simple_distributed_finite] | 
| 
3c10763f5cb4
show and use distributed_swap and distributed_jointI
 hoelzl parents: 
49786diff
changeset | 863 | Py[THEN simple_distributed_finite] | 
| 47694 | 864 | Pxy[THEN simple_distributed, THEN distributed_real_AE] | 
| 865 | show ?thesis | |
| 866 | unfolding AE_count_space | |
| 867 | apply (auto simp add: positive_integral_count_space_finite * intro!: setsum_cong split: split_max) | |
| 868 | done | |
| 869 | qed | |
| 42860 | 870 | |
| 50419 | 871 | lemma distributedI_real: | 
| 872 | fixes f :: "'a \<Rightarrow> real" | |
| 873 | assumes gen: "sets M1 = sigma_sets (space M1) E" and "Int_stable E" | |
| 874 | and A: "range A \<subseteq> E" "(\<Union>i::nat. A i) = space M1" "\<And>i. emeasure (distr M M1 X) (A i) \<noteq> \<infinity>" | |
| 875 | and X: "X \<in> measurable M M1" | |
| 876 | and f: "f \<in> borel_measurable M1" "AE x in M1. 0 \<le> f x" | |
| 53015 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51683diff
changeset | 877 | and eq: "\<And>A. A \<in> E \<Longrightarrow> emeasure M (X -` A \<inter> space M) = (\<integral>\<^sup>+ x. f x * indicator A x \<partial>M1)" | 
| 50419 | 878 | shows "distributed M M1 X f" | 
| 879 | unfolding distributed_def | |
| 880 | proof (intro conjI) | |
| 881 | show "distr M M1 X = density M1 f" | |
| 882 | proof (rule measure_eqI_generator_eq[where A=A]) | |
| 883 |     { fix A assume A: "A \<in> E"
 | |
| 884 | then have "A \<in> sigma_sets (space M1) E" by auto | |
| 885 | then have "A \<in> sets M1" | |
| 886 | using gen by simp | |
| 887 | with f A eq[of A] X show "emeasure (distr M M1 X) A = emeasure (density M1 f) A" | |
| 888 | by (simp add: emeasure_distr emeasure_density borel_measurable_ereal | |
| 889 | times_ereal.simps[symmetric] ereal_indicator | |
| 890 | del: times_ereal.simps) } | |
| 891 | note eq_E = this | |
| 892 | show "Int_stable E" by fact | |
| 893 |     { fix e assume "e \<in> E"
 | |
| 894 | then have "e \<in> sigma_sets (space M1) E" by auto | |
| 895 | then have "e \<in> sets M1" unfolding gen . | |
| 896 | then have "e \<subseteq> space M1" by (rule sets.sets_into_space) } | |
| 897 | then show "E \<subseteq> Pow (space M1)" by auto | |
| 898 | show "sets (distr M M1 X) = sigma_sets (space M1) E" | |
| 899 | "sets (density M1 (\<lambda>x. ereal (f x))) = sigma_sets (space M1) E" | |
| 900 | unfolding gen[symmetric] by auto | |
| 901 | qed fact+ | |
| 902 | qed (insert X f, auto) | |
| 903 | ||
| 904 | lemma distributedI_borel_atMost: | |
| 905 | fixes f :: "real \<Rightarrow> real" | |
| 906 | assumes [measurable]: "X \<in> borel_measurable M" | |
| 907 | and [measurable]: "f \<in> borel_measurable borel" and f[simp]: "AE x in lborel. 0 \<le> f x" | |
| 53015 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51683diff
changeset | 908 |     and g_eq: "\<And>a. (\<integral>\<^sup>+x. f x * indicator {..a} x \<partial>lborel)  = ereal (g a)"
 | 
| 50419 | 909 |     and M_eq: "\<And>a. emeasure M {x\<in>space M. X x \<le> a} = ereal (g a)"
 | 
| 910 | shows "distributed M lborel X f" | |
| 911 | proof (rule distributedI_real) | |
| 912 | show "sets lborel = sigma_sets (space lborel) (range atMost)" | |
| 913 | by (simp add: borel_eq_atMost) | |
| 914 | show "Int_stable (range atMost :: real set set)" | |
| 915 | by (auto simp: Int_stable_def) | |
| 916 |   have vimage_eq: "\<And>a. (X -` {..a} \<inter> space M) = {x\<in>space M. X x \<le> a}" by auto
 | |
| 917 |   def A \<equiv> "\<lambda>i::nat. {.. real i}"
 | |
| 918 | then show "range A \<subseteq> range atMost" "(\<Union>i. A i) = space lborel" | |
| 919 | "\<And>i. emeasure (distr M lborel X) (A i) \<noteq> \<infinity>" | |
| 920 | by (auto simp: real_arch_simple emeasure_distr vimage_eq M_eq) | |
| 921 | ||
| 922 | fix A :: "real set" assume "A \<in> range atMost" | |
| 923 |   then obtain a where A: "A = {..a}" by auto
 | |
| 53015 
a1119cf551e8
standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
 wenzelm parents: 
51683diff
changeset | 924 | show "emeasure M (X -` A \<inter> space M) = (\<integral>\<^sup>+x. f x * indicator A x \<partial>lborel)" | 
| 50419 | 925 | unfolding vimage_eq A M_eq g_eq .. | 
| 926 | qed auto | |
| 927 | ||
| 928 | lemma (in prob_space) uniform_distributed_params: | |
| 929 | assumes X: "distributed M MX X (\<lambda>x. indicator A x / measure MX A)" | |
| 930 | shows "A \<in> sets MX" "measure MX A \<noteq> 0" | |
| 931 | proof - | |
| 932 | interpret X: prob_space "distr M MX X" | |
| 933 | using distributed_measurable[OF X] by (rule prob_space_distr) | |
| 934 | ||
| 935 | show "measure MX A \<noteq> 0" | |
| 936 | proof | |
| 937 | assume "measure MX A = 0" | |
| 938 | with X.emeasure_space_1 X.prob_space distributed_distr_eq_density[OF X] | |
| 939 | show False | |
| 940 | by (simp add: emeasure_density zero_ereal_def[symmetric]) | |
| 941 | qed | |
| 942 | with measure_notin_sets[of A MX] show "A \<in> sets MX" | |
| 943 | by blast | |
| 944 | qed | |
| 945 | ||
| 47694 | 946 | lemma prob_space_uniform_measure: | 
| 947 | assumes A: "emeasure M A \<noteq> 0" "emeasure M A \<noteq> \<infinity>" | |
| 948 | shows "prob_space (uniform_measure M A)" | |
| 949 | proof | |
| 950 | show "emeasure (uniform_measure M A) (space (uniform_measure M A)) = 1" | |
| 951 | using emeasure_uniform_measure[OF emeasure_neq_0_sets[OF A(1)], of "space M"] | |
| 50244 
de72bbe42190
qualified interpretation of sigma_algebra, to avoid name clashes
 immler parents: 
50104diff
changeset | 952 | using sets.sets_into_space[OF emeasure_neq_0_sets[OF A(1)]] A | 
| 47694 | 953 | by (simp add: Int_absorb2 emeasure_nonneg) | 
| 954 | qed | |
| 955 | ||
| 956 | lemma prob_space_uniform_count_measure: "finite A \<Longrightarrow> A \<noteq> {} \<Longrightarrow> prob_space (uniform_count_measure A)"
 | |
| 957 | by default (auto simp: emeasure_uniform_count_measure space_uniform_count_measure one_ereal_def) | |
| 42860 | 958 | |
| 35582 | 959 | end |