src/HOL/Probability/Independent_Family.thy
author Christian Sternagel
Thu, 30 Aug 2012 15:44:03 +0900
changeset 49093 fdc301f592c4
parent 47694 05663f75964c
child 49772 75660d89c339
permissions -rw-r--r--
forgot to add lemmas
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
42861
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
     1
(*  Title:      HOL/Probability/Independent_Family.thy
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
     2
    Author:     Johannes Hölzl, TU München
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
     3
*)
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
     4
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
     5
header {* Independent families of events, event sets, and random variables *}
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
     6
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
     7
theory Independent_Family
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
     8
  imports Probability_Measure Infinite_Product_Measure
42861
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
     9
begin
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
    10
42985
1fb670792708 add lemma borel_0_1_law
hoelzl
parents: 42983
diff changeset
    11
lemma INT_decseq_offset:
1fb670792708 add lemma borel_0_1_law
hoelzl
parents: 42983
diff changeset
    12
  assumes "decseq F"
1fb670792708 add lemma borel_0_1_law
hoelzl
parents: 42983
diff changeset
    13
  shows "(\<Inter>i. F i) = (\<Inter>i\<in>{n..}. F i)"
1fb670792708 add lemma borel_0_1_law
hoelzl
parents: 42983
diff changeset
    14
proof safe
1fb670792708 add lemma borel_0_1_law
hoelzl
parents: 42983
diff changeset
    15
  fix x i assume x: "x \<in> (\<Inter>i\<in>{n..}. F i)"
1fb670792708 add lemma borel_0_1_law
hoelzl
parents: 42983
diff changeset
    16
  show "x \<in> F i"
1fb670792708 add lemma borel_0_1_law
hoelzl
parents: 42983
diff changeset
    17
  proof cases
1fb670792708 add lemma borel_0_1_law
hoelzl
parents: 42983
diff changeset
    18
    from x have "x \<in> F n" by auto
1fb670792708 add lemma borel_0_1_law
hoelzl
parents: 42983
diff changeset
    19
    also assume "i \<le> n" with `decseq F` have "F n \<subseteq> F i"
1fb670792708 add lemma borel_0_1_law
hoelzl
parents: 42983
diff changeset
    20
      unfolding decseq_def by simp
1fb670792708 add lemma borel_0_1_law
hoelzl
parents: 42983
diff changeset
    21
    finally show ?thesis .
1fb670792708 add lemma borel_0_1_law
hoelzl
parents: 42983
diff changeset
    22
  qed (insert x, simp)
1fb670792708 add lemma borel_0_1_law
hoelzl
parents: 42983
diff changeset
    23
qed auto
1fb670792708 add lemma borel_0_1_law
hoelzl
parents: 42983
diff changeset
    24
42861
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
    25
definition (in prob_space)
42983
685df9c0626d use abbrevitation events == sets M
hoelzl
parents: 42982
diff changeset
    26
  "indep_events A I \<longleftrightarrow> (A`I \<subseteq> events) \<and>
42981
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
    27
    (\<forall>J\<subseteq>I. J \<noteq> {} \<longrightarrow> finite J \<longrightarrow> prob (\<Inter>j\<in>J. A j) = (\<Prod>j\<in>J. prob (A j)))"
42861
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
    28
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
    29
definition (in prob_space)
42981
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
    30
  "indep_event A B \<longleftrightarrow> indep_events (bool_case A B) UNIV"
42861
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
    31
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
    32
definition (in prob_space)
42983
685df9c0626d use abbrevitation events == sets M
hoelzl
parents: 42982
diff changeset
    33
  "indep_sets F I \<longleftrightarrow> (\<forall>i\<in>I. F i \<subseteq> events) \<and>
42981
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
    34
    (\<forall>J\<subseteq>I. J \<noteq> {} \<longrightarrow> finite J \<longrightarrow> (\<forall>A\<in>Pi J F. prob (\<Inter>j\<in>J. A j) = (\<Prod>j\<in>J. prob (A j))))"
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
    35
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
    36
definition (in prob_space)
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
    37
  "indep_set A B \<longleftrightarrow> indep_sets (bool_case A B) UNIV"
42861
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
    38
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
    39
definition (in prob_space)
42989
40adeda9a8d2 introduce independence of two random variables
hoelzl
parents: 42988
diff changeset
    40
  "indep_vars M' X I \<longleftrightarrow>
42861
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
    41
    (\<forall>i\<in>I. random_variable (M' i) (X i)) \<and>
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
    42
    indep_sets (\<lambda>i. sigma_sets (space M) { X i -` A \<inter> space M | A. A \<in> sets (M' i)}) I"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
    43
42989
40adeda9a8d2 introduce independence of two random variables
hoelzl
parents: 42988
diff changeset
    44
definition (in prob_space)
40adeda9a8d2 introduce independence of two random variables
hoelzl
parents: 42988
diff changeset
    45
  "indep_var Ma A Mb B \<longleftrightarrow> indep_vars (bool_case Ma Mb) (bool_case A B) UNIV"
40adeda9a8d2 introduce independence of two random variables
hoelzl
parents: 42988
diff changeset
    46
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
    47
lemma (in prob_space) indep_sets_cong:
42981
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
    48
  "I = J \<Longrightarrow> (\<And>i. i \<in> I \<Longrightarrow> F i = G i) \<Longrightarrow> indep_sets F I \<longleftrightarrow> indep_sets G J"
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
    49
  by (simp add: indep_sets_def, intro conj_cong all_cong imp_cong ball_cong) blast+
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
    50
42985
1fb670792708 add lemma borel_0_1_law
hoelzl
parents: 42983
diff changeset
    51
lemma (in prob_space) indep_sets_singleton_iff_indep_events:
1fb670792708 add lemma borel_0_1_law
hoelzl
parents: 42983
diff changeset
    52
  "indep_sets (\<lambda>i. {F i}) I \<longleftrightarrow> indep_events F I"
1fb670792708 add lemma borel_0_1_law
hoelzl
parents: 42983
diff changeset
    53
  unfolding indep_sets_def indep_events_def
1fb670792708 add lemma borel_0_1_law
hoelzl
parents: 42983
diff changeset
    54
  by (simp, intro conj_cong ball_cong all_cong imp_cong) (auto simp: Pi_iff)
1fb670792708 add lemma borel_0_1_law
hoelzl
parents: 42983
diff changeset
    55
42981
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
    56
lemma (in prob_space) indep_events_finite_index_events:
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
    57
  "indep_events F I \<longleftrightarrow> (\<forall>J\<subseteq>I. J \<noteq> {} \<longrightarrow> finite J \<longrightarrow> indep_events F J)"
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
    58
  by (auto simp: indep_events_def)
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
    59
42861
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
    60
lemma (in prob_space) indep_sets_finite_index_sets:
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
    61
  "indep_sets F I \<longleftrightarrow> (\<forall>J\<subseteq>I. J \<noteq> {} \<longrightarrow> finite J \<longrightarrow> indep_sets F J)"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
    62
proof (intro iffI allI impI)
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
    63
  assume *: "\<forall>J\<subseteq>I. J \<noteq> {} \<longrightarrow> finite J \<longrightarrow> indep_sets F J"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
    64
  show "indep_sets F I" unfolding indep_sets_def
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
    65
  proof (intro conjI ballI allI impI)
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
    66
    fix i assume "i \<in> I"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
    67
    with *[THEN spec, of "{i}"] show "F i \<subseteq> events"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
    68
      by (auto simp: indep_sets_def)
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
    69
  qed (insert *, auto simp: indep_sets_def)
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
    70
qed (auto simp: indep_sets_def)
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
    71
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
    72
lemma (in prob_space) indep_sets_mono_index:
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
    73
  "J \<subseteq> I \<Longrightarrow> indep_sets F I \<Longrightarrow> indep_sets F J"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
    74
  unfolding indep_sets_def by auto
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
    75
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
    76
lemma (in prob_space) indep_sets_mono_sets:
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
    77
  assumes indep: "indep_sets F I"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
    78
  assumes mono: "\<And>i. i\<in>I \<Longrightarrow> G i \<subseteq> F i"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
    79
  shows "indep_sets G I"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
    80
proof -
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
    81
  have "(\<forall>i\<in>I. F i \<subseteq> events) \<Longrightarrow> (\<forall>i\<in>I. G i \<subseteq> events)"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
    82
    using mono by auto
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
    83
  moreover have "\<And>A J. J \<subseteq> I \<Longrightarrow> A \<in> (\<Pi> j\<in>J. G j) \<Longrightarrow> A \<in> (\<Pi> j\<in>J. F j)"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
    84
    using mono by (auto simp: Pi_iff)
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
    85
  ultimately show ?thesis
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
    86
    using indep by (auto simp: indep_sets_def)
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
    87
qed
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
    88
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
    89
lemma (in prob_space) indep_setsI:
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
    90
  assumes "\<And>i. i \<in> I \<Longrightarrow> F i \<subseteq> events"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
    91
    and "\<And>A J. J \<noteq> {} \<Longrightarrow> J \<subseteq> I \<Longrightarrow> finite J \<Longrightarrow> (\<forall>j\<in>J. A j \<in> F j) \<Longrightarrow> prob (\<Inter>j\<in>J. A j) = (\<Prod>j\<in>J. prob (A j))"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
    92
  shows "indep_sets F I"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
    93
  using assms unfolding indep_sets_def by (auto simp: Pi_iff)
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
    94
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
    95
lemma (in prob_space) indep_setsD:
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
    96
  assumes "indep_sets F I" and "J \<subseteq> I" "J \<noteq> {}" "finite J" "\<forall>j\<in>J. A j \<in> F j"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
    97
  shows "prob (\<Inter>j\<in>J. A j) = (\<Prod>j\<in>J. prob (A j))"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
    98
  using assms unfolding indep_sets_def by auto
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
    99
42982
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   100
lemma (in prob_space) indep_setI:
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   101
  assumes ev: "A \<subseteq> events" "B \<subseteq> events"
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   102
    and indep: "\<And>a b. a \<in> A \<Longrightarrow> b \<in> B \<Longrightarrow> prob (a \<inter> b) = prob a * prob b"
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   103
  shows "indep_set A B"
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   104
  unfolding indep_set_def
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   105
proof (rule indep_setsI)
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   106
  fix F J assume "J \<noteq> {}" "J \<subseteq> UNIV"
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   107
    and F: "\<forall>j\<in>J. F j \<in> (case j of True \<Rightarrow> A | False \<Rightarrow> B)"
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   108
  have "J \<in> Pow UNIV" by auto
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   109
  with F `J \<noteq> {}` indep[of "F True" "F False"]
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   110
  show "prob (\<Inter>j\<in>J. F j) = (\<Prod>j\<in>J. prob (F j))"
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   111
    unfolding UNIV_bool Pow_insert by (auto simp: ac_simps)
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   112
qed (auto split: bool.split simp: ev)
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   113
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   114
lemma (in prob_space) indep_setD:
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   115
  assumes indep: "indep_set A B" and ev: "a \<in> A" "b \<in> B"
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   116
  shows "prob (a \<inter> b) = prob a * prob b"
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   117
  using indep[unfolded indep_set_def, THEN indep_setsD, of UNIV "bool_case a b"] ev
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   118
  by (simp add: ac_simps UNIV_bool)
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   119
43340
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42989
diff changeset
   120
lemma (in prob_space) indep_var_eq:
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42989
diff changeset
   121
  "indep_var S X T Y \<longleftrightarrow>
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42989
diff changeset
   122
    (random_variable S X \<and> random_variable T Y) \<and>
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42989
diff changeset
   123
    indep_set
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42989
diff changeset
   124
      (sigma_sets (space M) { X -` A \<inter> space M | A. A \<in> sets S})
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42989
diff changeset
   125
      (sigma_sets (space M) { Y -` A \<inter> space M | A. A \<in> sets T})"
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42989
diff changeset
   126
  unfolding indep_var_def indep_vars_def indep_set_def UNIV_bool
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42989
diff changeset
   127
  by (intro arg_cong2[where f="op \<and>"] arg_cong2[where f=indep_sets] ext)
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42989
diff changeset
   128
     (auto split: bool.split)
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42989
diff changeset
   129
42982
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   130
lemma (in prob_space)
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   131
  assumes indep: "indep_set A B"
42983
685df9c0626d use abbrevitation events == sets M
hoelzl
parents: 42982
diff changeset
   132
  shows indep_setD_ev1: "A \<subseteq> events"
685df9c0626d use abbrevitation events == sets M
hoelzl
parents: 42982
diff changeset
   133
    and indep_setD_ev2: "B \<subseteq> events"
42982
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   134
  using indep unfolding indep_set_def indep_sets_def UNIV_bool by auto
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   135
42861
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   136
lemma (in prob_space) indep_sets_dynkin:
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   137
  assumes indep: "indep_sets F I"
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   138
  shows "indep_sets (\<lambda>i. dynkin (space M) (F i)) I"
42861
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   139
    (is "indep_sets ?F I")
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   140
proof (subst indep_sets_finite_index_sets, intro allI impI ballI)
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   141
  fix J assume "finite J" "J \<subseteq> I" "J \<noteq> {}"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   142
  with indep have "indep_sets F J"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   143
    by (subst (asm) indep_sets_finite_index_sets) auto
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   144
  { fix J K assume "indep_sets F K"
46731
5302e932d1e5 avoid undeclared variables in let bindings;
wenzelm
parents: 45777
diff changeset
   145
    let ?G = "\<lambda>S i. if i \<in> S then ?F i else F i"
42861
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   146
    assume "finite J" "J \<subseteq> K"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   147
    then have "indep_sets (?G J) K"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   148
    proof induct
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   149
      case (insert j J)
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   150
      moreover def G \<equiv> "?G J"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   151
      ultimately have G: "indep_sets G K" "\<And>i. i \<in> K \<Longrightarrow> G i \<subseteq> events" and "j \<in> K"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   152
        by (auto simp: indep_sets_def)
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   153
      let ?D = "{E\<in>events. indep_sets (G(j := {E})) K }"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   154
      { fix X assume X: "X \<in> events"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   155
        assume indep: "\<And>J A. J \<noteq> {} \<Longrightarrow> J \<subseteq> K \<Longrightarrow> finite J \<Longrightarrow> j \<notin> J \<Longrightarrow> (\<forall>i\<in>J. A i \<in> G i)
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   156
          \<Longrightarrow> prob ((\<Inter>i\<in>J. A i) \<inter> X) = prob X * (\<Prod>i\<in>J. prob (A i))"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   157
        have "indep_sets (G(j := {X})) K"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   158
        proof (rule indep_setsI)
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   159
          fix i assume "i \<in> K" then show "(G(j:={X})) i \<subseteq> events"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   160
            using G X by auto
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   161
        next
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   162
          fix A J assume J: "J \<noteq> {}" "J \<subseteq> K" "finite J" "\<forall>i\<in>J. A i \<in> (G(j := {X})) i"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   163
          show "prob (\<Inter>j\<in>J. A j) = (\<Prod>j\<in>J. prob (A j))"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   164
          proof cases
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   165
            assume "j \<in> J"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   166
            with J have "A j = X" by auto
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   167
            show ?thesis
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   168
            proof cases
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   169
              assume "J = {j}" then show ?thesis by simp
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   170
            next
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   171
              assume "J \<noteq> {j}"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   172
              have "prob (\<Inter>i\<in>J. A i) = prob ((\<Inter>i\<in>J-{j}. A i) \<inter> X)"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   173
                using `j \<in> J` `A j = X` by (auto intro!: arg_cong[where f=prob] split: split_if_asm)
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   174
              also have "\<dots> = prob X * (\<Prod>i\<in>J-{j}. prob (A i))"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   175
              proof (rule indep)
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   176
                show "J - {j} \<noteq> {}" "J - {j} \<subseteq> K" "finite (J - {j})" "j \<notin> J - {j}"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   177
                  using J `J \<noteq> {j}` `j \<in> J` by auto
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   178
                show "\<forall>i\<in>J - {j}. A i \<in> G i"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   179
                  using J by auto
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   180
              qed
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   181
              also have "\<dots> = prob (A j) * (\<Prod>i\<in>J-{j}. prob (A i))"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   182
                using `A j = X` by simp
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   183
              also have "\<dots> = (\<Prod>i\<in>J. prob (A i))"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   184
                unfolding setprod.insert_remove[OF `finite J`, symmetric, of "\<lambda>i. prob  (A i)"]
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   185
                using `j \<in> J` by (simp add: insert_absorb)
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   186
              finally show ?thesis .
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   187
            qed
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   188
          next
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   189
            assume "j \<notin> J"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   190
            with J have "\<forall>i\<in>J. A i \<in> G i" by (auto split: split_if_asm)
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   191
            with J show ?thesis
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   192
              by (intro indep_setsD[OF G(1)]) auto
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   193
          qed
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   194
        qed }
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   195
      note indep_sets_insert = this
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   196
      have "dynkin_system (space M) ?D"
42987
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   197
      proof (rule dynkin_systemI', simp_all cong del: indep_sets_cong, safe)
42861
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   198
        show "indep_sets (G(j := {{}})) K"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   199
          by (rule indep_sets_insert) auto
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   200
      next
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   201
        fix X assume X: "X \<in> events" and G': "indep_sets (G(j := {X})) K"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   202
        show "indep_sets (G(j := {space M - X})) K"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   203
        proof (rule indep_sets_insert)
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   204
          fix J A assume J: "J \<noteq> {}" "J \<subseteq> K" "finite J" "j \<notin> J" and A: "\<forall>i\<in>J. A i \<in> G i"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   205
          then have A_sets: "\<And>i. i\<in>J \<Longrightarrow> A i \<in> events"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   206
            using G by auto
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   207
          have "prob ((\<Inter>j\<in>J. A j) \<inter> (space M - X)) =
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   208
              prob ((\<Inter>j\<in>J. A j) - (\<Inter>i\<in>insert j J. (A(j := X)) i))"
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   209
            using A_sets sets_into_space[of _ M] X `J \<noteq> {}`
42861
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   210
            by (auto intro!: arg_cong[where f=prob] split: split_if_asm)
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   211
          also have "\<dots> = prob (\<Inter>j\<in>J. A j) - prob (\<Inter>i\<in>insert j J. (A(j := X)) i)"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   212
            using J `J \<noteq> {}` `j \<notin> J` A_sets X sets_into_space
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   213
            by (auto intro!: finite_measure_Diff finite_INT split: split_if_asm)
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   214
          finally have "prob ((\<Inter>j\<in>J. A j) \<inter> (space M - X)) =
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   215
              prob (\<Inter>j\<in>J. A j) - prob (\<Inter>i\<in>insert j J. (A(j := X)) i)" .
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   216
          moreover {
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   217
            have "prob (\<Inter>j\<in>J. A j) = (\<Prod>j\<in>J. prob (A j))"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   218
              using J A `finite J` by (intro indep_setsD[OF G(1)]) auto
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   219
            then have "prob (\<Inter>j\<in>J. A j) = prob (space M) * (\<Prod>i\<in>J. prob (A i))"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   220
              using prob_space by simp }
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   221
          moreover {
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   222
            have "prob (\<Inter>i\<in>insert j J. (A(j := X)) i) = (\<Prod>i\<in>insert j J. prob ((A(j := X)) i))"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   223
              using J A `j \<in> K` by (intro indep_setsD[OF G']) auto
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   224
            then have "prob (\<Inter>i\<in>insert j J. (A(j := X)) i) = prob X * (\<Prod>i\<in>J. prob (A i))"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   225
              using `finite J` `j \<notin> J` by (auto intro!: setprod_cong) }
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   226
          ultimately have "prob ((\<Inter>j\<in>J. A j) \<inter> (space M - X)) = (prob (space M) - prob X) * (\<Prod>i\<in>J. prob (A i))"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   227
            by (simp add: field_simps)
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   228
          also have "\<dots> = prob (space M - X) * (\<Prod>i\<in>J. prob (A i))"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   229
            using X A by (simp add: finite_measure_compl)
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   230
          finally show "prob ((\<Inter>j\<in>J. A j) \<inter> (space M - X)) = prob (space M - X) * (\<Prod>i\<in>J. prob (A i))" .
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   231
        qed (insert X, auto)
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   232
      next
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   233
        fix F :: "nat \<Rightarrow> 'a set" assume disj: "disjoint_family F" and "range F \<subseteq> ?D"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   234
        then have F: "\<And>i. F i \<in> events" "\<And>i. indep_sets (G(j:={F i})) K" by auto
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   235
        show "indep_sets (G(j := {\<Union>k. F k})) K"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   236
        proof (rule indep_sets_insert)
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   237
          fix J A assume J: "j \<notin> J" "J \<noteq> {}" "J \<subseteq> K" "finite J" and A: "\<forall>i\<in>J. A i \<in> G i"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   238
          then have A_sets: "\<And>i. i\<in>J \<Longrightarrow> A i \<in> events"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   239
            using G by auto
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   240
          have "prob ((\<Inter>j\<in>J. A j) \<inter> (\<Union>k. F k)) = prob (\<Union>k. (\<Inter>i\<in>insert j J. (A(j := F k)) i))"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   241
            using `J \<noteq> {}` `j \<notin> J` `j \<in> K` by (auto intro!: arg_cong[where f=prob] split: split_if_asm)
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   242
          moreover have "(\<lambda>k. prob (\<Inter>i\<in>insert j J. (A(j := F k)) i)) sums prob (\<Union>k. (\<Inter>i\<in>insert j J. (A(j := F k)) i))"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   243
          proof (rule finite_measure_UNION)
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   244
            show "disjoint_family (\<lambda>k. \<Inter>i\<in>insert j J. (A(j := F k)) i)"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   245
              using disj by (rule disjoint_family_on_bisimulation) auto
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   246
            show "range (\<lambda>k. \<Inter>i\<in>insert j J. (A(j := F k)) i) \<subseteq> events"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   247
              using A_sets F `finite J` `J \<noteq> {}` `j \<notin> J` by (auto intro!: Int)
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   248
          qed
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   249
          moreover { fix k
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   250
            from J A `j \<in> K` have "prob (\<Inter>i\<in>insert j J. (A(j := F k)) i) = prob (F k) * (\<Prod>i\<in>J. prob (A i))"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   251
              by (subst indep_setsD[OF F(2)]) (auto intro!: setprod_cong split: split_if_asm)
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   252
            also have "\<dots> = prob (F k) * prob (\<Inter>i\<in>J. A i)"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   253
              using J A `j \<in> K` by (subst indep_setsD[OF G(1)]) auto
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   254
            finally have "prob (\<Inter>i\<in>insert j J. (A(j := F k)) i) = prob (F k) * prob (\<Inter>i\<in>J. A i)" . }
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   255
          ultimately have "(\<lambda>k. prob (F k) * prob (\<Inter>i\<in>J. A i)) sums (prob ((\<Inter>j\<in>J. A j) \<inter> (\<Union>k. F k)))"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   256
            by simp
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   257
          moreover
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   258
          have "(\<lambda>k. prob (F k) * prob (\<Inter>i\<in>J. A i)) sums (prob (\<Union>k. F k) * prob (\<Inter>i\<in>J. A i))"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   259
            using disj F(1) by (intro finite_measure_UNION sums_mult2) auto
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   260
          then have "(\<lambda>k. prob (F k) * prob (\<Inter>i\<in>J. A i)) sums (prob (\<Union>k. F k) * (\<Prod>i\<in>J. prob (A i)))"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   261
            using J A `j \<in> K` by (subst indep_setsD[OF G(1), symmetric]) auto
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   262
          ultimately
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   263
          show "prob ((\<Inter>j\<in>J. A j) \<inter> (\<Union>k. F k)) = prob (\<Union>k. F k) * (\<Prod>j\<in>J. prob (A j))"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   264
            by (auto dest!: sums_unique)
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   265
        qed (insert F, auto)
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   266
      qed (insert sets_into_space, auto)
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   267
      then have mono: "dynkin (space M) (G j) \<subseteq> {E \<in> events. indep_sets (G(j := {E})) K}"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   268
      proof (rule dynkin_system.dynkin_subset, safe)
42861
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   269
        fix X assume "X \<in> G j"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   270
        then show "X \<in> events" using G `j \<in> K` by auto
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   271
        from `indep_sets G K`
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   272
        show "indep_sets (G(j := {X})) K"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   273
          by (rule indep_sets_mono_sets) (insert `X \<in> G j`, auto)
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   274
      qed
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   275
      have "indep_sets (G(j:=?D)) K"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   276
      proof (rule indep_setsI)
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   277
        fix i assume "i \<in> K" then show "(G(j := ?D)) i \<subseteq> events"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   278
          using G(2) by auto
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   279
      next
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   280
        fix A J assume J: "J\<noteq>{}" "J \<subseteq> K" "finite J" and A: "\<forall>i\<in>J. A i \<in> (G(j := ?D)) i"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   281
        show "prob (\<Inter>j\<in>J. A j) = (\<Prod>j\<in>J. prob (A j))"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   282
        proof cases
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   283
          assume "j \<in> J"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   284
          with A have indep: "indep_sets (G(j := {A j})) K" by auto
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   285
          from J A show ?thesis
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   286
            by (intro indep_setsD[OF indep]) auto
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   287
        next
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   288
          assume "j \<notin> J"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   289
          with J A have "\<forall>i\<in>J. A i \<in> G i" by (auto split: split_if_asm)
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   290
          with J show ?thesis
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   291
            by (intro indep_setsD[OF G(1)]) auto
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   292
        qed
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   293
      qed
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   294
      then have "indep_sets (G(j := dynkin (space M) (G j))) K"
42861
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   295
        by (rule indep_sets_mono_sets) (insert mono, auto)
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   296
      then show ?case
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   297
        by (rule indep_sets_mono_sets) (insert `j \<in> K` `j \<notin> J`, auto simp: G_def)
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   298
    qed (insert `indep_sets F K`, simp) }
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   299
  from this[OF `indep_sets F J` `finite J` subset_refl]
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   300
  show "indep_sets ?F J"
42861
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   301
    by (rule indep_sets_mono_sets) auto
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   302
qed
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   303
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   304
lemma (in prob_space) indep_sets_sigma:
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   305
  assumes indep: "indep_sets F I"
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   306
  assumes stable: "\<And>i. i \<in> I \<Longrightarrow> Int_stable (F i)"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   307
  shows "indep_sets (\<lambda>i. sigma_sets (space M) (F i)) I"
42861
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   308
proof -
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   309
  from indep_sets_dynkin[OF indep]
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   310
  show ?thesis
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   311
  proof (rule indep_sets_mono_sets, subst sigma_eq_dynkin, simp_all add: stable)
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   312
    fix i assume "i \<in> I"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   313
    with indep have "F i \<subseteq> events" by (auto simp: indep_sets_def)
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   314
    with sets_into_space show "F i \<subseteq> Pow (space M)" by auto
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   315
  qed
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   316
qed
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   317
42987
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   318
lemma (in prob_space) indep_sets_sigma_sets_iff:
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   319
  assumes "\<And>i. i \<in> I \<Longrightarrow> Int_stable (F i)"
42987
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   320
  shows "indep_sets (\<lambda>i. sigma_sets (space M) (F i)) I \<longleftrightarrow> indep_sets F I"
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   321
proof
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   322
  assume "indep_sets F I" then show "indep_sets (\<lambda>i. sigma_sets (space M) (F i)) I"
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   323
    by (rule indep_sets_sigma) fact
42987
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   324
next
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   325
  assume "indep_sets (\<lambda>i. sigma_sets (space M) (F i)) I" then show "indep_sets F I"
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   326
    by (rule indep_sets_mono_sets) (intro subsetI sigma_sets.Basic)
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   327
qed
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   328
42861
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   329
lemma (in prob_space) indep_sets2_eq:
42981
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   330
  "indep_set A B \<longleftrightarrow> A \<subseteq> events \<and> B \<subseteq> events \<and> (\<forall>a\<in>A. \<forall>b\<in>B. prob (a \<inter> b) = prob a * prob b)"
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   331
  unfolding indep_set_def
42861
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   332
proof (intro iffI ballI conjI)
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   333
  assume indep: "indep_sets (bool_case A B) UNIV"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   334
  { fix a b assume "a \<in> A" "b \<in> B"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   335
    with indep_setsD[OF indep, of UNIV "bool_case a b"]
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   336
    show "prob (a \<inter> b) = prob a * prob b"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   337
      unfolding UNIV_bool by (simp add: ac_simps) }
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   338
  from indep show "A \<subseteq> events" "B \<subseteq> events"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   339
    unfolding indep_sets_def UNIV_bool by auto
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   340
next
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   341
  assume *: "A \<subseteq> events \<and> B \<subseteq> events \<and> (\<forall>a\<in>A. \<forall>b\<in>B. prob (a \<inter> b) = prob a * prob b)"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   342
  show "indep_sets (bool_case A B) UNIV"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   343
  proof (rule indep_setsI)
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   344
    fix i show "(case i of True \<Rightarrow> A | False \<Rightarrow> B) \<subseteq> events"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   345
      using * by (auto split: bool.split)
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   346
  next
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   347
    fix J X assume "J \<noteq> {}" "J \<subseteq> UNIV" and X: "\<forall>j\<in>J. X j \<in> (case j of True \<Rightarrow> A | False \<Rightarrow> B)"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   348
    then have "J = {True} \<or> J = {False} \<or> J = {True,False}"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   349
      by (auto simp: UNIV_bool)
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   350
    then show "prob (\<Inter>j\<in>J. X j) = (\<Prod>j\<in>J. prob (X j))"
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   351
      using X * by auto
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   352
  qed
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   353
qed
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   354
42981
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   355
lemma (in prob_space) indep_set_sigma_sets:
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   356
  assumes "indep_set A B"
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   357
  assumes A: "Int_stable A" and B: "Int_stable B"
42981
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   358
  shows "indep_set (sigma_sets (space M) A) (sigma_sets (space M) B)"
42861
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   359
proof -
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   360
  have "indep_sets (\<lambda>i. sigma_sets (space M) (case i of True \<Rightarrow> A | False \<Rightarrow> B)) UNIV"
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   361
  proof (rule indep_sets_sigma)
42861
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   362
    show "indep_sets (bool_case A B) UNIV"
42981
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   363
      by (rule `indep_set A B`[unfolded indep_set_def])
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   364
    fix i show "Int_stable (case i of True \<Rightarrow> A | False \<Rightarrow> B)"
42861
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   365
      using A B by (cases i) auto
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   366
  qed
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   367
  then show ?thesis
42981
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   368
    unfolding indep_set_def
42861
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   369
    by (rule indep_sets_mono_sets) (auto split: bool.split)
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   370
qed
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
   371
42981
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   372
lemma (in prob_space) indep_sets_collect_sigma:
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   373
  fixes I :: "'j \<Rightarrow> 'i set" and J :: "'j set" and E :: "'i \<Rightarrow> 'a set set"
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   374
  assumes indep: "indep_sets E (\<Union>j\<in>J. I j)"
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   375
  assumes Int_stable: "\<And>i j. j \<in> J \<Longrightarrow> i \<in> I j \<Longrightarrow> Int_stable (E i)"
42981
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   376
  assumes disjoint: "disjoint_family_on I J"
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   377
  shows "indep_sets (\<lambda>j. sigma_sets (space M) (\<Union>i\<in>I j. E i)) J"
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   378
proof -
46731
5302e932d1e5 avoid undeclared variables in let bindings;
wenzelm
parents: 45777
diff changeset
   379
  let ?E = "\<lambda>j. {\<Inter>k\<in>K. E' k| E' K. finite K \<and> K \<noteq> {} \<and> K \<subseteq> I j \<and> (\<forall>k\<in>K. E' k \<in> E k) }"
42981
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   380
42983
685df9c0626d use abbrevitation events == sets M
hoelzl
parents: 42982
diff changeset
   381
  from indep have E: "\<And>j i. j \<in> J \<Longrightarrow> i \<in> I j \<Longrightarrow> E i \<subseteq> events"
42981
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   382
    unfolding indep_sets_def by auto
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   383
  { fix j
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   384
    let ?S = "sigma_sets (space M) (\<Union>i\<in>I j. E i)"
42981
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   385
    assume "j \<in> J"
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   386
    from E[OF this] interpret S: sigma_algebra "space M" ?S
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   387
      using sets_into_space[of _ M] by (intro sigma_algebra_sigma_sets) auto
42981
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   388
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   389
    have "sigma_sets (space M) (\<Union>i\<in>I j. E i) = sigma_sets (space M) (?E j)"
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   390
    proof (rule sigma_sets_eqI)
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   391
      fix A assume "A \<in> (\<Union>i\<in>I j. E i)"
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   392
      then guess i ..
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   393
      then show "A \<in> sigma_sets (space M) (?E j)"
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   394
        by (auto intro!: sigma_sets.intros(2-) exI[of _ "{i}"] exI[of _ "\<lambda>i. A"])
42981
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   395
    next
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   396
      fix A assume "A \<in> ?E j"
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   397
      then obtain E' K where "finite K" "K \<noteq> {}" "K \<subseteq> I j" "\<And>k. k \<in> K \<Longrightarrow> E' k \<in> E k"
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   398
        and A: "A = (\<Inter>k\<in>K. E' k)"
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   399
        by auto
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   400
      then have "A \<in> ?S" unfolding A
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   401
        by (safe intro!: S.finite_INT) auto
42981
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   402
      then show "A \<in> sigma_sets (space M) (\<Union>i\<in>I j. E i)"
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   403
        by simp
42981
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   404
    qed }
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   405
  moreover have "indep_sets (\<lambda>j. sigma_sets (space M) (?E j)) J"
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   406
  proof (rule indep_sets_sigma)
42981
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   407
    show "indep_sets ?E J"
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   408
    proof (intro indep_setsI)
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   409
      fix j assume "j \<in> J" with E show "?E j \<subseteq> events" by (force  intro!: finite_INT)
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   410
    next
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   411
      fix K A assume K: "K \<noteq> {}" "K \<subseteq> J" "finite K"
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   412
        and "\<forall>j\<in>K. A j \<in> ?E j"
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   413
      then have "\<forall>j\<in>K. \<exists>E' L. A j = (\<Inter>l\<in>L. E' l) \<and> finite L \<and> L \<noteq> {} \<and> L \<subseteq> I j \<and> (\<forall>l\<in>L. E' l \<in> E l)"
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   414
        by simp
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   415
      from bchoice[OF this] guess E' ..
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   416
      from bchoice[OF this] obtain L
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   417
        where A: "\<And>j. j\<in>K \<Longrightarrow> A j = (\<Inter>l\<in>L j. E' j l)"
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   418
        and L: "\<And>j. j\<in>K \<Longrightarrow> finite (L j)" "\<And>j. j\<in>K \<Longrightarrow> L j \<noteq> {}" "\<And>j. j\<in>K \<Longrightarrow> L j \<subseteq> I j"
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   419
        and E': "\<And>j l. j\<in>K \<Longrightarrow> l \<in> L j \<Longrightarrow> E' j l \<in> E l"
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   420
        by auto
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   421
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   422
      { fix k l j assume "k \<in> K" "j \<in> K" "l \<in> L j" "l \<in> L k"
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   423
        have "k = j"
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   424
        proof (rule ccontr)
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   425
          assume "k \<noteq> j"
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   426
          with disjoint `K \<subseteq> J` `k \<in> K` `j \<in> K` have "I k \<inter> I j = {}"
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   427
            unfolding disjoint_family_on_def by auto
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   428
          with L(2,3)[OF `j \<in> K`] L(2,3)[OF `k \<in> K`]
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   429
          show False using `l \<in> L k` `l \<in> L j` by auto
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   430
        qed }
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   431
      note L_inj = this
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   432
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   433
      def k \<equiv> "\<lambda>l. (SOME k. k \<in> K \<and> l \<in> L k)"
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   434
      { fix x j l assume *: "j \<in> K" "l \<in> L j"
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   435
        have "k l = j" unfolding k_def
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   436
        proof (rule some_equality)
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   437
          fix k assume "k \<in> K \<and> l \<in> L k"
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   438
          with * L_inj show "k = j" by auto
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   439
        qed (insert *, simp) }
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   440
      note k_simp[simp] = this
46731
5302e932d1e5 avoid undeclared variables in let bindings;
wenzelm
parents: 45777
diff changeset
   441
      let ?E' = "\<lambda>l. E' (k l) l"
42981
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   442
      have "prob (\<Inter>j\<in>K. A j) = prob (\<Inter>l\<in>(\<Union>k\<in>K. L k). ?E' l)"
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   443
        by (auto simp: A intro!: arg_cong[where f=prob])
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   444
      also have "\<dots> = (\<Prod>l\<in>(\<Union>k\<in>K. L k). prob (?E' l))"
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   445
        using L K E' by (intro indep_setsD[OF indep]) (simp_all add: UN_mono)
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   446
      also have "\<dots> = (\<Prod>j\<in>K. \<Prod>l\<in>L j. prob (E' j l))"
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   447
        using K L L_inj by (subst setprod_UN_disjoint) auto
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   448
      also have "\<dots> = (\<Prod>j\<in>K. prob (A j))"
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   449
        using K L E' by (auto simp add: A intro!: setprod_cong indep_setsD[OF indep, symmetric]) blast
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   450
      finally show "prob (\<Inter>j\<in>K. A j) = (\<Prod>j\<in>K. prob (A j))" .
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   451
    qed
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   452
  next
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   453
    fix j assume "j \<in> J"
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   454
    show "Int_stable (?E j)"
42981
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   455
    proof (rule Int_stableI)
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   456
      fix a assume "a \<in> ?E j" then obtain Ka Ea
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   457
        where a: "a = (\<Inter>k\<in>Ka. Ea k)" "finite Ka" "Ka \<noteq> {}" "Ka \<subseteq> I j" "\<And>k. k\<in>Ka \<Longrightarrow> Ea k \<in> E k" by auto
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   458
      fix b assume "b \<in> ?E j" then obtain Kb Eb
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   459
        where b: "b = (\<Inter>k\<in>Kb. Eb k)" "finite Kb" "Kb \<noteq> {}" "Kb \<subseteq> I j" "\<And>k. k\<in>Kb \<Longrightarrow> Eb k \<in> E k" by auto
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   460
      let ?A = "\<lambda>k. (if k \<in> Ka \<inter> Kb then Ea k \<inter> Eb k else if k \<in> Kb then Eb k else if k \<in> Ka then Ea k else {})"
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   461
      have "a \<inter> b = INTER (Ka \<union> Kb) ?A"
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   462
        by (simp add: a b set_eq_iff) auto
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   463
      with a b `j \<in> J` Int_stableD[OF Int_stable] show "a \<inter> b \<in> ?E j"
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   464
        by (intro CollectI exI[of _ "Ka \<union> Kb"] exI[of _ ?A]) auto
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   465
    qed
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   466
  qed
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   467
  ultimately show ?thesis
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   468
    by (simp cong: indep_sets_cong)
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   469
qed
fe7f5a26e4c6 add lemma indep_sets_collect_sigma
hoelzl
parents: 42861
diff changeset
   470
42982
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   471
definition (in prob_space) terminal_events where
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   472
  "terminal_events A = (\<Inter>n. sigma_sets (space M) (UNION {n..} A))"
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   473
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   474
lemma (in prob_space) terminal_events_sets:
42983
685df9c0626d use abbrevitation events == sets M
hoelzl
parents: 42982
diff changeset
   475
  assumes A: "\<And>i. A i \<subseteq> events"
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   476
  assumes "\<And>i::nat. sigma_algebra (space M) (A i)"
42982
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   477
  assumes X: "X \<in> terminal_events A"
42983
685df9c0626d use abbrevitation events == sets M
hoelzl
parents: 42982
diff changeset
   478
  shows "X \<in> events"
42982
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   479
proof -
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   480
  let ?A = "(\<Inter>n. sigma_sets (space M) (UNION {n..} A))"
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   481
  interpret A: sigma_algebra "space M" "A i" for i by fact
42982
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   482
  from X have "\<And>n. X \<in> sigma_sets (space M) (UNION {n..} A)" by (auto simp: terminal_events_def)
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   483
  from this[of 0] have "X \<in> sigma_sets (space M) (UNION UNIV A)" by simp
42983
685df9c0626d use abbrevitation events == sets M
hoelzl
parents: 42982
diff changeset
   484
  then show "X \<in> events"
42982
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   485
    by induct (insert A, auto)
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   486
qed
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   487
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   488
lemma (in prob_space) sigma_algebra_terminal_events:
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   489
  assumes "\<And>i::nat. sigma_algebra (space M) (A i)"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   490
  shows "sigma_algebra (space M) (terminal_events A)"
42982
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   491
  unfolding terminal_events_def
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   492
proof (simp add: sigma_algebra_iff2, safe)
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   493
  let ?A = "(\<Inter>n. sigma_sets (space M) (UNION {n..} A))"
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   494
  interpret A: sigma_algebra "space M" "A i" for i by fact
43340
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42989
diff changeset
   495
  { fix X x assume "X \<in> ?A" "x \<in> X"
42982
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   496
    then have "\<And>n. X \<in> sigma_sets (space M) (UNION {n..} A)" by auto
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   497
    from this[of 0] have "X \<in> sigma_sets (space M) (UNION UNIV A)" by simp
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   498
    then have "X \<subseteq> space M"
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   499
      by induct (insert A.sets_into_space, auto)
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   500
    with `x \<in> X` show "x \<in> space M" by auto }
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   501
  { fix F :: "nat \<Rightarrow> 'a set" and n assume "range F \<subseteq> ?A"
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   502
    then show "(UNION UNIV F) \<in> sigma_sets (space M) (UNION {n..} A)"
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   503
      by (intro sigma_sets.Union) auto }
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   504
qed (auto intro!: sigma_sets.Compl sigma_sets.Empty)
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   505
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   506
lemma (in prob_space) kolmogorov_0_1_law:
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   507
  fixes A :: "nat \<Rightarrow> 'a set set"
42983
685df9c0626d use abbrevitation events == sets M
hoelzl
parents: 42982
diff changeset
   508
  assumes A: "\<And>i. A i \<subseteq> events"
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   509
  assumes "\<And>i::nat. sigma_algebra (space M) (A i)"
42982
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   510
  assumes indep: "indep_sets A UNIV"
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   511
  and X: "X \<in> terminal_events A"
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   512
  shows "prob X = 0 \<or> prob X = 1"
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   513
proof -
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   514
  let ?D = "{D \<in> events. prob (X \<inter> D) = prob X * prob D}"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   515
  interpret A: sigma_algebra "space M" "A i" for i by fact
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   516
  interpret T: sigma_algebra "space M" "terminal_events A"
42982
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   517
    by (rule sigma_algebra_terminal_events) fact
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   518
  have "X \<subseteq> space M" using T.space_closed X by auto
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   519
42983
685df9c0626d use abbrevitation events == sets M
hoelzl
parents: 42982
diff changeset
   520
  have X_in: "X \<in> events"
42982
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   521
    by (rule terminal_events_sets) fact+
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   522
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   523
  interpret D: dynkin_system "space M" ?D
42982
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   524
  proof (rule dynkin_systemI)
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   525
    fix D assume "D \<in> ?D" then show "D \<subseteq> space M"
42982
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   526
      using sets_into_space by auto
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   527
  next
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   528
    show "space M \<in> ?D"
42982
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   529
      using prob_space `X \<subseteq> space M` by (simp add: Int_absorb2)
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   530
  next
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   531
    fix A assume A: "A \<in> ?D"
42982
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   532
    have "prob (X \<inter> (space M - A)) = prob (X - (X \<inter> A))"
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   533
      using `X \<subseteq> space M` by (auto intro!: arg_cong[where f=prob])
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   534
    also have "\<dots> = prob X - prob (X \<inter> A)"
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   535
      using X_in A by (intro finite_measure_Diff) auto
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   536
    also have "\<dots> = prob X * prob (space M) - prob X * prob A"
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   537
      using A prob_space by auto
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   538
    also have "\<dots> = prob X * prob (space M - A)"
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   539
      using X_in A sets_into_space
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   540
      by (subst finite_measure_Diff) (auto simp: field_simps)
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   541
    finally show "space M - A \<in> ?D"
42982
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   542
      using A `X \<subseteq> space M` by auto
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   543
  next
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   544
    fix F :: "nat \<Rightarrow> 'a set" assume dis: "disjoint_family F" and "range F \<subseteq> ?D"
42982
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   545
    then have F: "range F \<subseteq> events" "\<And>i. prob (X \<inter> F i) = prob X * prob (F i)"
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   546
      by auto
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   547
    have "(\<lambda>i. prob (X \<inter> F i)) sums prob (\<Union>i. X \<inter> F i)"
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   548
    proof (rule finite_measure_UNION)
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   549
      show "range (\<lambda>i. X \<inter> F i) \<subseteq> events"
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   550
        using F X_in by auto
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   551
      show "disjoint_family (\<lambda>i. X \<inter> F i)"
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   552
        using dis by (rule disjoint_family_on_bisimulation) auto
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   553
    qed
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   554
    with F have "(\<lambda>i. prob X * prob (F i)) sums prob (X \<inter> (\<Union>i. F i))"
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   555
      by simp
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   556
    moreover have "(\<lambda>i. prob X * prob (F i)) sums (prob X * prob (\<Union>i. F i))"
44282
f0de18b62d63 remove bounded_(bi)linear locale interpretations, to avoid duplicating so many lemmas
huffman
parents: 43920
diff changeset
   557
      by (intro sums_mult finite_measure_UNION F dis)
42982
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   558
    ultimately have "prob (X \<inter> (\<Union>i. F i)) = prob X * prob (\<Union>i. F i)"
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   559
      by (auto dest!: sums_unique)
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   560
    with F show "(\<Union>i. F i) \<in> ?D"
42982
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   561
      by auto
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   562
  qed
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   563
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   564
  { fix n
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   565
    have "indep_sets (\<lambda>b. sigma_sets (space M) (\<Union>m\<in>bool_case {..n} {Suc n..} b. A m)) UNIV"
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   566
    proof (rule indep_sets_collect_sigma)
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   567
      have *: "(\<Union>b. case b of True \<Rightarrow> {..n} | False \<Rightarrow> {Suc n..}) = UNIV" (is "?U = _")
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   568
        by (simp split: bool.split add: set_eq_iff) (metis not_less_eq_eq)
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   569
      with indep show "indep_sets A ?U" by simp
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   570
      show "disjoint_family (bool_case {..n} {Suc n..})"
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   571
        unfolding disjoint_family_on_def by (auto split: bool.split)
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   572
      fix m
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   573
      show "Int_stable (A m)"
42982
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   574
        unfolding Int_stable_def using A.Int by auto
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   575
    qed
43340
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42989
diff changeset
   576
    also have "(\<lambda>b. sigma_sets (space M) (\<Union>m\<in>bool_case {..n} {Suc n..} b. A m)) =
42982
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   577
      bool_case (sigma_sets (space M) (\<Union>m\<in>{..n}. A m)) (sigma_sets (space M) (\<Union>m\<in>{Suc n..}. A m))"
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   578
      by (auto intro!: ext split: bool.split)
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   579
    finally have indep: "indep_set (sigma_sets (space M) (\<Union>m\<in>{..n}. A m)) (sigma_sets (space M) (\<Union>m\<in>{Suc n..}. A m))"
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   580
      unfolding indep_set_def by simp
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   581
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   582
    have "sigma_sets (space M) (\<Union>m\<in>{..n}. A m) \<subseteq> ?D"
42982
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   583
    proof (simp add: subset_eq, rule)
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   584
      fix D assume D: "D \<in> sigma_sets (space M) (\<Union>m\<in>{..n}. A m)"
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   585
      have "X \<in> sigma_sets (space M) (\<Union>m\<in>{Suc n..}. A m)"
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   586
        using X unfolding terminal_events_def by simp
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   587
      from indep_setD[OF indep D this] indep_setD_ev1[OF indep] D
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   588
      show "D \<in> events \<and> prob (X \<inter> D) = prob X * prob D"
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   589
        by (auto simp add: ac_simps)
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   590
    qed }
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   591
  then have "(\<Union>n. sigma_sets (space M) (\<Union>m\<in>{..n}. A m)) \<subseteq> ?D" (is "?A \<subseteq> _")
42982
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   592
    by auto
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   593
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   594
  note `X \<in> terminal_events A`
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   595
  also {
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   596
    have "\<And>n. sigma_sets (space M) (\<Union>i\<in>{n..}. A i) \<subseteq> sigma_sets (space M) ?A"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   597
      by (intro sigma_sets_subseteq UN_mono) auto
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   598
   then have "terminal_events A \<subseteq> sigma_sets (space M) ?A"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   599
      unfolding terminal_events_def by auto }
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   600
  also have "sigma_sets (space M) ?A = dynkin (space M) ?A"
42982
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   601
  proof (rule sigma_eq_dynkin)
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   602
    { fix B n assume "B \<in> sigma_sets (space M) (\<Union>m\<in>{..n}. A m)"
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   603
      then have "B \<subseteq> space M"
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   604
        by induct (insert A sets_into_space[of _ M], auto) }
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   605
    then show "?A \<subseteq> Pow (space M)" by auto
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   606
    show "Int_stable ?A"
42982
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   607
    proof (rule Int_stableI)
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   608
      fix a assume "a \<in> ?A" then guess n .. note a = this
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   609
      fix b assume "b \<in> ?A" then guess m .. note b = this
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   610
      interpret Amn: sigma_algebra "space M" "sigma_sets (space M) (\<Union>i\<in>{..max m n}. A i)"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   611
        using A sets_into_space[of _ M] by (intro sigma_algebra_sigma_sets) auto
42982
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   612
      have "sigma_sets (space M) (\<Union>i\<in>{..n}. A i) \<subseteq> sigma_sets (space M) (\<Union>i\<in>{..max m n}. A i)"
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   613
        by (intro sigma_sets_subseteq UN_mono) auto
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   614
      with a have "a \<in> sigma_sets (space M) (\<Union>i\<in>{..max m n}. A i)" by auto
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   615
      moreover
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   616
      have "sigma_sets (space M) (\<Union>i\<in>{..m}. A i) \<subseteq> sigma_sets (space M) (\<Union>i\<in>{..max m n}. A i)"
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   617
        by (intro sigma_sets_subseteq UN_mono) auto
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   618
      with b have "b \<in> sigma_sets (space M) (\<Union>i\<in>{..max m n}. A i)" by auto
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   619
      ultimately have "a \<inter> b \<in> sigma_sets (space M) (\<Union>i\<in>{..max m n}. A i)"
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   620
        using Amn.Int[of a b] by simp
42982
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   621
      then show "a \<inter> b \<in> (\<Union>n. sigma_sets (space M) (\<Union>i\<in>{..n}. A i))" by auto
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   622
    qed
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   623
  qed
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   624
  also have "dynkin (space M) ?A \<subseteq> ?D"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   625
    using `?A \<subseteq> ?D` by (auto intro!: D.dynkin_subset)
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   626
  finally show ?thesis by auto
42982
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   627
qed
fa0ac7bee9ac add lemma kolmogorov_0_1_law
hoelzl
parents: 42981
diff changeset
   628
42985
1fb670792708 add lemma borel_0_1_law
hoelzl
parents: 42983
diff changeset
   629
lemma (in prob_space) borel_0_1_law:
1fb670792708 add lemma borel_0_1_law
hoelzl
parents: 42983
diff changeset
   630
  fixes F :: "nat \<Rightarrow> 'a set"
1fb670792708 add lemma borel_0_1_law
hoelzl
parents: 42983
diff changeset
   631
  assumes F: "range F \<subseteq> events" "indep_events F UNIV"
1fb670792708 add lemma borel_0_1_law
hoelzl
parents: 42983
diff changeset
   632
  shows "prob (\<Inter>n. \<Union>m\<in>{n..}. F m) = 0 \<or> prob (\<Inter>n. \<Union>m\<in>{n..}. F m) = 1"
1fb670792708 add lemma borel_0_1_law
hoelzl
parents: 42983
diff changeset
   633
proof (rule kolmogorov_0_1_law[of "\<lambda>i. sigma_sets (space M) { F i }"])
1fb670792708 add lemma borel_0_1_law
hoelzl
parents: 42983
diff changeset
   634
  show "\<And>i. sigma_sets (space M) {F i} \<subseteq> events"
1fb670792708 add lemma borel_0_1_law
hoelzl
parents: 42983
diff changeset
   635
    using F(1) sets_into_space
1fb670792708 add lemma borel_0_1_law
hoelzl
parents: 42983
diff changeset
   636
    by (subst sigma_sets_singleton) auto
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   637
  { fix i show "sigma_algebra (space M) (sigma_sets (space M) {F i})"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   638
      using sigma_algebra_sigma_sets[of "{F i}" "space M"] F sets_into_space
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   639
      by auto }
42985
1fb670792708 add lemma borel_0_1_law
hoelzl
parents: 42983
diff changeset
   640
  show "indep_sets (\<lambda>i. sigma_sets (space M) {F i}) UNIV"
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   641
  proof (rule indep_sets_sigma)
42985
1fb670792708 add lemma borel_0_1_law
hoelzl
parents: 42983
diff changeset
   642
    show "indep_sets (\<lambda>i. {F i}) UNIV"
1fb670792708 add lemma borel_0_1_law
hoelzl
parents: 42983
diff changeset
   643
      unfolding indep_sets_singleton_iff_indep_events by fact
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   644
    fix i show "Int_stable {F i}"
42985
1fb670792708 add lemma borel_0_1_law
hoelzl
parents: 42983
diff changeset
   645
      unfolding Int_stable_def by simp
1fb670792708 add lemma borel_0_1_law
hoelzl
parents: 42983
diff changeset
   646
  qed
46731
5302e932d1e5 avoid undeclared variables in let bindings;
wenzelm
parents: 45777
diff changeset
   647
  let ?Q = "\<lambda>n. \<Union>i\<in>{n..}. F i"
42985
1fb670792708 add lemma borel_0_1_law
hoelzl
parents: 42983
diff changeset
   648
  show "(\<Inter>n. \<Union>m\<in>{n..}. F m) \<in> terminal_events (\<lambda>i. sigma_sets (space M) {F i})"
1fb670792708 add lemma borel_0_1_law
hoelzl
parents: 42983
diff changeset
   649
    unfolding terminal_events_def
1fb670792708 add lemma borel_0_1_law
hoelzl
parents: 42983
diff changeset
   650
  proof
1fb670792708 add lemma borel_0_1_law
hoelzl
parents: 42983
diff changeset
   651
    fix j
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   652
    interpret S: sigma_algebra "space M" "sigma_sets (space M) (\<Union>i\<in>{j..}. sigma_sets (space M) {F i})"
42985
1fb670792708 add lemma borel_0_1_law
hoelzl
parents: 42983
diff changeset
   653
      using order_trans[OF F(1) space_closed]
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   654
      by (intro sigma_algebra_sigma_sets) (simp add: sigma_sets_singleton subset_eq)
42985
1fb670792708 add lemma borel_0_1_law
hoelzl
parents: 42983
diff changeset
   655
    have "(\<Inter>n. ?Q n) = (\<Inter>n\<in>{j..}. ?Q n)"
1fb670792708 add lemma borel_0_1_law
hoelzl
parents: 42983
diff changeset
   656
      by (intro decseq_SucI INT_decseq_offset UN_mono) auto
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   657
    also have "\<dots> \<in> sigma_sets (space M) (\<Union>i\<in>{j..}. sigma_sets (space M) {F i})"
42985
1fb670792708 add lemma borel_0_1_law
hoelzl
parents: 42983
diff changeset
   658
      using order_trans[OF F(1) space_closed]
1fb670792708 add lemma borel_0_1_law
hoelzl
parents: 42983
diff changeset
   659
      by (safe intro!: S.countable_INT S.countable_UN)
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   660
         (auto simp: sigma_sets_singleton intro!: sigma_sets.Basic bexI)
42985
1fb670792708 add lemma borel_0_1_law
hoelzl
parents: 42983
diff changeset
   661
    finally show "(\<Inter>n. ?Q n) \<in> sigma_sets (space M) (\<Union>i\<in>{j..}. sigma_sets (space M) {F i})"
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   662
      by simp
42985
1fb670792708 add lemma borel_0_1_law
hoelzl
parents: 42983
diff changeset
   663
  qed
1fb670792708 add lemma borel_0_1_law
hoelzl
parents: 42983
diff changeset
   664
qed
1fb670792708 add lemma borel_0_1_law
hoelzl
parents: 42983
diff changeset
   665
42987
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   666
lemma (in prob_space) indep_sets_finite:
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   667
  assumes I: "I \<noteq> {}" "finite I"
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   668
    and F: "\<And>i. i \<in> I \<Longrightarrow> F i \<subseteq> events" "\<And>i. i \<in> I \<Longrightarrow> space M \<in> F i"
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   669
  shows "indep_sets F I \<longleftrightarrow> (\<forall>A\<in>Pi I F. prob (\<Inter>j\<in>I. A j) = (\<Prod>j\<in>I. prob (A j)))"
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   670
proof
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   671
  assume *: "indep_sets F I"
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   672
  from I show "\<forall>A\<in>Pi I F. prob (\<Inter>j\<in>I. A j) = (\<Prod>j\<in>I. prob (A j))"
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   673
    by (intro indep_setsD[OF *] ballI) auto
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   674
next
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   675
  assume indep: "\<forall>A\<in>Pi I F. prob (\<Inter>j\<in>I. A j) = (\<Prod>j\<in>I. prob (A j))"
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   676
  show "indep_sets F I"
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   677
  proof (rule indep_setsI[OF F(1)])
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   678
    fix A J assume J: "J \<noteq> {}" "J \<subseteq> I" "finite J"
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   679
    assume A: "\<forall>j\<in>J. A j \<in> F j"
46731
5302e932d1e5 avoid undeclared variables in let bindings;
wenzelm
parents: 45777
diff changeset
   680
    let ?A = "\<lambda>j. if j \<in> J then A j else space M"
42987
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   681
    have "prob (\<Inter>j\<in>I. ?A j) = prob (\<Inter>j\<in>J. A j)"
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   682
      using subset_trans[OF F(1) space_closed] J A
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   683
      by (auto intro!: arg_cong[where f=prob] split: split_if_asm) blast
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   684
    also
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   685
    from A F have "(\<lambda>j. if j \<in> J then A j else space M) \<in> Pi I F" (is "?A \<in> _")
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   686
      by (auto split: split_if_asm)
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   687
    with indep have "prob (\<Inter>j\<in>I. ?A j) = (\<Prod>j\<in>I. prob (?A j))"
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   688
      by auto
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   689
    also have "\<dots> = (\<Prod>j\<in>J. prob (A j))"
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   690
      unfolding if_distrib setprod.If_cases[OF `finite I`]
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   691
      using prob_space `J \<subseteq> I` by (simp add: Int_absorb1 setprod_1)
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   692
    finally show "prob (\<Inter>j\<in>J. A j) = (\<Prod>j\<in>J. prob (A j))" ..
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   693
  qed
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   694
qed
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   695
42989
40adeda9a8d2 introduce independence of two random variables
hoelzl
parents: 42988
diff changeset
   696
lemma (in prob_space) indep_vars_finite:
42987
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   697
  fixes I :: "'i set"
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   698
  assumes I: "I \<noteq> {}" "finite I"
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   699
    and M': "\<And>i. i \<in> I \<Longrightarrow> sets (M' i) = sigma_sets (space (M' i)) (E i)"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   700
    and rv: "\<And>i. i \<in> I \<Longrightarrow> random_variable (M' i) (X i)"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   701
    and Int_stable: "\<And>i. i \<in> I \<Longrightarrow> Int_stable (E i)"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   702
    and space: "\<And>i. i \<in> I \<Longrightarrow> space (M' i) \<in> E i" and closed: "\<And>i. i \<in> I \<Longrightarrow> E i \<subseteq> Pow (space (M' i))"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   703
  shows "indep_vars M' X I \<longleftrightarrow>
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   704
    (\<forall>A\<in>(\<Pi> i\<in>I. E i). prob (\<Inter>j\<in>I. X j -` A j \<inter> space M) = (\<Prod>j\<in>I. prob (X j -` A j \<inter> space M)))"
42987
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   705
proof -
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   706
  from rv have X: "\<And>i. i \<in> I \<Longrightarrow> X i \<in> space M \<rightarrow> space (M' i)"
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   707
    unfolding measurable_def by simp
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   708
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   709
  { fix i assume "i\<in>I"
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   710
    from closed[OF `i \<in> I`]
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   711
    have "sigma_sets (space M) {X i -` A \<inter> space M |A. A \<in> sets (M' i)}
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   712
      = sigma_sets (space M) {X i -` A \<inter> space M |A. A \<in> E i}"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   713
      unfolding sigma_sets_vimage_commute[OF X, OF `i \<in> I`, symmetric] M'[OF `i \<in> I`]
42987
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   714
      by (subst sigma_sets_sigma_sets_eq) auto }
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   715
  note sigma_sets_X = this
42987
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   716
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   717
  { fix i assume "i\<in>I"
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   718
    have "Int_stable {X i -` A \<inter> space M |A. A \<in> E i}"
42987
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   719
    proof (rule Int_stableI)
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   720
      fix a assume "a \<in> {X i -` A \<inter> space M |A. A \<in> E i}"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   721
      then obtain A where "a = X i -` A \<inter> space M" "A \<in> E i" by auto
42987
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   722
      moreover
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   723
      fix b assume "b \<in> {X i -` A \<inter> space M |A. A \<in> E i}"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   724
      then obtain B where "b = X i -` B \<inter> space M" "B \<in> E i" by auto
42987
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   725
      moreover
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   726
      have "(X i -` A \<inter> space M) \<inter> (X i -` B \<inter> space M) = X i -` (A \<inter> B) \<inter> space M" by auto
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   727
      moreover note Int_stable[OF `i \<in> I`]
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   728
      ultimately
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   729
      show "a \<inter> b \<in> {X i -` A \<inter> space M |A. A \<in> E i}"
42987
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   730
        by (auto simp del: vimage_Int intro!: exI[of _ "A \<inter> B"] dest: Int_stableD)
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   731
    qed }
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   732
  note indep_sets_X = indep_sets_sigma_sets_iff[OF this]
43340
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42989
diff changeset
   733
42987
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   734
  { fix i assume "i \<in> I"
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   735
    { fix A assume "A \<in> E i"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   736
      with M'[OF `i \<in> I`] have "A \<in> sets (M' i)" by auto
42987
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   737
      moreover
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   738
      from rv[OF `i\<in>I`] have "X i \<in> measurable M (M' i)" by auto
42987
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   739
      ultimately
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   740
      have "X i -` A \<inter> space M \<in> sets M" by (auto intro: measurable_sets) }
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   741
    with X[OF `i\<in>I`] space[OF `i\<in>I`]
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   742
    have "{X i -` A \<inter> space M |A. A \<in> E i} \<subseteq> events"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   743
      "space M \<in> {X i -` A \<inter> space M |A. A \<in> E i}"
42987
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   744
      by (auto intro!: exI[of _ "space (M' i)"]) }
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   745
  note indep_sets_finite_X = indep_sets_finite[OF I this]
43340
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42989
diff changeset
   746
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   747
  have "(\<forall>A\<in>\<Pi> i\<in>I. {X i -` A \<inter> space M |A. A \<in> E i}. prob (INTER I A) = (\<Prod>j\<in>I. prob (A j))) =
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   748
    (\<forall>A\<in>\<Pi> i\<in>I. E i. prob ((\<Inter>j\<in>I. X j -` A j) \<inter> space M) = (\<Prod>x\<in>I. prob (X x -` A x \<inter> space M)))"
42987
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   749
    (is "?L = ?R")
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   750
  proof safe
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   751
    fix A assume ?L and A: "A \<in> (\<Pi> i\<in>I. E i)"
42987
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   752
    from `?L`[THEN bspec, of "\<lambda>i. X i -` A i \<inter> space M"] A `I \<noteq> {}`
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   753
    show "prob ((\<Inter>j\<in>I. X j -` A j) \<inter> space M) = (\<Prod>x\<in>I. prob (X x -` A x \<inter> space M))"
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   754
      by (auto simp add: Pi_iff)
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   755
  next
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   756
    fix A assume ?R and A: "A \<in> (\<Pi> i\<in>I. {X i -` A \<inter> space M |A. A \<in> E i})"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   757
    from A have "\<forall>i\<in>I. \<exists>B. A i = X i -` B \<inter> space M \<and> B \<in> E i" by auto
42987
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   758
    from bchoice[OF this] obtain B where B: "\<forall>i\<in>I. A i = X i -` B i \<inter> space M"
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   759
      "B \<in> (\<Pi> i\<in>I. E i)" by auto
42987
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   760
    from `?R`[THEN bspec, OF B(2)] B(1) `I \<noteq> {}`
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   761
    show "prob (INTER I A) = (\<Prod>j\<in>I. prob (A j))"
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   762
      by simp
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   763
  qed
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   764
  then show ?thesis using `I \<noteq> {}`
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   765
    by (simp add: rv indep_vars_def indep_sets_X sigma_sets_X indep_sets_finite_X cong: indep_sets_cong)
42988
d8f3fc934ff6 add lemma indep_distribution_eq_measure
hoelzl
parents: 42987
diff changeset
   766
qed
d8f3fc934ff6 add lemma indep_distribution_eq_measure
hoelzl
parents: 42987
diff changeset
   767
42989
40adeda9a8d2 introduce independence of two random variables
hoelzl
parents: 42988
diff changeset
   768
lemma (in prob_space) indep_vars_compose:
40adeda9a8d2 introduce independence of two random variables
hoelzl
parents: 42988
diff changeset
   769
  assumes "indep_vars M' X I"
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   770
  assumes rv: "\<And>i. i \<in> I \<Longrightarrow> Y i \<in> measurable (M' i) (N i)"
42989
40adeda9a8d2 introduce independence of two random variables
hoelzl
parents: 42988
diff changeset
   771
  shows "indep_vars N (\<lambda>i. Y i \<circ> X i) I"
40adeda9a8d2 introduce independence of two random variables
hoelzl
parents: 42988
diff changeset
   772
  unfolding indep_vars_def
42988
d8f3fc934ff6 add lemma indep_distribution_eq_measure
hoelzl
parents: 42987
diff changeset
   773
proof
42989
40adeda9a8d2 introduce independence of two random variables
hoelzl
parents: 42988
diff changeset
   774
  from rv `indep_vars M' X I`
42988
d8f3fc934ff6 add lemma indep_distribution_eq_measure
hoelzl
parents: 42987
diff changeset
   775
  show "\<forall>i\<in>I. random_variable (N i) (Y i \<circ> X i)"
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   776
    by (auto simp: indep_vars_def)
42988
d8f3fc934ff6 add lemma indep_distribution_eq_measure
hoelzl
parents: 42987
diff changeset
   777
d8f3fc934ff6 add lemma indep_distribution_eq_measure
hoelzl
parents: 42987
diff changeset
   778
  have "indep_sets (\<lambda>i. sigma_sets (space M) {X i -` A \<inter> space M |A. A \<in> sets (M' i)}) I"
42989
40adeda9a8d2 introduce independence of two random variables
hoelzl
parents: 42988
diff changeset
   779
    using `indep_vars M' X I` by (simp add: indep_vars_def)
42988
d8f3fc934ff6 add lemma indep_distribution_eq_measure
hoelzl
parents: 42987
diff changeset
   780
  then show "indep_sets (\<lambda>i. sigma_sets (space M) {(Y i \<circ> X i) -` A \<inter> space M |A. A \<in> sets (N i)}) I"
d8f3fc934ff6 add lemma indep_distribution_eq_measure
hoelzl
parents: 42987
diff changeset
   781
  proof (rule indep_sets_mono_sets)
d8f3fc934ff6 add lemma indep_distribution_eq_measure
hoelzl
parents: 42987
diff changeset
   782
    fix i assume "i \<in> I"
42989
40adeda9a8d2 introduce independence of two random variables
hoelzl
parents: 42988
diff changeset
   783
    with `indep_vars M' X I` have X: "X i \<in> space M \<rightarrow> space (M' i)"
40adeda9a8d2 introduce independence of two random variables
hoelzl
parents: 42988
diff changeset
   784
      unfolding indep_vars_def measurable_def by auto
42988
d8f3fc934ff6 add lemma indep_distribution_eq_measure
hoelzl
parents: 42987
diff changeset
   785
    { fix A assume "A \<in> sets (N i)"
d8f3fc934ff6 add lemma indep_distribution_eq_measure
hoelzl
parents: 42987
diff changeset
   786
      then have "\<exists>B. (Y i \<circ> X i) -` A \<inter> space M = X i -` B \<inter> space M \<and> B \<in> sets (M' i)"
d8f3fc934ff6 add lemma indep_distribution_eq_measure
hoelzl
parents: 42987
diff changeset
   787
        by (intro exI[of _ "Y i -` A \<inter> space (M' i)"])
d8f3fc934ff6 add lemma indep_distribution_eq_measure
hoelzl
parents: 42987
diff changeset
   788
           (auto simp: vimage_compose intro!: measurable_sets rv `i \<in> I` funcset_mem[OF X]) }
d8f3fc934ff6 add lemma indep_distribution_eq_measure
hoelzl
parents: 42987
diff changeset
   789
    then show "sigma_sets (space M) {(Y i \<circ> X i) -` A \<inter> space M |A. A \<in> sets (N i)} \<subseteq>
d8f3fc934ff6 add lemma indep_distribution_eq_measure
hoelzl
parents: 42987
diff changeset
   790
      sigma_sets (space M) {X i -` A \<inter> space M |A. A \<in> sets (M' i)}"
d8f3fc934ff6 add lemma indep_distribution_eq_measure
hoelzl
parents: 42987
diff changeset
   791
      by (intro sigma_sets_subseteq) (auto simp: vimage_compose)
d8f3fc934ff6 add lemma indep_distribution_eq_measure
hoelzl
parents: 42987
diff changeset
   792
  qed
d8f3fc934ff6 add lemma indep_distribution_eq_measure
hoelzl
parents: 42987
diff changeset
   793
qed
d8f3fc934ff6 add lemma indep_distribution_eq_measure
hoelzl
parents: 42987
diff changeset
   794
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   795
lemma (in prob_space) indep_varsD_finite:
42989
40adeda9a8d2 introduce independence of two random variables
hoelzl
parents: 42988
diff changeset
   796
  assumes X: "indep_vars M' X I"
42988
d8f3fc934ff6 add lemma indep_distribution_eq_measure
hoelzl
parents: 42987
diff changeset
   797
  assumes I: "I \<noteq> {}" "finite I" "\<And>i. i \<in> I \<Longrightarrow> A i \<in> sets (M' i)"
d8f3fc934ff6 add lemma indep_distribution_eq_measure
hoelzl
parents: 42987
diff changeset
   798
  shows "prob (\<Inter>i\<in>I. X i -` A i \<inter> space M) = (\<Prod>i\<in>I. prob (X i -` A i \<inter> space M))"
d8f3fc934ff6 add lemma indep_distribution_eq_measure
hoelzl
parents: 42987
diff changeset
   799
proof (rule indep_setsD)
d8f3fc934ff6 add lemma indep_distribution_eq_measure
hoelzl
parents: 42987
diff changeset
   800
  show "indep_sets (\<lambda>i. sigma_sets (space M) {X i -` A \<inter> space M |A. A \<in> sets (M' i)}) I"
42989
40adeda9a8d2 introduce independence of two random variables
hoelzl
parents: 42988
diff changeset
   801
    using X by (auto simp: indep_vars_def)
42988
d8f3fc934ff6 add lemma indep_distribution_eq_measure
hoelzl
parents: 42987
diff changeset
   802
  show "I \<subseteq> I" "I \<noteq> {}" "finite I" using I by auto
d8f3fc934ff6 add lemma indep_distribution_eq_measure
hoelzl
parents: 42987
diff changeset
   803
  show "\<forall>i\<in>I. X i -` A i \<inter> space M \<in> sigma_sets (space M) {X i -` A \<inter> space M |A. A \<in> sets (M' i)}"
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   804
    using I by auto
42988
d8f3fc934ff6 add lemma indep_distribution_eq_measure
hoelzl
parents: 42987
diff changeset
   805
qed
d8f3fc934ff6 add lemma indep_distribution_eq_measure
hoelzl
parents: 42987
diff changeset
   806
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   807
lemma (in prob_space) indep_varsD:
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   808
  assumes X: "indep_vars M' X I"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   809
  assumes I: "J \<noteq> {}" "finite J" "J \<subseteq> I" "\<And>i. i \<in> J \<Longrightarrow> A i \<in> sets (M' i)"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   810
  shows "prob (\<Inter>i\<in>J. X i -` A i \<inter> space M) = (\<Prod>i\<in>J. prob (X i -` A i \<inter> space M))"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   811
proof (rule indep_setsD)
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   812
  show "indep_sets (\<lambda>i. sigma_sets (space M) {X i -` A \<inter> space M |A. A \<in> sets (M' i)}) I"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   813
    using X by (auto simp: indep_vars_def)
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   814
  show "\<forall>i\<in>J. X i -` A i \<inter> space M \<in> sigma_sets (space M) {X i -` A \<inter> space M |A. A \<in> sets (M' i)}"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   815
    using I by auto
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   816
qed fact+
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   817
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   818
lemma prod_algebra_cong:
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   819
  assumes "I = J" and sets: "(\<And>i. i \<in> I \<Longrightarrow> sets (M i) = sets (N i))"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   820
  shows "prod_algebra I M = prod_algebra J N"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   821
proof -
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   822
  have space: "\<And>i. i \<in> I \<Longrightarrow> space (M i) = space (N i)"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   823
    using sets_eq_imp_space_eq[OF sets] by auto
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   824
  with sets show ?thesis unfolding `I = J`
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   825
    by (intro antisym prod_algebra_mono) auto
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   826
qed
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   827
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   828
lemma space_in_prod_algebra:
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   829
  "(\<Pi>\<^isub>E i\<in>I. space (M i)) \<in> prod_algebra I M"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   830
proof cases
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   831
  assume "I = {}" then show ?thesis
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   832
    by (auto simp add: prod_algebra_def image_iff prod_emb_def)
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   833
next
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   834
  assume "I \<noteq> {}"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   835
  then obtain i where "i \<in> I" by auto
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   836
  then have "(\<Pi>\<^isub>E i\<in>I. space (M i)) = prod_emb I M {i} (\<Pi>\<^isub>E i\<in>{i}. space (M i))"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   837
    by (auto simp: prod_emb_def Pi_iff)
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   838
  also have "\<dots> \<in> prod_algebra I M"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   839
    using `i \<in> I` by (intro prod_algebraI) auto
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   840
  finally show ?thesis .
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   841
qed
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   842
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   843
lemma (in prob_space) indep_vars_iff_distr_eq_PiM:
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   844
  fixes I :: "'i set" and X :: "'i \<Rightarrow> 'a \<Rightarrow> 'b"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   845
  assumes "I \<noteq> {}"
42988
d8f3fc934ff6 add lemma indep_distribution_eq_measure
hoelzl
parents: 42987
diff changeset
   846
  assumes rv: "\<And>i. random_variable (M' i) (X i)"
42989
40adeda9a8d2 introduce independence of two random variables
hoelzl
parents: 42988
diff changeset
   847
  shows "indep_vars M' X I \<longleftrightarrow>
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   848
    distr M (\<Pi>\<^isub>M i\<in>I. M' i) (\<lambda>x. \<lambda>i\<in>I. X i x) = (\<Pi>\<^isub>M i\<in>I. distr M (M' i) (X i))"
42988
d8f3fc934ff6 add lemma indep_distribution_eq_measure
hoelzl
parents: 42987
diff changeset
   849
proof -
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   850
  let ?P = "\<Pi>\<^isub>M i\<in>I. M' i"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   851
  let ?X = "\<lambda>x. \<lambda>i\<in>I. X i x"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   852
  let ?D = "distr M ?P ?X"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   853
  have X: "random_variable ?P ?X" by (intro measurable_restrict rv)
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   854
  interpret D: prob_space ?D by (intro prob_space_distr X)
42988
d8f3fc934ff6 add lemma indep_distribution_eq_measure
hoelzl
parents: 42987
diff changeset
   855
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   856
  let ?D' = "\<lambda>i. distr M (M' i) (X i)"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   857
  let ?P' = "\<Pi>\<^isub>M i\<in>I. distr M (M' i) (X i)"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   858
  interpret D': prob_space "?D' i" for i by (intro prob_space_distr rv)
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   859
  interpret P: product_prob_space ?D' I ..
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   860
    
42988
d8f3fc934ff6 add lemma indep_distribution_eq_measure
hoelzl
parents: 42987
diff changeset
   861
  show ?thesis
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   862
  proof
42989
40adeda9a8d2 introduce independence of two random variables
hoelzl
parents: 42988
diff changeset
   863
    assume "indep_vars M' X I"
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   864
    show "?D = ?P'"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   865
    proof (rule measure_eqI_generator_eq)
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   866
      show "Int_stable (prod_algebra I M')"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   867
        by (rule Int_stable_prod_algebra)
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   868
      show "prod_algebra I M' \<subseteq> Pow (space ?P)"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   869
        using prod_algebra_sets_into_space by (simp add: space_PiM)
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   870
      show "sets ?D = sigma_sets (space ?P) (prod_algebra I M')"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   871
        by (simp add: sets_PiM space_PiM)
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   872
      show "sets ?P' = sigma_sets (space ?P) (prod_algebra I M')"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   873
        by (simp add: sets_PiM space_PiM cong: prod_algebra_cong)
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   874
      let ?A = "\<lambda>i. \<Pi>\<^isub>E i\<in>I. space (M' i)"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   875
      show "range ?A \<subseteq> prod_algebra I M'" "incseq ?A" "(\<Union>i. ?A i) = space (Pi\<^isub>M I M')"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   876
        by (auto simp: space_PiM intro!: space_in_prod_algebra cong: prod_algebra_cong)
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   877
      { fix i show "emeasure ?D (\<Pi>\<^isub>E i\<in>I. space (M' i)) \<noteq> \<infinity>" by auto }
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   878
    next
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   879
      fix E assume E: "E \<in> prod_algebra I M'"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   880
      from prod_algebraE[OF E] guess J Y . note J = this
43340
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42989
diff changeset
   881
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   882
      from E have "E \<in> sets ?P" by (auto simp: sets_PiM)
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   883
      then have "emeasure ?D E = emeasure M (?X -` E \<inter> space M)"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   884
        by (simp add: emeasure_distr X)
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   885
      also have "?X -` E \<inter> space M = (\<Inter>i\<in>J. X i -` Y i \<inter> space M)"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   886
        using J `I \<noteq> {}` measurable_space[OF rv] by (auto simp: prod_emb_def Pi_iff split: split_if_asm)
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   887
      also have "emeasure M (\<Inter>i\<in>J. X i -` Y i \<inter> space M) = (\<Prod> i\<in>J. emeasure M (X i -` Y i \<inter> space M))"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   888
        using `indep_vars M' X I` J `I \<noteq> {}` using indep_varsD[of M' X I J]
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   889
        by (auto simp: emeasure_eq_measure setprod_ereal)
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   890
      also have "\<dots> = (\<Prod> i\<in>J. emeasure (?D' i) (Y i))"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   891
        using rv J by (simp add: emeasure_distr)
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   892
      also have "\<dots> = emeasure ?P' E"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   893
        using P.emeasure_PiM_emb[of J Y] J by (simp add: prod_emb_def)
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   894
      finally show "emeasure ?D E = emeasure ?P' E" .
42988
d8f3fc934ff6 add lemma indep_distribution_eq_measure
hoelzl
parents: 42987
diff changeset
   895
    qed
d8f3fc934ff6 add lemma indep_distribution_eq_measure
hoelzl
parents: 42987
diff changeset
   896
  next
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   897
    assume "?D = ?P'"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   898
    show "indep_vars M' X I" unfolding indep_vars_def
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   899
    proof (intro conjI indep_setsI ballI rv)
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   900
      fix i show "sigma_sets (space M) {X i -` A \<inter> space M |A. A \<in> sets (M' i)} \<subseteq> events"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   901
        by (auto intro!: sigma_sets_subset measurable_sets rv)
42988
d8f3fc934ff6 add lemma indep_distribution_eq_measure
hoelzl
parents: 42987
diff changeset
   902
    next
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   903
      fix J Y' assume J: "J \<noteq> {}" "J \<subseteq> I" "finite J"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   904
      assume Y': "\<forall>j\<in>J. Y' j \<in> sigma_sets (space M) {X j -` A \<inter> space M |A. A \<in> sets (M' j)}"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   905
      have "\<forall>j\<in>J. \<exists>Y. Y' j = X j -` Y \<inter> space M \<and> Y \<in> sets (M' j)"
42988
d8f3fc934ff6 add lemma indep_distribution_eq_measure
hoelzl
parents: 42987
diff changeset
   906
      proof
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   907
        fix j assume "j \<in> J"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   908
        from Y'[rule_format, OF this] rv[of j]
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   909
        show "\<exists>Y. Y' j = X j -` Y \<inter> space M \<and> Y \<in> sets (M' j)"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   910
          by (subst (asm) sigma_sets_vimage_commute[symmetric, of _ _ "space (M' j)"])
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   911
             (auto dest: measurable_space simp: sigma_sets_eq)
42988
d8f3fc934ff6 add lemma indep_distribution_eq_measure
hoelzl
parents: 42987
diff changeset
   912
      qed
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   913
      from bchoice[OF this] obtain Y where
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   914
        Y: "\<And>j. j \<in> J \<Longrightarrow> Y' j = X j -` Y j \<inter> space M" "\<And>j. j \<in> J \<Longrightarrow> Y j \<in> sets (M' j)" by auto
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   915
      let ?E = "prod_emb I M' J (Pi\<^isub>E J Y)"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   916
      from Y have "(\<Inter>j\<in>J. Y' j) = ?X -` ?E \<inter> space M"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   917
        using J `I \<noteq> {}` measurable_space[OF rv] by (auto simp: prod_emb_def Pi_iff split: split_if_asm)
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   918
      then have "emeasure M (\<Inter>j\<in>J. Y' j) = emeasure M (?X -` ?E \<inter> space M)"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   919
        by simp
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   920
      also have "\<dots> = emeasure ?D ?E"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   921
        using Y  J by (intro emeasure_distr[symmetric] X sets_PiM_I) auto
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   922
      also have "\<dots> = emeasure ?P' ?E"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   923
        using `?D = ?P'` by simp
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   924
      also have "\<dots> = (\<Prod> i\<in>J. emeasure (?D' i) (Y i))"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   925
        using P.emeasure_PiM_emb[of J Y] J Y by (simp add: prod_emb_def)
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   926
      also have "\<dots> = (\<Prod> i\<in>J. emeasure M (Y' i))"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   927
        using rv J Y by (simp add: emeasure_distr)
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   928
      finally have "emeasure M (\<Inter>j\<in>J. Y' j) = (\<Prod> i\<in>J. emeasure M (Y' i))" .
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   929
      then show "prob (\<Inter>j\<in>J. Y' j) = (\<Prod> i\<in>J. prob (Y' i))"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   930
        by (auto simp: emeasure_eq_measure setprod_ereal)
42988
d8f3fc934ff6 add lemma indep_distribution_eq_measure
hoelzl
parents: 42987
diff changeset
   931
    qed
d8f3fc934ff6 add lemma indep_distribution_eq_measure
hoelzl
parents: 42987
diff changeset
   932
  qed
42987
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   933
qed
73e2d802ea41 add lemma indep_rv_finite
hoelzl
parents: 42985
diff changeset
   934
42989
40adeda9a8d2 introduce independence of two random variables
hoelzl
parents: 42988
diff changeset
   935
lemma (in prob_space) indep_varD:
40adeda9a8d2 introduce independence of two random variables
hoelzl
parents: 42988
diff changeset
   936
  assumes indep: "indep_var Ma A Mb B"
40adeda9a8d2 introduce independence of two random variables
hoelzl
parents: 42988
diff changeset
   937
  assumes sets: "Xa \<in> sets Ma" "Xb \<in> sets Mb"
40adeda9a8d2 introduce independence of two random variables
hoelzl
parents: 42988
diff changeset
   938
  shows "prob ((\<lambda>x. (A x, B x)) -` (Xa \<times> Xb) \<inter> space M) =
40adeda9a8d2 introduce independence of two random variables
hoelzl
parents: 42988
diff changeset
   939
    prob (A -` Xa \<inter> space M) * prob (B -` Xb \<inter> space M)"
40adeda9a8d2 introduce independence of two random variables
hoelzl
parents: 42988
diff changeset
   940
proof -
40adeda9a8d2 introduce independence of two random variables
hoelzl
parents: 42988
diff changeset
   941
  have "prob ((\<lambda>x. (A x, B x)) -` (Xa \<times> Xb) \<inter> space M) =
40adeda9a8d2 introduce independence of two random variables
hoelzl
parents: 42988
diff changeset
   942
    prob (\<Inter>i\<in>UNIV. (bool_case A B i -` bool_case Xa Xb i \<inter> space M))"
40adeda9a8d2 introduce independence of two random variables
hoelzl
parents: 42988
diff changeset
   943
    by (auto intro!: arg_cong[where f=prob] simp: UNIV_bool)
40adeda9a8d2 introduce independence of two random variables
hoelzl
parents: 42988
diff changeset
   944
  also have "\<dots> = (\<Prod>i\<in>UNIV. prob (bool_case A B i -` bool_case Xa Xb i \<inter> space M))"
40adeda9a8d2 introduce independence of two random variables
hoelzl
parents: 42988
diff changeset
   945
    using indep unfolding indep_var_def
40adeda9a8d2 introduce independence of two random variables
hoelzl
parents: 42988
diff changeset
   946
    by (rule indep_varsD) (auto split: bool.split intro: sets)
40adeda9a8d2 introduce independence of two random variables
hoelzl
parents: 42988
diff changeset
   947
  also have "\<dots> = prob (A -` Xa \<inter> space M) * prob (B -` Xb \<inter> space M)"
40adeda9a8d2 introduce independence of two random variables
hoelzl
parents: 42988
diff changeset
   948
    unfolding UNIV_bool by simp
40adeda9a8d2 introduce independence of two random variables
hoelzl
parents: 42988
diff changeset
   949
  finally show ?thesis .
40adeda9a8d2 introduce independence of two random variables
hoelzl
parents: 42988
diff changeset
   950
qed
40adeda9a8d2 introduce independence of two random variables
hoelzl
parents: 42988
diff changeset
   951
43340
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42989
diff changeset
   952
lemma (in prob_space)
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42989
diff changeset
   953
  assumes "indep_var S X T Y"
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42989
diff changeset
   954
  shows indep_var_rv1: "random_variable S X"
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42989
diff changeset
   955
    and indep_var_rv2: "random_variable T Y"
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42989
diff changeset
   956
proof -
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42989
diff changeset
   957
  have "\<forall>i\<in>UNIV. random_variable (bool_case S T i) (bool_case X Y i)"
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42989
diff changeset
   958
    using assms unfolding indep_var_def indep_vars_def by auto
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42989
diff changeset
   959
  then show "random_variable S X" "random_variable T Y"
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42989
diff changeset
   960
    unfolding UNIV_bool by auto
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42989
diff changeset
   961
qed
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42989
diff changeset
   962
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   963
lemma measurable_bool_case[simp, intro]:
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   964
  "(\<lambda>(x, y). bool_case x y) \<in> measurable (M \<Otimes>\<^isub>M N) (Pi\<^isub>M UNIV (bool_case M N))"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   965
    (is "?f \<in> measurable ?B ?P")
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   966
proof (rule measurable_PiM_single)
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   967
  show "?f \<in> space ?B \<rightarrow> (\<Pi>\<^isub>E i\<in>UNIV. space (bool_case M N i))"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   968
    by (auto simp: space_pair_measure extensional_def split: bool.split)
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   969
  fix i A assume "A \<in> sets (case i of True \<Rightarrow> M | False \<Rightarrow> N)"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   970
  moreover then have "{\<omega> \<in> space (M \<Otimes>\<^isub>M N). prod_case bool_case \<omega> i \<in> A}
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   971
    = (case i of True \<Rightarrow> A \<times> space N | False \<Rightarrow> space M \<times> A)" 
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   972
    by (auto simp: space_pair_measure split: bool.split dest!: sets_into_space)
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   973
  ultimately show "{\<omega> \<in> space (M \<Otimes>\<^isub>M N). prod_case bool_case \<omega> i \<in> A} \<in> sets ?B"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   974
    by (auto split: bool.split)
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   975
qed
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   976
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   977
lemma borel_measurable_indicator':
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   978
  "A \<in> sets N \<Longrightarrow> f \<in> measurable M N \<Longrightarrow> (\<lambda>x. indicator A (f x)) \<in> borel_measurable M"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   979
  using measurable_comp[OF _ borel_measurable_indicator, of f M N A] by (auto simp add: comp_def)
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   980
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   981
lemma (in product_sigma_finite) distr_component:
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   982
  "distr (M i) (Pi\<^isub>M {i} M) (\<lambda>x. \<lambda>i\<in>{i}. x) = Pi\<^isub>M {i} M" (is "?D = ?P")
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   983
proof (intro measure_eqI[symmetric])
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   984
  interpret I: finite_product_sigma_finite M "{i}" by default simp
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   985
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   986
  have eq: "\<And>x. x \<in> extensional {i} \<Longrightarrow> (\<lambda>j\<in>{i}. x i) = x"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   987
    by (auto simp: extensional_def restrict_def)
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   988
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   989
  fix A assume A: "A \<in> sets ?P"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   990
  then have "emeasure ?P A = (\<integral>\<^isup>+x. indicator A x \<partial>?P)" 
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   991
    by simp
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   992
  also have "\<dots> = (\<integral>\<^isup>+x. indicator ((\<lambda>x. \<lambda>i\<in>{i}. x) -` A \<inter> space (M i)) x \<partial>M i)" 
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   993
    apply (subst product_positive_integral_singleton[symmetric])
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   994
    apply (force intro!: measurable_restrict measurable_sets A)
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   995
    apply (auto intro!: positive_integral_cong simp: space_PiM indicator_def simp: eq)
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   996
    done
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   997
  also have "\<dots> = emeasure (M i) ((\<lambda>x. \<lambda>i\<in>{i}. x) -` A \<inter> space (M i))"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   998
    by (force intro!: measurable_restrict measurable_sets A positive_integral_indicator)
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   999
  also have "\<dots> = emeasure ?D A"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1000
    using A by (auto intro!: emeasure_distr[symmetric] measurable_restrict) 
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1001
  finally show "emeasure (Pi\<^isub>M {i} M) A = emeasure ?D A" .
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1002
qed simp
43340
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42989
diff changeset
  1003
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1004
lemma pair_measure_eqI:
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1005
  assumes "sigma_finite_measure M1" "sigma_finite_measure M2"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1006
  assumes sets: "sets (M1 \<Otimes>\<^isub>M M2) = sets M"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1007
  assumes emeasure: "\<And>A B. A \<in> sets M1 \<Longrightarrow> B \<in> sets M2 \<Longrightarrow> emeasure M1 A * emeasure M2 B = emeasure M (A \<times> B)"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1008
  shows "M1 \<Otimes>\<^isub>M M2 = M"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1009
proof -
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1010
  interpret M1: sigma_finite_measure M1 by fact
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1011
  interpret M2: sigma_finite_measure M2 by fact
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1012
  interpret pair_sigma_finite M1 M2 by default
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1013
  from sigma_finite_up_in_pair_measure_generator guess F :: "nat \<Rightarrow> ('a \<times> 'b) set" .. note F = this
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1014
  let ?E = "{a \<times> b |a b. a \<in> sets M1 \<and> b \<in> sets M2}"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1015
  let ?P = "M1 \<Otimes>\<^isub>M M2"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1016
  show ?thesis
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1017
  proof (rule measure_eqI_generator_eq[OF Int_stable_pair_measure_generator[of M1 M2]])
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1018
    show "?E \<subseteq> Pow (space ?P)"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1019
      using space_closed[of M1] space_closed[of M2] by (auto simp: space_pair_measure)
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1020
    show "sets ?P = sigma_sets (space ?P) ?E"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1021
      by (simp add: sets_pair_measure space_pair_measure)
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1022
    then show "sets M = sigma_sets (space ?P) ?E"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1023
      using sets[symmetric] by simp
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1024
  next
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1025
    show "range F \<subseteq> ?E" "incseq F" "(\<Union>i. F i) = space ?P" "\<And>i. emeasure ?P (F i) \<noteq> \<infinity>"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1026
      using F by (auto simp: space_pair_measure)
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1027
  next
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1028
    fix X assume "X \<in> ?E"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1029
    then obtain A B where X[simp]: "X = A \<times> B" and A: "A \<in> sets M1" and B: "B \<in> sets M2" by auto
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1030
    then have "emeasure ?P X = emeasure M1 A * emeasure M2 B"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1031
       by (simp add: emeasure_pair_measure_Times)
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1032
    also have "\<dots> = emeasure M (A \<times> B)"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1033
      using A B emeasure by auto
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1034
    finally show "emeasure ?P X = emeasure M X"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1035
      by simp
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1036
  qed
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1037
qed
43340
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42989
diff changeset
  1038
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1039
lemma pair_measure_eq_distr_PiM:
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1040
  fixes M1 :: "'a measure" and M2 :: "'a measure"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1041
  assumes "sigma_finite_measure M1" "sigma_finite_measure M2"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1042
  shows "(M1 \<Otimes>\<^isub>M M2) = distr (Pi\<^isub>M UNIV (bool_case M1 M2)) (M1 \<Otimes>\<^isub>M M2) (\<lambda>x. (x True, x False))"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1043
    (is "?P = ?D")
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1044
proof (rule pair_measure_eqI[OF assms])
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1045
  interpret B: product_sigma_finite "bool_case M1 M2"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1046
    unfolding product_sigma_finite_def using assms by (auto split: bool.split)
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1047
  let ?B = "Pi\<^isub>M UNIV (bool_case M1 M2)"
43340
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42989
diff changeset
  1048
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1049
  have [simp]: "fst \<circ> (\<lambda>x. (x True, x False)) = (\<lambda>x. x True)" "snd \<circ> (\<lambda>x. (x True, x False)) = (\<lambda>x. x False)"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1050
    by auto
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1051
  fix A B assume A: "A \<in> sets M1" and B: "B \<in> sets M2"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1052
  have "emeasure M1 A * emeasure M2 B = (\<Prod> i\<in>UNIV. emeasure (bool_case M1 M2 i) (bool_case A B i))"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1053
    by (simp add: UNIV_bool ac_simps)
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1054
  also have "\<dots> = emeasure ?B (Pi\<^isub>E UNIV (bool_case A B))"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1055
    using A B by (subst B.emeasure_PiM) (auto split: bool.split)
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1056
  also have "Pi\<^isub>E UNIV (bool_case A B) = (\<lambda>x. (x True, x False)) -` (A \<times> B) \<inter> space ?B"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1057
    using A[THEN sets_into_space] B[THEN sets_into_space]
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1058
    by (auto simp: Pi_iff all_bool_eq space_PiM split: bool.split)
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1059
  finally show "emeasure M1 A * emeasure M2 B = emeasure ?D (A \<times> B)"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1060
    using A B
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1061
      measurable_component_singleton[of True UNIV "bool_case M1 M2"]
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1062
      measurable_component_singleton[of False UNIV "bool_case M1 M2"]
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1063
    by (subst emeasure_distr) (auto simp: measurable_pair_iff)
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1064
qed simp
43340
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42989
diff changeset
  1065
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1066
lemma measurable_Pair:
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1067
  assumes rvs: "X \<in> measurable M S" "Y \<in> measurable M T"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1068
  shows "(\<lambda>x. (X x, Y x)) \<in> measurable M (S \<Otimes>\<^isub>M T)"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1069
proof -
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1070
  have [simp]: "fst \<circ> (\<lambda>x. (X x, Y x)) = (\<lambda>x. X x)" "snd \<circ> (\<lambda>x. (X x, Y x)) = (\<lambda>x. Y x)"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1071
    by auto
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1072
  show " (\<lambda>x. (X x, Y x)) \<in> measurable M (S \<Otimes>\<^isub>M T)"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1073
    by (auto simp: measurable_pair_iff rvs)
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1074
qed
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1075
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1076
lemma (in prob_space) indep_var_distribution_eq:
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1077
  "indep_var S X T Y \<longleftrightarrow> random_variable S X \<and> random_variable T Y \<and>
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1078
    distr M S X \<Otimes>\<^isub>M distr M T Y = distr M (S \<Otimes>\<^isub>M T) (\<lambda>x. (X x, Y x))" (is "_ \<longleftrightarrow> _ \<and> _ \<and> ?S \<Otimes>\<^isub>M ?T = ?J")
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1079
proof safe
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1080
  assume "indep_var S X T Y"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1081
  then show rvs: "random_variable S X" "random_variable T Y"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1082
    by (blast dest: indep_var_rv1 indep_var_rv2)+
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1083
  then have XY: "random_variable (S \<Otimes>\<^isub>M T) (\<lambda>x. (X x, Y x))"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1084
    by (rule measurable_Pair)
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1085
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1086
  interpret X: prob_space ?S by (rule prob_space_distr) fact
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1087
  interpret Y: prob_space ?T by (rule prob_space_distr) fact
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1088
  interpret XY: pair_prob_space ?S ?T ..
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1089
  show "?S \<Otimes>\<^isub>M ?T = ?J"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1090
  proof (rule pair_measure_eqI)
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1091
    show "sigma_finite_measure ?S" ..
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1092
    show "sigma_finite_measure ?T" ..
43340
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42989
diff changeset
  1093
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1094
    fix A B assume A: "A \<in> sets ?S" and B: "B \<in> sets ?T"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1095
    have "emeasure ?J (A \<times> B) = emeasure M ((\<lambda>x. (X x, Y x)) -` (A \<times> B) \<inter> space M)"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1096
      using A B by (intro emeasure_distr[OF XY]) auto
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1097
    also have "\<dots> = emeasure M (X -` A \<inter> space M) * emeasure M (Y -` B \<inter> space M)"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1098
      using indep_varD[OF `indep_var S X T Y`, of A B] A B by (simp add: emeasure_eq_measure)
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1099
    also have "\<dots> = emeasure ?S A * emeasure ?T B"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1100
      using rvs A B by (simp add: emeasure_distr)
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1101
    finally show "emeasure ?S A * emeasure ?T B = emeasure ?J (A \<times> B)" by simp
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1102
  qed simp
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1103
next
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1104
  assume rvs: "random_variable S X" "random_variable T Y"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1105
  then have XY: "random_variable (S \<Otimes>\<^isub>M T) (\<lambda>x. (X x, Y x))"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1106
    by (rule measurable_Pair)
43340
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42989
diff changeset
  1107
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1108
  let ?S = "distr M S X" and ?T = "distr M T Y"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1109
  interpret X: prob_space ?S by (rule prob_space_distr) fact
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1110
  interpret Y: prob_space ?T by (rule prob_space_distr) fact
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1111
  interpret XY: pair_prob_space ?S ?T ..
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1112
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1113
  assume "?S \<Otimes>\<^isub>M ?T = ?J"
43340
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42989
diff changeset
  1114
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1115
  { fix S and X
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1116
    have "Int_stable {X -` A \<inter> space M |A. A \<in> sets S}"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1117
    proof (safe intro!: Int_stableI)
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1118
      fix A B assume "A \<in> sets S" "B \<in> sets S"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1119
      then show "\<exists>C. (X -` A \<inter> space M) \<inter> (X -` B \<inter> space M) = (X -` C \<inter> space M) \<and> C \<in> sets S"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1120
        by (intro exI[of _ "A \<inter> B"]) auto
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1121
    qed }
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1122
  note Int_stable = this
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1123
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1124
  show "indep_var S X T Y" unfolding indep_var_eq
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1125
  proof (intro conjI indep_set_sigma_sets Int_stable rvs)
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1126
    show "indep_set {X -` A \<inter> space M |A. A \<in> sets S} {Y -` A \<inter> space M |A. A \<in> sets T}"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1127
    proof (safe intro!: indep_setI)
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1128
      { fix A assume "A \<in> sets S" then show "X -` A \<inter> space M \<in> sets M"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1129
        using `X \<in> measurable M S` by (auto intro: measurable_sets) }
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1130
      { fix A assume "A \<in> sets T" then show "Y -` A \<inter> space M \<in> sets M"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1131
        using `Y \<in> measurable M T` by (auto intro: measurable_sets) }
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1132
    next
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1133
      fix A B assume ab: "A \<in> sets S" "B \<in> sets T"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1134
      then have "ereal (prob ((X -` A \<inter> space M) \<inter> (Y -` B \<inter> space M))) = emeasure ?J (A \<times> B)"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1135
        using XY by (auto simp add: emeasure_distr emeasure_eq_measure intro!: arg_cong[where f="prob"])
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1136
      also have "\<dots> = emeasure (?S \<Otimes>\<^isub>M ?T) (A \<times> B)"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1137
        unfolding `?S \<Otimes>\<^isub>M ?T = ?J` ..
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1138
      also have "\<dots> = emeasure ?S A * emeasure ?T B"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1139
        using ab by (simp add: XY.emeasure_pair_measure_Times)
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1140
      finally show "prob ((X -` A \<inter> space M) \<inter> (Y -` B \<inter> space M)) =
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1141
        prob (X -` A \<inter> space M) * prob (Y -` B \<inter> space M)"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1142
        using rvs ab by (simp add: emeasure_eq_measure emeasure_distr)
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1143
    qed
43340
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42989
diff changeset
  1144
  qed
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42989
diff changeset
  1145
qed
42989
40adeda9a8d2 introduce independence of two random variables
hoelzl
parents: 42988
diff changeset
  1146
42861
16375b493b64 Add formalization of probabilistic independence for families of sets
hoelzl
parents:
diff changeset
  1147
end