src/HOL/Probability/Information.thy
author hoelzl
Wed, 10 Oct 2012 12:12:18 +0200
changeset 49776 199d1d5bb17e
parent 47694 05663f75964c
child 49785 0a8adca22974
permissions -rw-r--r--
tuned product measurability
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
42067
66c8281349ec standardized headers
hoelzl
parents: 41981
diff changeset
     1
(*  Title:      HOL/Probability/Information.thy
66c8281349ec standardized headers
hoelzl
parents: 41981
diff changeset
     2
    Author:     Johannes Hölzl, TU München
66c8281349ec standardized headers
hoelzl
parents: 41981
diff changeset
     3
    Author:     Armin Heller, TU München
66c8281349ec standardized headers
hoelzl
parents: 41981
diff changeset
     4
*)
66c8281349ec standardized headers
hoelzl
parents: 41981
diff changeset
     5
66c8281349ec standardized headers
hoelzl
parents: 41981
diff changeset
     6
header {*Information theory*}
66c8281349ec standardized headers
hoelzl
parents: 41981
diff changeset
     7
36080
0d9affa4e73c Added Information theory and Example: dining cryptographers
hoelzl
parents:
diff changeset
     8
theory Information
41413
64cd30d6b0b8 explicit file specifications -- avoid secondary load path;
wenzelm
parents: 41095
diff changeset
     9
imports
43340
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
    10
  Independent_Family
43556
0d78c8d31d0d move conditional expectation to its own theory file
hoelzl
parents: 43340
diff changeset
    11
  Radon_Nikodym
41413
64cd30d6b0b8 explicit file specifications -- avoid secondary load path;
wenzelm
parents: 41095
diff changeset
    12
  "~~/src/HOL/Library/Convex"
36080
0d9affa4e73c Added Information theory and Example: dining cryptographers
hoelzl
parents:
diff changeset
    13
begin
0d9affa4e73c Added Information theory and Example: dining cryptographers
hoelzl
parents:
diff changeset
    14
39097
943c7b348524 Moved lemmas to appropriate locations
hoelzl
parents: 39092
diff changeset
    15
lemma log_le: "1 < a \<Longrightarrow> 0 < x \<Longrightarrow> x \<le> y \<Longrightarrow> log a x \<le> log a y"
943c7b348524 Moved lemmas to appropriate locations
hoelzl
parents: 39092
diff changeset
    16
  by (subst log_le_cancel_iff) auto
943c7b348524 Moved lemmas to appropriate locations
hoelzl
parents: 39092
diff changeset
    17
943c7b348524 Moved lemmas to appropriate locations
hoelzl
parents: 39092
diff changeset
    18
lemma log_less: "1 < a \<Longrightarrow> 0 < x \<Longrightarrow> x < y \<Longrightarrow> log a x < log a y"
943c7b348524 Moved lemmas to appropriate locations
hoelzl
parents: 39092
diff changeset
    19
  by (subst log_less_cancel_iff) auto
943c7b348524 Moved lemmas to appropriate locations
hoelzl
parents: 39092
diff changeset
    20
943c7b348524 Moved lemmas to appropriate locations
hoelzl
parents: 39092
diff changeset
    21
lemma setsum_cartesian_product':
943c7b348524 Moved lemmas to appropriate locations
hoelzl
parents: 39092
diff changeset
    22
  "(\<Sum>x\<in>A \<times> B. f x) = (\<Sum>x\<in>A. setsum (\<lambda>y. f (x, y)) B)"
943c7b348524 Moved lemmas to appropriate locations
hoelzl
parents: 39092
diff changeset
    23
  unfolding setsum_cartesian_product by simp
943c7b348524 Moved lemmas to appropriate locations
hoelzl
parents: 39092
diff changeset
    24
36624
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
    25
section "Convex theory"
36080
0d9affa4e73c Added Information theory and Example: dining cryptographers
hoelzl
parents:
diff changeset
    26
36624
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
    27
lemma log_setsum:
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
    28
  assumes "finite s" "s \<noteq> {}"
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
    29
  assumes "b > 1"
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
    30
  assumes "(\<Sum> i \<in> s. a i) = 1"
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
    31
  assumes "\<And> i. i \<in> s \<Longrightarrow> a i \<ge> 0"
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
    32
  assumes "\<And> i. i \<in> s \<Longrightarrow> y i \<in> {0 <..}"
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
    33
  shows "log b (\<Sum> i \<in> s. a i * y i) \<ge> (\<Sum> i \<in> s. a i * log b (y i))"
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
    34
proof -
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
    35
  have "convex_on {0 <..} (\<lambda> x. - log b x)"
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
    36
    by (rule minus_log_convex[OF `b > 1`])
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
    37
  hence "- log b (\<Sum> i \<in> s. a i * y i) \<le> (\<Sum> i \<in> s. a i * - log b (y i))"
44890
22f665a2e91c new fastforce replacing fastsimp - less confusing name
nipkow
parents: 43920
diff changeset
    38
    using convex_on_setsum[of _ _ "\<lambda> x. - log b x"] assms pos_is_convex by fastforce
36624
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
    39
  thus ?thesis by (auto simp add:setsum_negf le_imp_neg_le)
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
    40
qed
36080
0d9affa4e73c Added Information theory and Example: dining cryptographers
hoelzl
parents:
diff changeset
    41
36624
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
    42
lemma log_setsum':
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
    43
  assumes "finite s" "s \<noteq> {}"
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
    44
  assumes "b > 1"
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
    45
  assumes "(\<Sum> i \<in> s. a i) = 1"
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
    46
  assumes pos: "\<And> i. i \<in> s \<Longrightarrow> 0 \<le> a i"
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
    47
          "\<And> i. \<lbrakk> i \<in> s ; 0 < a i \<rbrakk> \<Longrightarrow> 0 < y i"
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
    48
  shows "log b (\<Sum> i \<in> s. a i * y i) \<ge> (\<Sum> i \<in> s. a i * log b (y i))"
36080
0d9affa4e73c Added Information theory and Example: dining cryptographers
hoelzl
parents:
diff changeset
    49
proof -
36624
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
    50
  have "\<And>y. (\<Sum> i \<in> s - {i. a i = 0}. a i * y i) = (\<Sum> i \<in> s. a i * y i)"
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
    51
    using assms by (auto intro!: setsum_mono_zero_cong_left)
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
    52
  moreover have "log b (\<Sum> i \<in> s - {i. a i = 0}. a i * y i) \<ge> (\<Sum> i \<in> s - {i. a i = 0}. a i * log b (y i))"
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
    53
  proof (rule log_setsum)
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
    54
    have "setsum a (s - {i. a i = 0}) = setsum a s"
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
    55
      using assms(1) by (rule setsum_mono_zero_cong_left) auto
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
    56
    thus sum_1: "setsum a (s - {i. a i = 0}) = 1"
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
    57
      "finite (s - {i. a i = 0})" using assms by simp_all
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
    58
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
    59
    show "s - {i. a i = 0} \<noteq> {}"
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
    60
    proof
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
    61
      assume *: "s - {i. a i = 0} = {}"
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
    62
      hence "setsum a (s - {i. a i = 0}) = 0" by (simp add: * setsum_empty)
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
    63
      with sum_1 show False by simp
38656
d5d342611edb Rewrite the Probability theory.
hoelzl
parents: 36649
diff changeset
    64
    qed
36624
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
    65
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
    66
    fix i assume "i \<in> s - {i. a i = 0}"
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
    67
    hence "i \<in> s" "a i \<noteq> 0" by simp_all
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
    68
    thus "0 \<le> a i" "y i \<in> {0<..}" using pos[of i] by auto
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
    69
  qed fact+
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
    70
  ultimately show ?thesis by simp
36080
0d9affa4e73c Added Information theory and Example: dining cryptographers
hoelzl
parents:
diff changeset
    71
qed
0d9affa4e73c Added Information theory and Example: dining cryptographers
hoelzl
parents:
diff changeset
    72
36624
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
    73
lemma log_setsum_divide:
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
    74
  assumes "finite S" and "S \<noteq> {}" and "1 < b"
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
    75
  assumes "(\<Sum>x\<in>S. g x) = 1"
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
    76
  assumes pos: "\<And>x. x \<in> S \<Longrightarrow> g x \<ge> 0" "\<And>x. x \<in> S \<Longrightarrow> f x \<ge> 0"
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
    77
  assumes g_pos: "\<And>x. \<lbrakk> x \<in> S ; 0 < g x \<rbrakk> \<Longrightarrow> 0 < f x"
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
    78
  shows "- (\<Sum>x\<in>S. g x * log b (g x / f x)) \<le> log b (\<Sum>x\<in>S. f x)"
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
    79
proof -
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
    80
  have log_mono: "\<And>x y. 0 < x \<Longrightarrow> x \<le> y \<Longrightarrow> log b x \<le> log b y"
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
    81
    using `1 < b` by (subst log_le_cancel_iff) auto
36080
0d9affa4e73c Added Information theory and Example: dining cryptographers
hoelzl
parents:
diff changeset
    82
36624
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
    83
  have "- (\<Sum>x\<in>S. g x * log b (g x / f x)) = (\<Sum>x\<in>S. g x * log b (f x / g x))"
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
    84
  proof (unfold setsum_negf[symmetric], rule setsum_cong)
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
    85
    fix x assume x: "x \<in> S"
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
    86
    show "- (g x * log b (g x / f x)) = g x * log b (f x / g x)"
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
    87
    proof (cases "g x = 0")
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
    88
      case False
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
    89
      with pos[OF x] g_pos[OF x] have "0 < f x" "0 < g x" by simp_all
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
    90
      thus ?thesis using `1 < b` by (simp add: log_divide field_simps)
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
    91
    qed simp
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
    92
  qed rule
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
    93
  also have "... \<le> log b (\<Sum>x\<in>S. g x * (f x / g x))"
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
    94
  proof (rule log_setsum')
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
    95
    fix x assume x: "x \<in> S" "0 < g x"
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
    96
    with g_pos[OF x] show "0 < f x / g x" by (safe intro!: divide_pos_pos)
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
    97
  qed fact+
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
    98
  also have "... = log b (\<Sum>x\<in>S - {x. g x = 0}. f x)" using `finite S`
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
    99
    by (auto intro!: setsum_mono_zero_cong_right arg_cong[where f="log b"]
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
   100
        split: split_if_asm)
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
   101
  also have "... \<le> log b (\<Sum>x\<in>S. f x)"
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
   102
  proof (rule log_mono)
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
   103
    have "0 = (\<Sum>x\<in>S - {x. g x = 0}. 0)" by simp
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
   104
    also have "... < (\<Sum>x\<in>S - {x. g x = 0}. f x)" (is "_ < ?sum")
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
   105
    proof (rule setsum_strict_mono)
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
   106
      show "finite (S - {x. g x = 0})" using `finite S` by simp
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
   107
      show "S - {x. g x = 0} \<noteq> {}"
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
   108
      proof
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
   109
        assume "S - {x. g x = 0} = {}"
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
   110
        hence "(\<Sum>x\<in>S. g x) = 0" by (subst setsum_0') auto
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
   111
        with `(\<Sum>x\<in>S. g x) = 1` show False by simp
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
   112
      qed
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
   113
      fix x assume "x \<in> S - {x. g x = 0}"
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
   114
      thus "0 < f x" using g_pos[of x] pos(1)[of x] by auto
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
   115
    qed
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
   116
    finally show "0 < ?sum" .
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
   117
    show "(\<Sum>x\<in>S - {x. g x = 0}. f x) \<le> (\<Sum>x\<in>S. f x)"
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
   118
      using `finite S` pos by (auto intro!: setsum_mono2)
36080
0d9affa4e73c Added Information theory and Example: dining cryptographers
hoelzl
parents:
diff changeset
   119
  qed
36624
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
   120
  finally show ?thesis .
36080
0d9affa4e73c Added Information theory and Example: dining cryptographers
hoelzl
parents:
diff changeset
   121
qed
0d9affa4e73c Added Information theory and Example: dining cryptographers
hoelzl
parents:
diff changeset
   122
39097
943c7b348524 Moved lemmas to appropriate locations
hoelzl
parents: 39092
diff changeset
   123
lemma split_pairs:
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
   124
  "((A, B) = X) \<longleftrightarrow> (fst X = A \<and> snd X = B)" and
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
   125
  "(X = (A, B)) \<longleftrightarrow> (fst X = A \<and> snd X = B)" by auto
38656
d5d342611edb Rewrite the Probability theory.
hoelzl
parents: 36649
diff changeset
   126
d5d342611edb Rewrite the Probability theory.
hoelzl
parents: 36649
diff changeset
   127
section "Information theory"
d5d342611edb Rewrite the Probability theory.
hoelzl
parents: 36649
diff changeset
   128
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
   129
locale information_space = prob_space +
38656
d5d342611edb Rewrite the Probability theory.
hoelzl
parents: 36649
diff changeset
   130
  fixes b :: real assumes b_gt_1: "1 < b"
d5d342611edb Rewrite the Probability theory.
hoelzl
parents: 36649
diff changeset
   131
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
   132
context information_space
38656
d5d342611edb Rewrite the Probability theory.
hoelzl
parents: 36649
diff changeset
   133
begin
d5d342611edb Rewrite the Probability theory.
hoelzl
parents: 36649
diff changeset
   134
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
   135
text {* Introduce some simplification rules for logarithm of base @{term b}. *}
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
   136
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
   137
lemma log_neg_const:
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
   138
  assumes "x \<le> 0"
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
   139
  shows "log b x = log b 0"
36624
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
   140
proof -
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
   141
  { fix u :: real
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
   142
    have "x \<le> 0" by fact
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
   143
    also have "0 < exp u"
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
   144
      using exp_gt_zero .
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
   145
    finally have "exp u \<noteq> x"
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
   146
      by auto }
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
   147
  then show "log b x = log b 0"
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
   148
    by (simp add: log_def ln_def)
38656
d5d342611edb Rewrite the Probability theory.
hoelzl
parents: 36649
diff changeset
   149
qed
d5d342611edb Rewrite the Probability theory.
hoelzl
parents: 36649
diff changeset
   150
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
   151
lemma log_mult_eq:
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
   152
  "log b (A * B) = (if 0 < A * B then log b \<bar>A\<bar> + log b \<bar>B\<bar> else log b 0)"
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
   153
  using log_mult[of b "\<bar>A\<bar>" "\<bar>B\<bar>"] b_gt_1 log_neg_const[of "A * B"]
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
   154
  by (auto simp: zero_less_mult_iff mult_le_0_iff)
38656
d5d342611edb Rewrite the Probability theory.
hoelzl
parents: 36649
diff changeset
   155
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
   156
lemma log_inverse_eq:
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
   157
  "log b (inverse B) = (if 0 < B then - log b B else log b 0)"
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
   158
  using log_inverse[of b B] log_neg_const[of "inverse B"] b_gt_1 by simp
36080
0d9affa4e73c Added Information theory and Example: dining cryptographers
hoelzl
parents:
diff changeset
   159
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
   160
lemma log_divide_eq:
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
   161
  "log b (A / B) = (if 0 < A * B then log b \<bar>A\<bar> - log b \<bar>B\<bar> else log b 0)"
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
   162
  unfolding divide_inverse log_mult_eq log_inverse_eq abs_inverse
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
   163
  by (auto simp: zero_less_mult_iff mult_le_0_iff)
38656
d5d342611edb Rewrite the Probability theory.
hoelzl
parents: 36649
diff changeset
   164
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
   165
lemmas log_simps = log_mult_eq log_inverse_eq log_divide_eq
38656
d5d342611edb Rewrite the Probability theory.
hoelzl
parents: 36649
diff changeset
   166
d5d342611edb Rewrite the Probability theory.
hoelzl
parents: 36649
diff changeset
   167
end
d5d342611edb Rewrite the Probability theory.
hoelzl
parents: 36649
diff changeset
   168
39097
943c7b348524 Moved lemmas to appropriate locations
hoelzl
parents: 39092
diff changeset
   169
subsection "Kullback$-$Leibler divergence"
36080
0d9affa4e73c Added Information theory and Example: dining cryptographers
hoelzl
parents:
diff changeset
   170
39097
943c7b348524 Moved lemmas to appropriate locations
hoelzl
parents: 39092
diff changeset
   171
text {* The Kullback$-$Leibler divergence is also known as relative entropy or
943c7b348524 Moved lemmas to appropriate locations
hoelzl
parents: 39092
diff changeset
   172
Kullback$-$Leibler distance. *}
943c7b348524 Moved lemmas to appropriate locations
hoelzl
parents: 39092
diff changeset
   173
943c7b348524 Moved lemmas to appropriate locations
hoelzl
parents: 39092
diff changeset
   174
definition
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   175
  "entropy_density b M N = log b \<circ> real \<circ> RN_deriv M N"
43340
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   176
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   177
definition
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   178
  "KL_divergence b M N = integral\<^isup>L N (entropy_density b M N)"
43340
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   179
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   180
lemma (in information_space) measurable_entropy_density:
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   181
  assumes ac: "absolutely_continuous M N" "sets N = events"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   182
  shows "entropy_density b M N \<in> borel_measurable M"
43340
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   183
proof -
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   184
  from borel_measurable_RN_deriv[OF ac] b_gt_1 show ?thesis
43340
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   185
    unfolding entropy_density_def
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   186
    by (intro measurable_comp) auto
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   187
qed
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   188
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   189
lemma (in sigma_finite_measure) KL_density:
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   190
  fixes f :: "'a \<Rightarrow> real"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   191
  assumes "1 < b"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   192
  assumes f: "f \<in> borel_measurable M" "AE x in M. 0 \<le> f x"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   193
  shows "KL_divergence b M (density M f) = (\<integral>x. f x * log b (f x) \<partial>M)"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   194
  unfolding KL_divergence_def
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   195
proof (subst integral_density)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   196
  show "entropy_density b M (density M (\<lambda>x. ereal (f x))) \<in> borel_measurable M"
49776
199d1d5bb17e tuned product measurability
hoelzl
parents: 47694
diff changeset
   197
    using f
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   198
    by (auto simp: comp_def entropy_density_def intro!: borel_measurable_log borel_measurable_RN_deriv_density)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   199
  have "density M (RN_deriv M (density M f)) = density M f"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   200
    using f by (intro density_RN_deriv_density) auto
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   201
  then have eq: "AE x in M. RN_deriv M (density M f) x = f x"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   202
    using f
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   203
    by (intro density_unique)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   204
       (auto intro!: borel_measurable_log borel_measurable_RN_deriv_density simp: RN_deriv_density_nonneg)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   205
  show "(\<integral>x. f x * entropy_density b M (density M (\<lambda>x. ereal (f x))) x \<partial>M) = (\<integral>x. f x * log b (f x) \<partial>M)"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   206
    apply (intro integral_cong_AE)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   207
    using eq
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   208
    apply eventually_elim
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   209
    apply (auto simp: entropy_density_def)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   210
    done
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   211
qed fact+
43340
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   212
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   213
lemma (in sigma_finite_measure) KL_density_density:
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   214
  fixes f g :: "'a \<Rightarrow> real"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   215
  assumes "1 < b"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   216
  assumes f: "f \<in> borel_measurable M" "AE x in M. 0 \<le> f x"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   217
  assumes g: "g \<in> borel_measurable M" "AE x in M. 0 \<le> g x"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   218
  assumes ac: "AE x in M. f x = 0 \<longrightarrow> g x = 0"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   219
  shows "KL_divergence b (density M f) (density M g) = (\<integral>x. g x * log b (g x / f x) \<partial>M)"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   220
proof -
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   221
  interpret Mf: sigma_finite_measure "density M f"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   222
    using f by (subst sigma_finite_iff_density_finite) auto
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   223
  have "KL_divergence b (density M f) (density M g) =
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   224
    KL_divergence b (density M f) (density (density M f) (\<lambda>x. g x / f x))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   225
    using f g ac by (subst density_density_divide) simp_all
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   226
  also have "\<dots> = (\<integral>x. (g x / f x) * log b (g x / f x) \<partial>density M f)"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   227
    using f g `1 < b` by (intro Mf.KL_density) (auto simp: AE_density divide_nonneg_nonneg)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   228
  also have "\<dots> = (\<integral>x. g x * log b (g x / f x) \<partial>M)"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   229
    using ac f g `1 < b` by (subst integral_density) (auto intro!: integral_cong_AE)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   230
  finally show ?thesis .
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   231
qed
43340
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   232
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   233
lemma (in information_space) KL_gt_0:
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   234
  fixes D :: "'a \<Rightarrow> real"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   235
  assumes "prob_space (density M D)"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   236
  assumes D: "D \<in> borel_measurable M" "AE x in M. 0 \<le> D x"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   237
  assumes int: "integrable M (\<lambda>x. D x * log b (D x))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   238
  assumes A: "density M D \<noteq> M"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   239
  shows "0 < KL_divergence b M (density M D)"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   240
proof -
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   241
  interpret N: prob_space "density M D" by fact
43340
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   242
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   243
  obtain A where "A \<in> sets M" "emeasure (density M D) A \<noteq> emeasure M A"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   244
    using measure_eqI[of "density M D" M] `density M D \<noteq> M` by auto
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   245
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   246
  let ?D_set = "{x\<in>space M. D x \<noteq> 0}"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   247
  have [simp, intro]: "?D_set \<in> sets M"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   248
    using D by auto
43340
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   249
43920
cedb5cb948fd Rename extreal => ereal
hoelzl
parents: 43556
diff changeset
   250
  have D_neg: "(\<integral>\<^isup>+ x. ereal (- D x) \<partial>M) = 0"
43340
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   251
    using D by (subst positive_integral_0_iff_AE) auto
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   252
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   253
  have "(\<integral>\<^isup>+ x. ereal (D x) \<partial>M) = emeasure (density M D) (space M)"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   254
    using D by (simp add: emeasure_density cong: positive_integral_cong)
43920
cedb5cb948fd Rename extreal => ereal
hoelzl
parents: 43556
diff changeset
   255
  then have D_pos: "(\<integral>\<^isup>+ x. ereal (D x) \<partial>M) = 1"
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   256
    using N.emeasure_space_1 by simp
43340
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   257
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   258
  have "integrable M D" "integral\<^isup>L M D = 1"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   259
    using D D_pos D_neg unfolding integrable_def lebesgue_integral_def by simp_all
43340
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   260
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   261
  have "0 \<le> 1 - measure M ?D_set"
43340
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   262
    using prob_le_1 by (auto simp: field_simps)
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   263
  also have "\<dots> = (\<integral> x. D x - indicator ?D_set x \<partial>M)"
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   264
    using `integrable M D` `integral\<^isup>L M D = 1`
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   265
    by (simp add: emeasure_eq_measure)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   266
  also have "\<dots> < (\<integral> x. D x * (ln b * log b (D x)) \<partial>M)"
43340
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   267
  proof (rule integral_less_AE)
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   268
    show "integrable M (\<lambda>x. D x - indicator ?D_set x)"
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   269
      using `integrable M D`
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   270
      by (intro integral_diff integral_indicator) auto
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   271
  next
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   272
    from integral_cmult(1)[OF int, of "ln b"]
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   273
    show "integrable M (\<lambda>x. D x * (ln b * log b (D x)))" 
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   274
      by (simp add: ac_simps)
43340
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   275
  next
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   276
    show "emeasure M {x\<in>space M. D x \<noteq> 1 \<and> D x \<noteq> 0} \<noteq> 0"
43340
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   277
    proof
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   278
      assume eq_0: "emeasure M {x\<in>space M. D x \<noteq> 1 \<and> D x \<noteq> 0} = 0"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   279
      then have disj: "AE x in M. D x = 1 \<or> D x = 0"
43340
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   280
        using D(1) by (auto intro!: AE_I[OF subset_refl] sets_Collect)
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   281
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   282
      have "emeasure M {x\<in>space M. D x = 1} = (\<integral>\<^isup>+ x. indicator {x\<in>space M. D x = 1} x \<partial>M)"
43340
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   283
        using D(1) by auto
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   284
      also have "\<dots> = (\<integral>\<^isup>+ x. ereal (D x) \<partial>M)"
43920
cedb5cb948fd Rename extreal => ereal
hoelzl
parents: 43556
diff changeset
   285
        using disj by (auto intro!: positive_integral_cong_AE simp: indicator_def one_ereal_def)
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   286
      finally have "AE x in M. D x = 1"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   287
        using D D_pos by (intro AE_I_eq_1) auto
43920
cedb5cb948fd Rename extreal => ereal
hoelzl
parents: 43556
diff changeset
   288
      then have "(\<integral>\<^isup>+x. indicator A x\<partial>M) = (\<integral>\<^isup>+x. ereal (D x) * indicator A x\<partial>M)"
cedb5cb948fd Rename extreal => ereal
hoelzl
parents: 43556
diff changeset
   289
        by (intro positive_integral_cong_AE) (auto simp: one_ereal_def[symmetric])
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   290
      also have "\<dots> = density M D A"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   291
        using `A \<in> sets M` D by (simp add: emeasure_density)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   292
      finally show False using `A \<in> sets M` `emeasure (density M D) A \<noteq> emeasure M A` by simp
43340
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   293
    qed
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   294
    show "{x\<in>space M. D x \<noteq> 1 \<and> D x \<noteq> 0} \<in> sets M"
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   295
      using D(1) by (auto intro: sets_Collect_conj)
43340
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   296
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   297
    show "AE t in M. t \<in> {x\<in>space M. D x \<noteq> 1 \<and> D x \<noteq> 0} \<longrightarrow>
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   298
      D t - indicator ?D_set t \<noteq> D t * (ln b * log b (D t))"
43340
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   299
      using D(2)
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   300
    proof (eventually_elim, safe)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   301
      fix t assume Dt: "t \<in> space M" "D t \<noteq> 1" "D t \<noteq> 0" "0 \<le> D t"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   302
        and eq: "D t - indicator ?D_set t = D t * (ln b * log b (D t))"
43340
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   303
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   304
      have "D t - 1 = D t - indicator ?D_set t"
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   305
        using Dt by simp
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   306
      also note eq
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   307
      also have "D t * (ln b * log b (D t)) = - D t * ln (1 / D t)"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   308
        using b_gt_1 `D t \<noteq> 0` `0 \<le> D t`
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   309
        by (simp add: log_def ln_div less_le)
43340
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   310
      finally have "ln (1 / D t) = 1 / D t - 1"
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   311
        using `D t \<noteq> 0` by (auto simp: field_simps)
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   312
      from ln_eq_minus_one[OF _ this] `D t \<noteq> 0` `0 \<le> D t` `D t \<noteq> 1`
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   313
      show False by auto
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   314
    qed
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   315
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   316
    show "AE t in M. D t - indicator ?D_set t \<le> D t * (ln b * log b (D t))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   317
      using D(2) AE_space
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   318
    proof eventually_elim
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   319
      fix t assume "t \<in> space M" "0 \<le> D t"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   320
      show "D t - indicator ?D_set t \<le> D t * (ln b * log b (D t))"
43340
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   321
      proof cases
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   322
        assume asm: "D t \<noteq> 0"
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   323
        then have "0 < D t" using `0 \<le> D t` by auto
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   324
        then have "0 < 1 / D t" by auto
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   325
        have "D t - indicator ?D_set t \<le> - D t * (1 / D t - 1)"
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   326
          using asm `t \<in> space M` by (simp add: field_simps)
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   327
        also have "- D t * (1 / D t - 1) \<le> - D t * ln (1 / D t)"
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   328
          using ln_le_minus_one `0 < 1 / D t` by (intro mult_left_mono_neg) auto
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   329
        also have "\<dots> = D t * (ln b * log b (D t))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   330
          using `0 < D t` b_gt_1
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   331
          by (simp_all add: log_def ln_div)
43340
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   332
        finally show ?thesis by simp
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   333
      qed simp
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   334
    qed
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   335
  qed
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   336
  also have "\<dots> = (\<integral> x. ln b * (D x * log b (D x)) \<partial>M)"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   337
    by (simp add: ac_simps)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   338
  also have "\<dots> = ln b * (\<integral> x. D x * log b (D x) \<partial>M)"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   339
    using int by (rule integral_cmult)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   340
  finally show ?thesis
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   341
    using b_gt_1 D by (subst KL_density) (auto simp: zero_less_mult_iff)
43340
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   342
qed
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   343
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   344
lemma (in sigma_finite_measure) KL_same_eq_0: "KL_divergence b M M = 0"
43340
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   345
proof -
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   346
  have "AE x in M. 1 = RN_deriv M M x"
43340
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   347
  proof (rule RN_deriv_unique)
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   348
    show "(\<lambda>x. 1) \<in> borel_measurable M" "AE x in M. 0 \<le> (1 :: ereal)" by auto
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   349
    show "density M (\<lambda>x. 1) = M"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   350
      apply (auto intro!: measure_eqI emeasure_density)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   351
      apply (subst emeasure_density)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   352
      apply auto
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   353
      done
43340
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   354
  qed
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   355
  then have "AE x in M. log b (real (RN_deriv M M x)) = 0"
43340
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   356
    by (elim AE_mp) simp
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   357
  from integral_cong_AE[OF this]
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   358
  have "integral\<^isup>L M (entropy_density b M M) = 0"
43340
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   359
    by (simp add: entropy_density_def comp_def)
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   360
  then show "KL_divergence b M M = 0"
43340
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   361
    unfolding KL_divergence_def
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   362
    by auto
43340
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   363
qed
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   364
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   365
lemma (in information_space) KL_eq_0_iff_eq:
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   366
  fixes D :: "'a \<Rightarrow> real"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   367
  assumes "prob_space (density M D)"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   368
  assumes D: "D \<in> borel_measurable M" "AE x in M. 0 \<le> D x"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   369
  assumes int: "integrable M (\<lambda>x. D x * log b (D x))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   370
  shows "KL_divergence b M (density M D) = 0 \<longleftrightarrow> density M D = M"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   371
  using KL_same_eq_0[of b] KL_gt_0[OF assms]
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   372
  by (auto simp: less_le)
43340
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   373
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   374
lemma (in information_space) KL_eq_0_iff_eq_ac:
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   375
  fixes D :: "'a \<Rightarrow> real"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   376
  assumes "prob_space N"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   377
  assumes ac: "absolutely_continuous M N" "sets N = sets M"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   378
  assumes int: "integrable N (entropy_density b M N)"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   379
  shows "KL_divergence b M N = 0 \<longleftrightarrow> N = M"
41833
563bea92b2c0 add lemma KL_divergence_vimage, mutual_information_generic
hoelzl
parents: 41689
diff changeset
   380
proof -
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   381
  interpret N: prob_space N by fact
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   382
  have "finite_measure N" by unfold_locales
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   383
  from real_RN_deriv[OF this ac] guess D . note D = this
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   384
  
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   385
  have "N = density M (RN_deriv M N)"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   386
    using ac by (rule density_RN_deriv[symmetric])
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   387
  also have "\<dots> = density M D"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   388
    using borel_measurable_RN_deriv[OF ac] D by (auto intro!: density_cong)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   389
  finally have N: "N = density M D" .
41833
563bea92b2c0 add lemma KL_divergence_vimage, mutual_information_generic
hoelzl
parents: 41689
diff changeset
   390
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   391
  from absolutely_continuous_AE[OF ac(2,1) D(2)] D b_gt_1 ac measurable_entropy_density
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   392
  have "integrable N (\<lambda>x. log b (D x))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   393
    by (intro integrable_cong_AE[THEN iffD2, OF _ _ _ int])
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   394
       (auto simp: N entropy_density_def)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   395
  with D b_gt_1 have "integrable M (\<lambda>x. D x * log b (D x))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   396
    by (subst integral_density(2)[symmetric]) (auto simp: N[symmetric] comp_def)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   397
  with `prob_space N` D show ?thesis
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   398
    unfolding N
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   399
    by (intro KL_eq_0_iff_eq) auto
41833
563bea92b2c0 add lemma KL_divergence_vimage, mutual_information_generic
hoelzl
parents: 41689
diff changeset
   400
qed
563bea92b2c0 add lemma KL_divergence_vimage, mutual_information_generic
hoelzl
parents: 41689
diff changeset
   401
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   402
lemma (in information_space) KL_nonneg:
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   403
  assumes "prob_space (density M D)"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   404
  assumes D: "D \<in> borel_measurable M" "AE x in M. 0 \<le> D x"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   405
  assumes int: "integrable M (\<lambda>x. D x * log b (D x))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   406
  shows "0 \<le> KL_divergence b M (density M D)"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   407
  using KL_gt_0[OF assms] by (cases "density M D = M") (auto simp: KL_same_eq_0)
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
   408
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   409
lemma (in sigma_finite_measure) KL_density_density_nonneg:
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   410
  fixes f g :: "'a \<Rightarrow> real"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   411
  assumes "1 < b"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   412
  assumes f: "f \<in> borel_measurable M" "AE x in M. 0 \<le> f x" "prob_space (density M f)"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   413
  assumes g: "g \<in> borel_measurable M" "AE x in M. 0 \<le> g x" "prob_space (density M g)"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   414
  assumes ac: "AE x in M. f x = 0 \<longrightarrow> g x = 0"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   415
  assumes int: "integrable M (\<lambda>x. g x * log b (g x / f x))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   416
  shows "0 \<le> KL_divergence b (density M f) (density M g)"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   417
proof -
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   418
  interpret Mf: prob_space "density M f" by fact
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   419
  interpret Mf: information_space "density M f" b by default fact
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   420
  have eq: "density (density M f) (\<lambda>x. g x / f x) = density M g" (is "?DD = _")
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   421
    using f g ac by (subst density_density_divide) simp_all
36080
0d9affa4e73c Added Information theory and Example: dining cryptographers
hoelzl
parents:
diff changeset
   422
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   423
  have "0 \<le> KL_divergence b (density M f) (density (density M f) (\<lambda>x. g x / f x))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   424
  proof (rule Mf.KL_nonneg)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   425
    show "prob_space ?DD" unfolding eq by fact
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   426
    from f g show "(\<lambda>x. g x / f x) \<in> borel_measurable (density M f)"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   427
      by auto
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   428
    show "AE x in density M f. 0 \<le> g x / f x"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   429
      using f g by (auto simp: AE_density divide_nonneg_nonneg)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   430
    show "integrable (density M f) (\<lambda>x. g x / f x * log b (g x / f x))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   431
      using `1 < b` f g ac
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   432
      by (subst integral_density)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   433
         (auto intro!: integrable_cong_AE[THEN iffD2, OF _ _ _ int] measurable_If)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   434
  qed
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   435
  also have "\<dots> = KL_divergence b (density M f) (density M g)"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   436
    using f g ac by (subst density_density_divide) simp_all
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   437
  finally show ?thesis .
36080
0d9affa4e73c Added Information theory and Example: dining cryptographers
hoelzl
parents:
diff changeset
   438
qed
0d9affa4e73c Added Information theory and Example: dining cryptographers
hoelzl
parents:
diff changeset
   439
39097
943c7b348524 Moved lemmas to appropriate locations
hoelzl
parents: 39092
diff changeset
   440
subsection {* Mutual Information *}
943c7b348524 Moved lemmas to appropriate locations
hoelzl
parents: 39092
diff changeset
   441
36080
0d9affa4e73c Added Information theory and Example: dining cryptographers
hoelzl
parents:
diff changeset
   442
definition (in prob_space)
38656
d5d342611edb Rewrite the Probability theory.
hoelzl
parents: 36649
diff changeset
   443
  "mutual_information b S T X Y =
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   444
    KL_divergence b (distr M S X \<Otimes>\<^isub>M distr M T Y) (distr M (S \<Otimes>\<^isub>M T) (\<lambda>x. (X x, Y x)))"
36080
0d9affa4e73c Added Information theory and Example: dining cryptographers
hoelzl
parents:
diff changeset
   445
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   446
lemma (in information_space) mutual_information_indep_vars:
43340
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   447
  fixes S T X Y
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   448
  defines "P \<equiv> distr M S X \<Otimes>\<^isub>M distr M T Y"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   449
  defines "Q \<equiv> distr M (S \<Otimes>\<^isub>M T) (\<lambda>x. (X x, Y x))"
43340
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   450
  shows "indep_var S X T Y \<longleftrightarrow>
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   451
    (random_variable S X \<and> random_variable T Y \<and>
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   452
      absolutely_continuous P Q \<and> integrable Q (entropy_density b P Q) \<and>
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   453
      mutual_information b S T X Y = 0)"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   454
  unfolding indep_var_distribution_eq
43340
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   455
proof safe
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   456
  assume rv: "random_variable S X" "random_variable T Y"
43340
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   457
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   458
  interpret X: prob_space "distr M S X"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   459
    by (rule prob_space_distr) fact
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   460
  interpret Y: prob_space "distr M T Y"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   461
    by (rule prob_space_distr) fact
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   462
  interpret XY: pair_prob_space "distr M S X" "distr M T Y" by default
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   463
  interpret P: information_space P b unfolding P_def by default (rule b_gt_1)
43340
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   464
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   465
  interpret Q: prob_space Q unfolding Q_def
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   466
    by (rule prob_space_distr) (simp add: comp_def measurable_pair_iff rv)
43340
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   467
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   468
  { assume "distr M S X \<Otimes>\<^isub>M distr M T Y = distr M (S \<Otimes>\<^isub>M T) (\<lambda>x. (X x, Y x))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   469
    then have [simp]: "Q = P"  unfolding Q_def P_def by simp
43340
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   470
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   471
    show ac: "absolutely_continuous P Q" by (simp add: absolutely_continuous_def)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   472
    then have ed: "entropy_density b P Q \<in> borel_measurable P"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   473
      by (rule P.measurable_entropy_density) simp
43340
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   474
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   475
    have "AE x in P. 1 = RN_deriv P Q x"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   476
    proof (rule P.RN_deriv_unique)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   477
      show "density P (\<lambda>x. 1) = Q"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   478
        unfolding `Q = P` by (intro measure_eqI) (auto simp: emeasure_density)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   479
    qed auto
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   480
    then have ae_0: "AE x in P. entropy_density b P Q x = 0"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   481
      by eventually_elim (auto simp: entropy_density_def)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   482
    then have "integrable P (entropy_density b P Q) \<longleftrightarrow> integrable Q (\<lambda>x. 0)"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   483
      using ed unfolding `Q = P` by (intro integrable_cong_AE) auto
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   484
    then show "integrable Q (entropy_density b P Q)" by simp
43340
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   485
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   486
    show "mutual_information b S T X Y = 0"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   487
      unfolding mutual_information_def KL_divergence_def P_def[symmetric] Q_def[symmetric] `Q = P`
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   488
      using ae_0 by (simp cong: integral_cong_AE) }
43340
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   489
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   490
  { assume ac: "absolutely_continuous P Q"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   491
    assume int: "integrable Q (entropy_density b P Q)"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   492
    assume I_eq_0: "mutual_information b S T X Y = 0"
43340
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   493
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   494
    have eq: "Q = P"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   495
    proof (rule P.KL_eq_0_iff_eq_ac[THEN iffD1])
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   496
      show "prob_space Q" by unfold_locales
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   497
      show "absolutely_continuous P Q" by fact
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   498
      show "integrable Q (entropy_density b P Q)" by fact
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   499
      show "sets Q = sets P" by (simp add: P_def Q_def sets_pair_measure)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   500
      show "KL_divergence b P Q = 0"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   501
        using I_eq_0 unfolding mutual_information_def by (simp add: P_def Q_def)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   502
    qed
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   503
    then show "distr M S X \<Otimes>\<^isub>M distr M T Y = distr M (S \<Otimes>\<^isub>M T) (\<lambda>x. (X x, Y x))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   504
      unfolding P_def Q_def .. }
43340
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   505
qed
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42148
diff changeset
   506
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
   507
abbreviation (in information_space)
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
   508
  mutual_information_Pow ("\<I>'(_ ; _')") where
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   509
  "\<I>(X ; Y) \<equiv> mutual_information b (count_space (X`space M)) (count_space (Y`space M)) X Y"
41689
3e39b0e730d6 the measure valuation is again part of the measure_space type, instead of an explicit parameter to the locale;
hoelzl
parents: 41661
diff changeset
   510
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   511
lemma (in information_space)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   512
  fixes Pxy :: "'b \<times> 'c \<Rightarrow> real" and Px :: "'b \<Rightarrow> real" and Py :: "'c \<Rightarrow> real"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   513
  assumes "sigma_finite_measure S" "sigma_finite_measure T"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   514
  assumes Px: "distributed M S X Px" and Py: "distributed M T Y Py"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   515
  assumes Pxy: "distributed M (S \<Otimes>\<^isub>M T) (\<lambda>x. (X x, Y x)) Pxy"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   516
  defines "f \<equiv> \<lambda>x. Pxy x * log b (Pxy x / (Px (fst x) * Py (snd x)))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   517
  shows mutual_information_distr: "mutual_information b S T X Y = integral\<^isup>L (S \<Otimes>\<^isub>M T) f" (is "?M = ?R")
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   518
    and mutual_information_nonneg: "integrable (S \<Otimes>\<^isub>M T) f \<Longrightarrow> 0 \<le> mutual_information b S T X Y"
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
   519
proof -
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   520
  have X: "random_variable S X"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   521
    using Px by (auto simp: distributed_def)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   522
  have Y: "random_variable T Y"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   523
    using Py by (auto simp: distributed_def)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   524
  interpret S: sigma_finite_measure S by fact
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   525
  interpret T: sigma_finite_measure T by fact
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   526
  interpret ST: pair_sigma_finite S T ..
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   527
  interpret X: prob_space "distr M S X" using X by (rule prob_space_distr)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   528
  interpret Y: prob_space "distr M T Y" using Y by (rule prob_space_distr)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   529
  interpret XY: pair_prob_space "distr M S X" "distr M T Y" ..
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   530
  let ?P = "S \<Otimes>\<^isub>M T"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   531
  let ?D = "distr M ?P (\<lambda>x. (X x, Y x))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   532
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   533
  { fix A assume "A \<in> sets S"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   534
    with X Y have "emeasure (distr M S X) A = emeasure ?D (A \<times> space T)"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   535
      by (auto simp: emeasure_distr measurable_Pair measurable_space
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   536
               intro!: arg_cong[where f="emeasure M"]) }
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   537
  note marginal_eq1 = this
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   538
  { fix A assume "A \<in> sets T"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   539
    with X Y have "emeasure (distr M T Y) A = emeasure ?D (space S \<times> A)"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   540
      by (auto simp: emeasure_distr measurable_Pair measurable_space
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   541
               intro!: arg_cong[where f="emeasure M"]) }
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   542
  note marginal_eq2 = this
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   543
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   544
  have eq: "(\<lambda>x. ereal (Px (fst x) * Py (snd x))) = (\<lambda>(x, y). ereal (Px x) * ereal (Py y))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   545
    by auto
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   546
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   547
  have distr_eq: "distr M S X \<Otimes>\<^isub>M distr M T Y = density ?P (\<lambda>x. ereal (Px (fst x) * Py (snd x)))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   548
    unfolding Px(1)[THEN distributed_distr_eq_density] Py(1)[THEN distributed_distr_eq_density] eq
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   549
  proof (subst pair_measure_density)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   550
    show "(\<lambda>x. ereal (Px x)) \<in> borel_measurable S" "(\<lambda>y. ereal (Py y)) \<in> borel_measurable T"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   551
      "AE x in S. 0 \<le> ereal (Px x)" "AE y in T. 0 \<le> ereal (Py y)"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   552
      using Px Py by (auto simp: distributed_def)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   553
    show "sigma_finite_measure (density S Px)" unfolding Px(1)[THEN distributed_distr_eq_density, symmetric] ..
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   554
    show "sigma_finite_measure (density T Py)" unfolding Py(1)[THEN distributed_distr_eq_density, symmetric] ..
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   555
  qed (fact | simp)+
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   556
  
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   557
  have M: "?M = KL_divergence b (density ?P (\<lambda>x. ereal (Px (fst x) * Py (snd x)))) (density ?P (\<lambda>x. ereal (Pxy x)))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   558
    unfolding mutual_information_def distr_eq Pxy(1)[THEN distributed_distr_eq_density] ..
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   559
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   560
  from Px Py have f: "(\<lambda>x. Px (fst x) * Py (snd x)) \<in> borel_measurable ?P"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   561
    by (intro borel_measurable_times) (auto intro: distributed_real_measurable measurable_fst'' measurable_snd'')
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   562
  have PxPy_nonneg: "AE x in ?P. 0 \<le> Px (fst x) * Py (snd x)"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   563
  proof (rule ST.AE_pair_measure)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   564
    show "{x \<in> space ?P. 0 \<le> Px (fst x) * Py (snd x)} \<in> sets ?P"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   565
      using f by auto
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   566
    show "AE x in S. AE y in T. 0 \<le> Px (fst (x, y)) * Py (snd (x, y))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   567
      using Px Py by (auto simp: zero_le_mult_iff dest!: distributed_real_AE)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   568
  qed
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   569
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   570
  have "(AE x in ?P. Px (fst x) = 0 \<longrightarrow> Pxy x = 0)"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   571
    by (rule subdensity_real[OF measurable_fst Pxy Px]) auto
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   572
  moreover
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   573
  have "(AE x in ?P. Py (snd x) = 0 \<longrightarrow> Pxy x = 0)"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   574
    by (rule subdensity_real[OF measurable_snd Pxy Py]) auto
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   575
  ultimately have ac: "AE x in ?P. Px (fst x) * Py (snd x) = 0 \<longrightarrow> Pxy x = 0"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   576
    by eventually_elim auto
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   577
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   578
  show "?M = ?R"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   579
    unfolding M f_def
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   580
    using b_gt_1 f PxPy_nonneg Pxy[THEN distributed_real_measurable] Pxy[THEN distributed_real_AE] ac
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   581
    by (rule ST.KL_density_density)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   582
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   583
  assume int: "integrable (S \<Otimes>\<^isub>M T) f"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   584
  show "0 \<le> ?M" unfolding M
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   585
  proof (rule ST.KL_density_density_nonneg
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   586
    [OF b_gt_1 f PxPy_nonneg _ Pxy[THEN distributed_real_measurable] Pxy[THEN distributed_real_AE] _ ac int[unfolded f_def]])
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   587
    show "prob_space (density (S \<Otimes>\<^isub>M T) (\<lambda>x. ereal (Pxy x))) "
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   588
      unfolding distributed_distr_eq_density[OF Pxy, symmetric]
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   589
      using distributed_measurable[OF Pxy] by (rule prob_space_distr)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   590
    show "prob_space (density (S \<Otimes>\<^isub>M T) (\<lambda>x. ereal (Px (fst x) * Py (snd x))))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   591
      unfolding distr_eq[symmetric] by unfold_locales
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
   592
  qed
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
   593
qed
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
   594
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
   595
lemma (in information_space)
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   596
  fixes Pxy :: "'b \<times> 'c \<Rightarrow> real" and Px :: "'b \<Rightarrow> real" and Py :: "'c \<Rightarrow> real"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   597
  assumes "sigma_finite_measure S" "sigma_finite_measure T"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   598
  assumes Px: "distributed M S X Px" and Py: "distributed M T Y Py"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   599
  assumes Pxy: "distributed M (S \<Otimes>\<^isub>M T) (\<lambda>x. (X x, Y x)) Pxy"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   600
  assumes ae: "AE x in S. AE y in T. Pxy (x, y) = Px x * Py y"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   601
  shows mutual_information_eq_0: "mutual_information b S T X Y = 0"
36624
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
   602
proof -
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   603
  interpret S: sigma_finite_measure S by fact
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   604
  interpret T: sigma_finite_measure T by fact
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   605
  interpret ST: pair_sigma_finite S T ..
36080
0d9affa4e73c Added Information theory and Example: dining cryptographers
hoelzl
parents:
diff changeset
   606
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   607
  have "AE x in S \<Otimes>\<^isub>M T. Px (fst x) = 0 \<longrightarrow> Pxy x = 0"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   608
    by (rule subdensity_real[OF measurable_fst Pxy Px]) auto
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   609
  moreover
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   610
  have "AE x in S \<Otimes>\<^isub>M T. Py (snd x) = 0 \<longrightarrow> Pxy x = 0"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   611
    by (rule subdensity_real[OF measurable_snd Pxy Py]) auto
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   612
  moreover 
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   613
  have "AE x in S \<Otimes>\<^isub>M T. Pxy x = Px (fst x) * Py (snd x)"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   614
    using distributed_real_measurable[OF Px] distributed_real_measurable[OF Py] distributed_real_measurable[OF Pxy]
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   615
    by (intro ST.AE_pair_measure) (auto simp: ae intro!: measurable_snd'' measurable_fst'')
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   616
  ultimately have "AE x in S \<Otimes>\<^isub>M T. Pxy x * log b (Pxy x / (Px (fst x) * Py (snd x))) = 0"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   617
    by eventually_elim simp
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   618
  then have "(\<integral>x. Pxy x * log b (Pxy x / (Px (fst x) * Py (snd x))) \<partial>(S \<Otimes>\<^isub>M T)) = (\<integral>x. 0 \<partial>(S \<Otimes>\<^isub>M T))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   619
    by (rule integral_cong_AE)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   620
  then show ?thesis
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   621
    by (subst mutual_information_distr[OF assms(1-5)]) simp
36080
0d9affa4e73c Added Information theory and Example: dining cryptographers
hoelzl
parents:
diff changeset
   622
qed
0d9affa4e73c Added Information theory and Example: dining cryptographers
hoelzl
parents:
diff changeset
   623
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   624
lemma (in information_space) mutual_information_simple_distributed:
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   625
  assumes X: "simple_distributed M X Px" and Y: "simple_distributed M Y Py"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   626
  assumes XY: "simple_distributed M (\<lambda>x. (X x, Y x)) Pxy"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   627
  shows "\<I>(X ; Y) = (\<Sum>(x, y)\<in>(\<lambda>x. (X x, Y x))`space M. Pxy (x, y) * log b (Pxy (x, y) / (Px x * Py y)))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   628
proof (subst mutual_information_distr[OF _ _ simple_distributed[OF X] simple_distributed[OF Y] simple_distributed_joint[OF XY]])
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   629
  note fin = simple_distributed_joint_finite[OF XY, simp]
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   630
  show "sigma_finite_measure (count_space (X ` space M))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   631
    by (simp add: sigma_finite_measure_count_space_finite)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   632
  show "sigma_finite_measure (count_space (Y ` space M))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   633
    by (simp add: sigma_finite_measure_count_space_finite)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   634
  let ?Pxy = "\<lambda>x. (if x \<in> (\<lambda>x. (X x, Y x)) ` space M then Pxy x else 0)"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   635
  let ?f = "\<lambda>x. ?Pxy x * log b (?Pxy x / (Px (fst x) * Py (snd x)))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   636
  have "\<And>x. ?f x = (if x \<in> (\<lambda>x. (X x, Y x)) ` space M then Pxy x * log b (Pxy x / (Px (fst x) * Py (snd x))) else 0)"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   637
    by auto
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   638
  with fin show "(\<integral> x. ?f x \<partial>(count_space (X ` space M) \<Otimes>\<^isub>M count_space (Y ` space M))) =
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   639
    (\<Sum>(x, y)\<in>(\<lambda>x. (X x, Y x)) ` space M. Pxy (x, y) * log b (Pxy (x, y) / (Px x * Py y)))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   640
    by (auto simp add: pair_measure_count_space lebesgue_integral_count_space_finite setsum_cases split_beta'
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   641
             intro!: setsum_cong)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   642
qed
36080
0d9affa4e73c Added Information theory and Example: dining cryptographers
hoelzl
parents:
diff changeset
   643
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   644
lemma (in information_space)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   645
  fixes Pxy :: "'b \<times> 'c \<Rightarrow> real" and Px :: "'b \<Rightarrow> real" and Py :: "'c \<Rightarrow> real"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   646
  assumes Px: "simple_distributed M X Px" and Py: "simple_distributed M Y Py"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   647
  assumes Pxy: "simple_distributed M (\<lambda>x. (X x, Y x)) Pxy"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   648
  assumes ae: "\<forall>x\<in>space M. Pxy (X x, Y x) = Px (X x) * Py (Y x)"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   649
  shows mutual_information_eq_0_simple: "\<I>(X ; Y) = 0"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   650
proof (subst mutual_information_simple_distributed[OF Px Py Pxy])
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   651
  have "(\<Sum>(x, y)\<in>(\<lambda>x. (X x, Y x)) ` space M. Pxy (x, y) * log b (Pxy (x, y) / (Px x * Py y))) =
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   652
    (\<Sum>(x, y)\<in>(\<lambda>x. (X x, Y x)) ` space M. 0)"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   653
    by (intro setsum_cong) (auto simp: ae)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   654
  then show "(\<Sum>(x, y)\<in>(\<lambda>x. (X x, Y x)) ` space M.
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   655
    Pxy (x, y) * log b (Pxy (x, y) / (Px x * Py y))) = 0" by simp
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   656
qed
36080
0d9affa4e73c Added Information theory and Example: dining cryptographers
hoelzl
parents:
diff changeset
   657
39097
943c7b348524 Moved lemmas to appropriate locations
hoelzl
parents: 39092
diff changeset
   658
subsection {* Entropy *}
943c7b348524 Moved lemmas to appropriate locations
hoelzl
parents: 39092
diff changeset
   659
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   660
definition (in prob_space) entropy :: "real \<Rightarrow> 'b measure \<Rightarrow> ('a \<Rightarrow> 'b) \<Rightarrow> real" where
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   661
  "entropy b S X = - KL_divergence b S (distr M S X)"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   662
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
   663
abbreviation (in information_space)
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
   664
  entropy_Pow ("\<H>'(_')") where
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   665
  "\<H>(X) \<equiv> entropy b (count_space (X`space M)) X"
41981
cdf7693bbe08 reworked Probability theory: measures are not type restricted to positive extended reals
hoelzl
parents: 41833
diff changeset
   666
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   667
lemma (in information_space) entropy_distr:
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   668
  fixes X :: "'a \<Rightarrow> 'b"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   669
  assumes "sigma_finite_measure MX" and X: "distributed M MX X f"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   670
  shows "entropy b MX X = - (\<integral>x. f x * log b (f x) \<partial>MX)"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   671
proof -
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   672
  interpret MX: sigma_finite_measure MX by fact
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   673
  from X show ?thesis
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   674
    unfolding entropy_def X[THEN distributed_distr_eq_density]
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   675
    by (subst MX.KL_density[OF b_gt_1]) (simp_all add: distributed_real_AE distributed_real_measurable)
39097
943c7b348524 Moved lemmas to appropriate locations
hoelzl
parents: 39092
diff changeset
   676
qed
36624
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
   677
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   678
lemma (in information_space) entropy_uniform:
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   679
  assumes "sigma_finite_measure MX"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   680
  assumes A: "A \<in> sets MX" "emeasure MX A \<noteq> 0" "emeasure MX A \<noteq> \<infinity>"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   681
  assumes X: "distributed M MX X (\<lambda>x. 1 / measure MX A * indicator A x)"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   682
  shows "entropy b MX X = log b (measure MX A)"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   683
proof (subst entropy_distr[OF _ X])
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   684
  let ?f = "\<lambda>x. 1 / measure MX A * indicator A x"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   685
  have "- (\<integral>x. ?f x * log b (?f x) \<partial>MX) = 
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   686
    - (\<integral>x. (log b (1 / measure MX A) / measure MX A) * indicator A x \<partial>MX)"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   687
    by (auto intro!: integral_cong simp: indicator_def)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   688
  also have "\<dots> = - log b (inverse (measure MX A))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   689
    using A by (subst integral_cmult(2))
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   690
               (simp_all add: measure_def real_of_ereal_eq_0 integral_cmult inverse_eq_divide)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   691
  also have "\<dots> = log b (measure MX A)"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   692
    using b_gt_1 A by (subst log_inverse) (auto simp add: measure_def less_le real_of_ereal_eq_0
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   693
                                                          emeasure_nonneg real_of_ereal_pos)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   694
  finally show "- (\<integral>x. ?f x * log b (?f x) \<partial>MX) = log b (measure MX A)" by simp
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   695
qed fact+
36080
0d9affa4e73c Added Information theory and Example: dining cryptographers
hoelzl
parents:
diff changeset
   696
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   697
lemma (in information_space) entropy_simple_distributed:
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   698
  fixes X :: "'a \<Rightarrow> 'b"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   699
  assumes X: "simple_distributed M X f"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   700
  shows "\<H>(X) = - (\<Sum>x\<in>X`space M. f x * log b (f x))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   701
proof (subst entropy_distr[OF _ simple_distributed[OF X]])
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   702
  show "sigma_finite_measure (count_space (X ` space M))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   703
    using X by (simp add: sigma_finite_measure_count_space_finite simple_distributed_def)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   704
  show "- (\<integral>x. f x * log b (f x) \<partial>(count_space (X`space M))) = - (\<Sum>x\<in>X ` space M. f x * log b (f x))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   705
    using X by (auto simp add: lebesgue_integral_count_space_finite)
39097
943c7b348524 Moved lemmas to appropriate locations
hoelzl
parents: 39092
diff changeset
   706
qed
943c7b348524 Moved lemmas to appropriate locations
hoelzl
parents: 39092
diff changeset
   707
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
   708
lemma (in information_space) entropy_le_card_not_0:
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   709
  assumes X: "simple_distributed M X f"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   710
  shows "\<H>(X) \<le> log b (card (X ` space M \<inter> {x. f x \<noteq> 0}))"
39097
943c7b348524 Moved lemmas to appropriate locations
hoelzl
parents: 39092
diff changeset
   711
proof -
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   712
  have "\<H>(X) = (\<Sum>x\<in>X`space M. f x * log b (1 / f x))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   713
    unfolding entropy_simple_distributed[OF X] setsum_negf[symmetric]
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   714
    using X by (auto dest: simple_distributed_nonneg intro!: setsum_cong simp: log_simps less_le)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   715
  also have "\<dots> \<le> log b (\<Sum>x\<in>X`space M. f x * (1 / f x))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   716
    using not_empty b_gt_1 `simple_distributed M X f`
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   717
    by (intro log_setsum') (auto simp: simple_distributed_nonneg simple_distributed_setsum_space)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   718
  also have "\<dots> = log b (\<Sum>x\<in>X`space M. if f x \<noteq> 0 then 1 else 0)"
41981
cdf7693bbe08 reworked Probability theory: measures are not type restricted to positive extended reals
hoelzl
parents: 41833
diff changeset
   719
    by (intro arg_cong[where f="\<lambda>X. log b X"] setsum_cong) auto
39097
943c7b348524 Moved lemmas to appropriate locations
hoelzl
parents: 39092
diff changeset
   720
  finally show ?thesis
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   721
    using `simple_distributed M X f` by (auto simp: setsum_cases real_eq_of_nat)
39097
943c7b348524 Moved lemmas to appropriate locations
hoelzl
parents: 39092
diff changeset
   722
qed
943c7b348524 Moved lemmas to appropriate locations
hoelzl
parents: 39092
diff changeset
   723
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
   724
lemma (in information_space) entropy_le_card:
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   725
  assumes "simple_distributed M X f"
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
   726
  shows "\<H>(X) \<le> log b (real (card (X ` space M)))"
39097
943c7b348524 Moved lemmas to appropriate locations
hoelzl
parents: 39092
diff changeset
   727
proof cases
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   728
  assume "X ` space M \<inter> {x. f x \<noteq> 0} = {}"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   729
  then have "\<And>x. x\<in>X`space M \<Longrightarrow> f x = 0" by auto
39097
943c7b348524 Moved lemmas to appropriate locations
hoelzl
parents: 39092
diff changeset
   730
  moreover
943c7b348524 Moved lemmas to appropriate locations
hoelzl
parents: 39092
diff changeset
   731
  have "0 < card (X`space M)"
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   732
    using `simple_distributed M X f` not_empty by (auto simp: card_gt_0_iff)
39097
943c7b348524 Moved lemmas to appropriate locations
hoelzl
parents: 39092
diff changeset
   733
  then have "log b 1 \<le> log b (real (card (X`space M)))"
943c7b348524 Moved lemmas to appropriate locations
hoelzl
parents: 39092
diff changeset
   734
    using b_gt_1 by (intro log_le) auto
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   735
  ultimately show ?thesis using assms by (simp add: entropy_simple_distributed)
39097
943c7b348524 Moved lemmas to appropriate locations
hoelzl
parents: 39092
diff changeset
   736
next
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   737
  assume False: "X ` space M \<inter> {x. f x \<noteq> 0} \<noteq> {}"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   738
  have "card (X ` space M \<inter> {x. f x \<noteq> 0}) \<le> card (X ` space M)"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   739
    (is "?A \<le> ?B") using assms not_empty
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   740
    by (auto intro!: card_mono simp: simple_function_def simple_distributed_def)
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
   741
  note entropy_le_card_not_0[OF assms]
39097
943c7b348524 Moved lemmas to appropriate locations
hoelzl
parents: 39092
diff changeset
   742
  also have "log b (real ?A) \<le> log b (real ?B)"
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
   743
    using b_gt_1 False not_empty `?A \<le> ?B` assms
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   744
    by (auto intro!: log_le simp: card_gt_0_iff simp: simple_distributed_def)
39097
943c7b348524 Moved lemmas to appropriate locations
hoelzl
parents: 39092
diff changeset
   745
  finally show ?thesis .
943c7b348524 Moved lemmas to appropriate locations
hoelzl
parents: 39092
diff changeset
   746
qed
943c7b348524 Moved lemmas to appropriate locations
hoelzl
parents: 39092
diff changeset
   747
943c7b348524 Moved lemmas to appropriate locations
hoelzl
parents: 39092
diff changeset
   748
subsection {* Conditional Mutual Information *}
943c7b348524 Moved lemmas to appropriate locations
hoelzl
parents: 39092
diff changeset
   749
36080
0d9affa4e73c Added Information theory and Example: dining cryptographers
hoelzl
parents:
diff changeset
   750
definition (in prob_space)
41689
3e39b0e730d6 the measure valuation is again part of the measure_space type, instead of an explicit parameter to the locale;
hoelzl
parents: 41661
diff changeset
   751
  "conditional_mutual_information b MX MY MZ X Y Z \<equiv>
3e39b0e730d6 the measure valuation is again part of the measure_space type, instead of an explicit parameter to the locale;
hoelzl
parents: 41661
diff changeset
   752
    mutual_information b MX (MY \<Otimes>\<^isub>M MZ) X (\<lambda>x. (Y x, Z x)) -
3e39b0e730d6 the measure valuation is again part of the measure_space type, instead of an explicit parameter to the locale;
hoelzl
parents: 41661
diff changeset
   753
    mutual_information b MX MZ X Z"
36080
0d9affa4e73c Added Information theory and Example: dining cryptographers
hoelzl
parents:
diff changeset
   754
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
   755
abbreviation (in information_space)
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
   756
  conditional_mutual_information_Pow ("\<I>'( _ ; _ | _ ')") where
36624
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
   757
  "\<I>(X ; Y | Z) \<equiv> conditional_mutual_information b
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   758
    (count_space (X ` space M)) (count_space (Y ` space M)) (count_space (Z ` space M)) X Y Z"
36080
0d9affa4e73c Added Information theory and Example: dining cryptographers
hoelzl
parents:
diff changeset
   759
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
   760
lemma (in information_space) conditional_mutual_information_generic_eq:
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   761
  assumes S: "sigma_finite_measure S" and T: "sigma_finite_measure T" and P: "sigma_finite_measure P"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   762
  assumes Px: "distributed M S X Px"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   763
  assumes Pz: "distributed M P Z Pz"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   764
  assumes Pyz: "distributed M (T \<Otimes>\<^isub>M P) (\<lambda>x. (Y x, Z x)) Pyz"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   765
  assumes Pxz: "distributed M (S \<Otimes>\<^isub>M P) (\<lambda>x. (X x, Z x)) Pxz"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   766
  assumes Pxyz: "distributed M (S \<Otimes>\<^isub>M T \<Otimes>\<^isub>M P) (\<lambda>x. (X x, Y x, Z x)) Pxyz"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   767
  assumes I1: "integrable (S \<Otimes>\<^isub>M T \<Otimes>\<^isub>M P) (\<lambda>(x, y, z). Pxyz (x, y, z) * log b (Pxyz (x, y, z) / (Px x * Pyz (y, z))))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   768
  assumes I2: "integrable (S \<Otimes>\<^isub>M T \<Otimes>\<^isub>M P) (\<lambda>(x, y, z). Pxyz (x, y, z) * log b (Pxz (x, z) / (Px x * Pz z)))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   769
  shows "conditional_mutual_information b S T P X Y Z
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   770
    = (\<integral>(x, y, z). Pxyz (x, y, z) * log b (Pxyz (x, y, z) / (Pxz (x, z) * (Pyz (y,z) / Pz z))) \<partial>(S \<Otimes>\<^isub>M T \<Otimes>\<^isub>M P))"
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
   771
proof -
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   772
  interpret S: sigma_finite_measure S by fact
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   773
  interpret T: sigma_finite_measure T by fact
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   774
  interpret P: sigma_finite_measure P by fact
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   775
  interpret TP: pair_sigma_finite T P ..
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   776
  interpret SP: pair_sigma_finite S P ..
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   777
  interpret SPT: pair_sigma_finite "S \<Otimes>\<^isub>M P" T ..
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   778
  interpret STP: pair_sigma_finite S "T \<Otimes>\<^isub>M P" ..
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   779
  have TP: "sigma_finite_measure (T \<Otimes>\<^isub>M P)" ..
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   780
  have SP: "sigma_finite_measure (S \<Otimes>\<^isub>M P)" ..
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   781
  have YZ: "random_variable (T \<Otimes>\<^isub>M P) (\<lambda>x. (Y x, Z x))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   782
    using Pyz by (simp add: distributed_measurable)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   783
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   784
  have Pxyz_f: "\<And>M f. f \<in> measurable M (S \<Otimes>\<^isub>M T \<Otimes>\<^isub>M P) \<Longrightarrow> (\<lambda>x. Pxyz (f x)) \<in> borel_measurable M"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   785
    using measurable_comp[OF _ Pxyz[THEN distributed_real_measurable]] by (auto simp: comp_def)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   786
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   787
  { fix f g h M
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   788
    assume f: "f \<in> measurable M S" and g: "g \<in> measurable M P" and h: "h \<in> measurable M (S \<Otimes>\<^isub>M P)"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   789
    from measurable_comp[OF h Pxz[THEN distributed_real_measurable]]
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   790
         measurable_comp[OF f Px[THEN distributed_real_measurable]]
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   791
         measurable_comp[OF g Pz[THEN distributed_real_measurable]]
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   792
    have "(\<lambda>x. log b (Pxz (h x) / (Px (f x) * Pz (g x)))) \<in> borel_measurable M"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   793
      by (simp add: comp_def b_gt_1) }
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   794
  note borel_log = this
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   795
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   796
  have measurable_cut: "(\<lambda>(x, y, z). (x, z)) \<in> measurable (S \<Otimes>\<^isub>M T \<Otimes>\<^isub>M P) (S \<Otimes>\<^isub>M P)"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   797
    by (auto simp add: split_beta' comp_def intro!: measurable_Pair measurable_snd')
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   798
  
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   799
  from Pxz Pxyz have distr_eq: "distr M (S \<Otimes>\<^isub>M P) (\<lambda>x. (X x, Z x)) =
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   800
    distr (distr M (S \<Otimes>\<^isub>M T \<Otimes>\<^isub>M P) (\<lambda>x. (X x, Y x, Z x))) (S \<Otimes>\<^isub>M P) (\<lambda>(x, y, z). (x, z))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   801
    by (subst distr_distr[OF measurable_cut]) (auto dest: distributed_measurable simp: comp_def)
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
   802
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   803
  have "mutual_information b S P X Z =
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   804
    (\<integral>x. Pxz x * log b (Pxz x / (Px (fst x) * Pz (snd x))) \<partial>(S \<Otimes>\<^isub>M P))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   805
    by (rule mutual_information_distr[OF S P Px Pz Pxz])
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   806
  also have "\<dots> = (\<integral>(x,y,z). Pxyz (x,y,z) * log b (Pxz (x,z) / (Px x * Pz z)) \<partial>(S \<Otimes>\<^isub>M T \<Otimes>\<^isub>M P))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   807
    using b_gt_1 Pxz Px Pz
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   808
    by (subst distributed_transform_integral[OF Pxyz Pxz, where T="\<lambda>(x, y, z). (x, z)"])
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   809
       (auto simp: split_beta' intro!: measurable_Pair measurable_snd' measurable_snd'' measurable_fst'' borel_measurable_times
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   810
             dest!: distributed_real_measurable)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   811
  finally have mi_eq:
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   812
    "mutual_information b S P X Z = (\<integral>(x,y,z). Pxyz (x,y,z) * log b (Pxz (x,z) / (Px x * Pz z)) \<partial>(S \<Otimes>\<^isub>M T \<Otimes>\<^isub>M P))" .
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   813
  
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   814
  have "AE x in S \<Otimes>\<^isub>M T \<Otimes>\<^isub>M P. Px (fst x) = 0 \<longrightarrow> Pxyz x = 0"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   815
    by (intro subdensity_real[of fst, OF _ Pxyz Px]) auto
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   816
  moreover have "AE x in S \<Otimes>\<^isub>M T \<Otimes>\<^isub>M P. Pz (snd (snd x)) = 0 \<longrightarrow> Pxyz x = 0"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   817
    by (intro subdensity_real[of "\<lambda>x. snd (snd x)", OF _ Pxyz Pz]) (auto intro: measurable_snd')
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   818
  moreover have "AE x in S \<Otimes>\<^isub>M T \<Otimes>\<^isub>M P. Pxz (fst x, snd (snd x)) = 0 \<longrightarrow> Pxyz x = 0"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   819
    by (intro subdensity_real[of "\<lambda>x. (fst x, snd (snd x))", OF _ Pxyz Pxz]) (auto intro: measurable_Pair measurable_snd')
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   820
  moreover have "AE x in S \<Otimes>\<^isub>M T \<Otimes>\<^isub>M P. Pyz (snd x) = 0 \<longrightarrow> Pxyz x = 0"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   821
    by (intro subdensity_real[of snd, OF _ Pxyz Pyz]) (auto intro: measurable_Pair)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   822
  moreover have "AE x in S \<Otimes>\<^isub>M T \<Otimes>\<^isub>M P. 0 \<le> Px (fst x)"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   823
    using Px by (intro STP.AE_pair_measure) (auto simp: comp_def intro!: measurable_fst'' dest: distributed_real_AE distributed_real_measurable)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   824
  moreover have "AE x in S \<Otimes>\<^isub>M T \<Otimes>\<^isub>M P. 0 \<le> Pyz (snd x)"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   825
    using Pyz by (intro STP.AE_pair_measure) (auto simp: comp_def intro!: measurable_snd'' dest: distributed_real_AE distributed_real_measurable)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   826
  moreover have "AE x in S \<Otimes>\<^isub>M T \<Otimes>\<^isub>M P. 0 \<le> Pz (snd (snd x))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   827
    using Pz Pz[THEN distributed_real_measurable] by (auto intro!: measurable_snd'' TP.AE_pair_measure STP.AE_pair_measure AE_I2[of S] dest: distributed_real_AE)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   828
  moreover have "AE x in S \<Otimes>\<^isub>M T \<Otimes>\<^isub>M P. 0 \<le> Pxz (fst x, snd (snd x))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   829
    using Pxz[THEN distributed_real_AE, THEN SP.AE_pair]
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   830
    using measurable_comp[OF measurable_Pair[OF measurable_fst measurable_comp[OF measurable_snd measurable_snd]] Pxz[THEN distributed_real_measurable], of T]
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   831
    using measurable_comp[OF measurable_snd measurable_Pair2[OF Pxz[THEN distributed_real_measurable]], of _ T]
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   832
    by (auto intro!: TP.AE_pair_measure STP.AE_pair_measure simp: comp_def)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   833
  moreover note Pxyz[THEN distributed_real_AE]
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   834
  ultimately have "AE x in S \<Otimes>\<^isub>M T \<Otimes>\<^isub>M P.
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   835
    Pxyz x * log b (Pxyz x / (Px (fst x) * Pyz (snd x))) -
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   836
    Pxyz x * log b (Pxz (fst x, snd (snd x)) / (Px (fst x) * Pz (snd (snd x)))) =
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   837
    Pxyz x * log b (Pxyz x * Pz (snd (snd x)) / (Pxz (fst x, snd (snd x)) * Pyz (snd x))) "
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   838
  proof eventually_elim
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   839
    case (goal1 x)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   840
    show ?case
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
   841
    proof cases
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   842
      assume "Pxyz x \<noteq> 0"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   843
      with goal1 have "0 < Px (fst x)" "0 < Pz (snd (snd x))" "0 < Pxz (fst x, snd (snd x))" "0 < Pyz (snd x)" "0 < Pxyz x"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   844
        by auto
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   845
      then show ?thesis
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   846
        using b_gt_1 by (simp add: log_simps mult_pos_pos less_imp_le field_simps)
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
   847
    qed simp
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
   848
  qed
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   849
  with I1 I2 show ?thesis
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
   850
    unfolding conditional_mutual_information_def
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   851
    apply (subst mi_eq)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   852
    apply (subst mutual_information_distr[OF S TP Px Pyz Pxyz])
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   853
    apply (subst integral_diff(2)[symmetric])
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   854
    apply (auto intro!: integral_cong_AE simp: split_beta' simp del: integral_diff)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   855
    done
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
   856
qed
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
   857
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
   858
lemma (in information_space) conditional_mutual_information_eq:
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   859
  assumes Pz: "simple_distributed M Z Pz"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   860
  assumes Pyz: "simple_distributed M (\<lambda>x. (Y x, Z x)) Pyz"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   861
  assumes Pxz: "simple_distributed M (\<lambda>x. (X x, Z x)) Pxz"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   862
  assumes Pxyz: "simple_distributed M (\<lambda>x. (X x, Y x, Z x)) Pxyz"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   863
  shows "\<I>(X ; Y | Z) =
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   864
   (\<Sum>(x, y, z)\<in>(\<lambda>x. (X x, Y x, Z x))`space M. Pxyz (x, y, z) * log b (Pxyz (x, y, z) / (Pxz (x, z) * (Pyz (y,z) / Pz z))))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   865
proof (subst conditional_mutual_information_generic_eq[OF _ _ _ _
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   866
    simple_distributed[OF Pz] simple_distributed_joint[OF Pyz] simple_distributed_joint[OF Pxz]
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   867
    simple_distributed_joint2[OF Pxyz]])
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   868
  note simple_distributed_joint2_finite[OF Pxyz, simp]
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   869
  show "sigma_finite_measure (count_space (X ` space M))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   870
    by (simp add: sigma_finite_measure_count_space_finite)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   871
  show "sigma_finite_measure (count_space (Y ` space M))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   872
    by (simp add: sigma_finite_measure_count_space_finite)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   873
  show "sigma_finite_measure (count_space (Z ` space M))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   874
    by (simp add: sigma_finite_measure_count_space_finite)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   875
  have "count_space (X ` space M) \<Otimes>\<^isub>M count_space (Y ` space M) \<Otimes>\<^isub>M count_space (Z ` space M) =
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   876
      count_space (X`space M \<times> Y`space M \<times> Z`space M)"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   877
    (is "?P = ?C")
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   878
    by (simp add: pair_measure_count_space)
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
   879
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   880
  let ?Px = "\<lambda>x. measure M (X -` {x} \<inter> space M)"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   881
  have "(\<lambda>x. (X x, Z x)) \<in> measurable M (count_space (X ` space M) \<Otimes>\<^isub>M count_space (Z ` space M))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   882
    using simple_distributed_joint[OF Pxz] by (rule distributed_measurable)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   883
  from measurable_comp[OF this measurable_fst]
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   884
  have "random_variable (count_space (X ` space M)) X"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   885
    by (simp add: comp_def)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   886
  then have "simple_function M X"    
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   887
    unfolding simple_function_def by auto
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   888
  then have "simple_distributed M X ?Px"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   889
    by (rule simple_distributedI) auto
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   890
  then show "distributed M (count_space (X ` space M)) X ?Px"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   891
    by (rule simple_distributed)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   892
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   893
  let ?f = "(\<lambda>x. if x \<in> (\<lambda>x. (X x, Y x, Z x)) ` space M then Pxyz x else 0)"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   894
  let ?g = "(\<lambda>x. if x \<in> (\<lambda>x. (Y x, Z x)) ` space M then Pyz x else 0)"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   895
  let ?h = "(\<lambda>x. if x \<in> (\<lambda>x. (X x, Z x)) ` space M then Pxz x else 0)"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   896
  show
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   897
      "integrable ?P (\<lambda>(x, y, z). ?f (x, y, z) * log b (?f (x, y, z) / (?Px x * ?g (y, z))))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   898
      "integrable ?P (\<lambda>(x, y, z). ?f (x, y, z) * log b (?h (x, z) / (?Px x * Pz z)))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   899
    by (auto intro!: integrable_count_space simp: pair_measure_count_space)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   900
  let ?i = "\<lambda>x y z. ?f (x, y, z) * log b (?f (x, y, z) / (?h (x, z) * (?g (y, z) / Pz z)))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   901
  let ?j = "\<lambda>x y z. Pxyz (x, y, z) * log b (Pxyz (x, y, z) / (Pxz (x, z) * (Pyz (y,z) / Pz z)))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   902
  have "(\<lambda>(x, y, z). ?i x y z) = (\<lambda>x. if x \<in> (\<lambda>x. (X x, Y x, Z x)) ` space M then ?j (fst x) (fst (snd x)) (snd (snd x)) else 0)"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   903
    by (auto intro!: ext)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   904
  then show "(\<integral> (x, y, z). ?i x y z \<partial>?P) = (\<Sum>(x, y, z)\<in>(\<lambda>x. (X x, Y x, Z x)) ` space M. ?j x y z)"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   905
    by (auto intro!: setsum_cong simp add: `?P = ?C` lebesgue_integral_count_space_finite simple_distributed_finite setsum_cases split_beta')
36624
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
   906
qed
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
   907
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   908
lemma (in information_space) conditional_mutual_information_nonneg:
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   909
  assumes X: "simple_function M X" and Y: "simple_function M Y" and Z: "simple_function M Z"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   910
  shows "0 \<le> \<I>(X ; Y | Z)"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   911
proof -
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   912
  def Pz \<equiv> "\<lambda>x. if x \<in> Z`space M then measure M (Z -` {x} \<inter> space M) else 0"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   913
  def Pxz \<equiv> "\<lambda>x. if x \<in> (\<lambda>x. (X x, Z x))`space M then measure M ((\<lambda>x. (X x, Z x)) -` {x} \<inter> space M) else 0"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   914
  def Pyz \<equiv> "\<lambda>x. if x \<in> (\<lambda>x. (Y x, Z x))`space M then measure M ((\<lambda>x. (Y x, Z x)) -` {x} \<inter> space M) else 0"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   915
  def Pxyz \<equiv> "\<lambda>x. if x \<in> (\<lambda>x. (X x, Y x, Z x))`space M then measure M ((\<lambda>x. (X x, Y x, Z x)) -` {x} \<inter> space M) else 0"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   916
  let ?M = "X`space M \<times> Y`space M \<times> Z`space M"
36624
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
   917
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   918
  note XZ = simple_function_Pair[OF X Z]
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   919
  note YZ = simple_function_Pair[OF Y Z]
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   920
  note XYZ = simple_function_Pair[OF X simple_function_Pair[OF Y Z]]
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   921
  have Pz: "simple_distributed M Z Pz"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   922
    using Z by (rule simple_distributedI) (auto simp: Pz_def)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   923
  have Pxz: "simple_distributed M (\<lambda>x. (X x, Z x)) Pxz"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   924
    using XZ by (rule simple_distributedI) (auto simp: Pxz_def)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   925
  have Pyz: "simple_distributed M (\<lambda>x. (Y x, Z x)) Pyz"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   926
    using YZ by (rule simple_distributedI) (auto simp: Pyz_def)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   927
  have Pxyz: "simple_distributed M (\<lambda>x. (X x, Y x, Z x)) Pxyz"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   928
    using XYZ by (rule simple_distributedI) (auto simp: Pxyz_def)
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
   929
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   930
  { fix z assume z: "z \<in> Z ` space M" then have "(\<Sum>x\<in>X ` space M. Pxz (x, z)) = Pz z"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   931
      using distributed_marginal_eq_joint_simple[OF X Pz Pxz z]
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   932
      by (auto intro!: setsum_cong simp: Pxz_def) }
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   933
  note marginal1 = this
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
   934
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   935
  { fix z assume z: "z \<in> Z ` space M" then have "(\<Sum>y\<in>Y ` space M. Pyz (y, z)) = Pz z"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   936
      using distributed_marginal_eq_joint_simple[OF Y Pz Pyz z]
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   937
      by (auto intro!: setsum_cong simp: Pyz_def) }
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   938
  note marginal2 = this
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   939
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   940
  have "- \<I>(X ; Y | Z) = - (\<Sum>(x, y, z) \<in> ?M. Pxyz (x, y, z) * log b (Pxyz (x, y, z) / (Pxz (x, z) * (Pyz (y,z) / Pz z))))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   941
    unfolding conditional_mutual_information_eq[OF Pz Pyz Pxz Pxyz]
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   942
    using X Y Z by (auto intro!: setsum_mono_zero_left simp: Pxyz_def simple_functionD)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   943
  also have "\<dots> \<le> log b (\<Sum>(x, y, z) \<in> ?M. Pxz (x, z) * (Pyz (y,z) / Pz z))"
41981
cdf7693bbe08 reworked Probability theory: measures are not type restricted to positive extended reals
hoelzl
parents: 41833
diff changeset
   944
    unfolding split_beta'
36624
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
   945
  proof (rule log_setsum_divide)
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   946
    show "?M \<noteq> {}" using not_empty by simp
36624
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
   947
    show "1 < b" using b_gt_1 .
36080
0d9affa4e73c Added Information theory and Example: dining cryptographers
hoelzl
parents:
diff changeset
   948
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   949
    show "finite ?M" using X Y Z by (auto simp: simple_functionD)
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
   950
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   951
    then show "(\<Sum>x\<in>?M. Pxyz (fst x, fst (snd x), snd (snd x))) = 1"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   952
      apply (subst Pxyz[THEN simple_distributed_setsum_space, symmetric])
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   953
      apply simp
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   954
      apply (intro setsum_mono_zero_right)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   955
      apply (auto simp: Pxyz_def)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   956
      done
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   957
    let ?N = "(\<lambda>x. (X x, Y x, Z x)) ` space M"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   958
    fix x assume x: "x \<in> ?M"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   959
    let ?Q = "Pxyz (fst x, fst (snd x), snd (snd x))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   960
    let ?P = "Pxz (fst x, snd (snd x)) * (Pyz (fst (snd x), snd (snd x)) / Pz (snd (snd x)))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   961
    from x show "0 \<le> ?Q" "0 \<le> ?P"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   962
      using Pxyz[THEN simple_distributed, THEN distributed_real_AE]
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   963
      using Pxz[THEN simple_distributed, THEN distributed_real_AE]
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   964
      using Pyz[THEN simple_distributed, THEN distributed_real_AE]
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   965
      using Pz[THEN simple_distributed, THEN distributed_real_AE]
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   966
      by (auto intro!: mult_nonneg_nonneg divide_nonneg_nonneg simp: AE_count_space Pxyz_def Pxz_def Pyz_def Pz_def)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   967
    moreover assume "0 < ?Q"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   968
    moreover have "AE x in count_space ?N. Pz (snd (snd x)) = 0 \<longrightarrow> Pxyz x = 0"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   969
      by (intro subdensity_real[of "\<lambda>x. snd (snd x)", OF _ Pxyz[THEN simple_distributed] Pz[THEN simple_distributed]]) (auto intro: measurable_snd')
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   970
    then have "\<And>x. Pz (snd (snd x)) = 0 \<longrightarrow> Pxyz x = 0"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   971
      by (auto simp: Pz_def Pxyz_def AE_count_space)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   972
    moreover have "AE x in count_space ?N. Pxz (fst x, snd (snd x)) = 0 \<longrightarrow> Pxyz x = 0"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   973
      by (intro subdensity_real[of "\<lambda>x. (fst x, snd (snd x))", OF _ Pxyz[THEN simple_distributed] Pxz[THEN simple_distributed]]) (auto intro: measurable_Pair measurable_snd')
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   974
    then have "\<And>x. Pxz (fst x, snd (snd x)) = 0 \<longrightarrow> Pxyz x = 0"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   975
      by (auto simp: Pz_def Pxyz_def AE_count_space)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   976
    moreover have "AE x in count_space ?N. Pyz (snd x) = 0 \<longrightarrow> Pxyz x = 0"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   977
      by (intro subdensity_real[of snd, OF _ Pxyz[THEN simple_distributed] Pyz[THEN simple_distributed]]) (auto intro: measurable_Pair)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   978
    then have "\<And>x. Pyz (snd x) = 0 \<longrightarrow> Pxyz x = 0"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   979
      by (auto simp: Pz_def Pxyz_def AE_count_space)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   980
    ultimately show "0 < ?P" using x by (auto intro!: divide_pos_pos mult_pos_pos simp: less_le)
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
   981
  qed
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   982
  also have "(\<Sum>(x, y, z) \<in> ?M. Pxz (x, z) * (Pyz (y,z) / Pz z)) = (\<Sum>z\<in>Z`space M. Pz z)"
36624
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
   983
    apply (simp add: setsum_cartesian_product')
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
   984
    apply (subst setsum_commute)
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
   985
    apply (subst (2) setsum_commute)
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   986
    apply (auto simp: setsum_divide_distrib[symmetric] setsum_product[symmetric] marginal1 marginal2
36624
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
   987
          intro!: setsum_cong)
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   988
    done
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   989
  also have "log b (\<Sum>z\<in>Z`space M. Pz z) = 0"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   990
    using Pz[THEN simple_distributed_setsum_space] by simp
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
   991
  finally show ?thesis by simp
36080
0d9affa4e73c Added Information theory and Example: dining cryptographers
hoelzl
parents:
diff changeset
   992
qed
0d9affa4e73c Added Information theory and Example: dining cryptographers
hoelzl
parents:
diff changeset
   993
39097
943c7b348524 Moved lemmas to appropriate locations
hoelzl
parents: 39092
diff changeset
   994
subsection {* Conditional Entropy *}
943c7b348524 Moved lemmas to appropriate locations
hoelzl
parents: 39092
diff changeset
   995
36080
0d9affa4e73c Added Information theory and Example: dining cryptographers
hoelzl
parents:
diff changeset
   996
definition (in prob_space)
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
   997
  "conditional_entropy b S T X Y = entropy b (S \<Otimes>\<^isub>M T) (\<lambda>x. (X x, Y x)) - entropy b T Y"
36080
0d9affa4e73c Added Information theory and Example: dining cryptographers
hoelzl
parents:
diff changeset
   998
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
   999
abbreviation (in information_space)
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
  1000
  conditional_entropy_Pow ("\<H>'(_ | _')") where
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1001
  "\<H>(X | Y) \<equiv> conditional_entropy b (count_space (X`space M)) (count_space (Y`space M)) X Y"
36080
0d9affa4e73c Added Information theory and Example: dining cryptographers
hoelzl
parents:
diff changeset
  1002
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
  1003
lemma (in information_space) conditional_entropy_generic_eq:
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1004
  fixes Px :: "'b \<Rightarrow> real" and Py :: "'c \<Rightarrow> real"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1005
  assumes S: "sigma_finite_measure S" and T: "sigma_finite_measure T"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1006
  assumes Px: "distributed M S X Px"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1007
  assumes Py: "distributed M T Y Py"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1008
  assumes Pxy: "distributed M (S \<Otimes>\<^isub>M T) (\<lambda>x. (X x, Y x)) Pxy"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1009
  assumes I1: "integrable (S \<Otimes>\<^isub>M T) (\<lambda>x. Pxy x * log b (Pxy x))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1010
  assumes I2: "integrable (S \<Otimes>\<^isub>M T) (\<lambda>x. Pxy x * log b (Py (snd x)))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1011
  shows "conditional_entropy b S T X Y = - (\<integral>(x, y). Pxy (x, y) * log b (Pxy (x, y) / Py y) \<partial>(S \<Otimes>\<^isub>M T))"
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
  1012
proof -
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1013
  interpret S: sigma_finite_measure S by fact
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1014
  interpret T: sigma_finite_measure T by fact
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1015
  interpret ST: pair_sigma_finite S T ..
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1016
  have ST: "sigma_finite_measure (S \<Otimes>\<^isub>M T)" ..
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1017
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1018
  interpret Pxy: prob_space "density (S \<Otimes>\<^isub>M T) Pxy"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1019
    unfolding Pxy[THEN distributed_distr_eq_density, symmetric]
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1020
    using Pxy[THEN distributed_measurable] by (rule prob_space_distr)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1021
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1022
  from Py Pxy have distr_eq: "distr M T Y =
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1023
    distr (distr M (S \<Otimes>\<^isub>M T) (\<lambda>x. (X x, Y x))) T snd"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1024
    by (subst distr_distr[OF measurable_snd]) (auto dest: distributed_measurable simp: comp_def)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1025
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1026
  have "entropy b T Y = - (\<integral>y. Py y * log b (Py y) \<partial>T)"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1027
    by (rule entropy_distr[OF T Py])
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1028
  also have "\<dots> = - (\<integral>(x,y). Pxy (x,y) * log b (Py y) \<partial>(S \<Otimes>\<^isub>M T))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1029
    using b_gt_1 Py[THEN distributed_real_measurable]
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1030
    by (subst distributed_transform_integral[OF Pxy Py, where T=snd]) (auto intro!: integral_cong)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1031
  finally have e_eq: "entropy b T Y = - (\<integral>(x,y). Pxy (x,y) * log b (Py y) \<partial>(S \<Otimes>\<^isub>M T))" .
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1032
  
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1033
  have "AE x in S \<Otimes>\<^isub>M T. Px (fst x) = 0 \<longrightarrow> Pxy x = 0"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1034
    by (intro subdensity_real[of fst, OF _ Pxy Px]) (auto intro: measurable_Pair)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1035
  moreover have "AE x in S \<Otimes>\<^isub>M T. Py (snd x) = 0 \<longrightarrow> Pxy x = 0"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1036
    by (intro subdensity_real[of snd, OF _ Pxy Py]) (auto intro: measurable_Pair)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1037
  moreover have "AE x in S \<Otimes>\<^isub>M T. 0 \<le> Px (fst x)"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1038
    using Px by (intro ST.AE_pair_measure) (auto simp: comp_def intro!: measurable_fst'' dest: distributed_real_AE distributed_real_measurable)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1039
  moreover have "AE x in S \<Otimes>\<^isub>M T. 0 \<le> Py (snd x)"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1040
    using Py by (intro ST.AE_pair_measure) (auto simp: comp_def intro!: measurable_snd'' dest: distributed_real_AE distributed_real_measurable)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1041
  moreover note Pxy[THEN distributed_real_AE]
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1042
  ultimately have pos: "AE x in S \<Otimes>\<^isub>M T. 0 \<le> Pxy x \<and> 0 \<le> Px (fst x) \<and> 0 \<le> Py (snd x) \<and>
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1043
    (Pxy x = 0 \<or> (Pxy x \<noteq> 0 \<longrightarrow> 0 < Pxy x \<and> 0 < Px (fst x) \<and> 0 < Py (snd x)))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1044
    by eventually_elim auto
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1045
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1046
  from pos have "AE x in S \<Otimes>\<^isub>M T.
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1047
     Pxy x * log b (Pxy x) - Pxy x * log b (Py (snd x)) = Pxy x * log b (Pxy x / Py (snd x))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1048
    by eventually_elim (auto simp: log_simps mult_pos_pos field_simps b_gt_1)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1049
  with I1 I2 show ?thesis
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
  1050
    unfolding conditional_entropy_def
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1051
    apply (subst e_eq)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1052
    apply (subst entropy_distr[OF ST Pxy])
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1053
    unfolding minus_diff_minus
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1054
    apply (subst integral_diff(2)[symmetric])
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1055
    apply (auto intro!: integral_cong_AE simp: split_beta' simp del: integral_diff)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1056
    done
39097
943c7b348524 Moved lemmas to appropriate locations
hoelzl
parents: 39092
diff changeset
  1057
qed
943c7b348524 Moved lemmas to appropriate locations
hoelzl
parents: 39092
diff changeset
  1058
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
  1059
lemma (in information_space) conditional_entropy_eq:
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1060
  assumes Y: "simple_distributed M Y Py" and X: "simple_function M X"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1061
  assumes XY: "simple_distributed M (\<lambda>x. (X x, Y x)) Pxy"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1062
    shows "\<H>(X | Y) = - (\<Sum>(x, y)\<in>(\<lambda>x. (X x, Y x)) ` space M. Pxy (x, y) * log b (Pxy (x, y) / Py y))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1063
proof (subst conditional_entropy_generic_eq[OF _ _
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1064
  simple_distributed[OF simple_distributedI[OF X refl]] simple_distributed[OF Y] simple_distributed_joint[OF XY]])
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1065
  have [simp]: "finite (X`space M)" using X by (simp add: simple_function_def)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1066
  note Y[THEN simple_distributed_finite, simp]
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1067
  show "sigma_finite_measure (count_space (X ` space M))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1068
    by (simp add: sigma_finite_measure_count_space_finite)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1069
  show "sigma_finite_measure (count_space (Y ` space M))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1070
    by (simp add: sigma_finite_measure_count_space_finite)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1071
  let ?f = "(\<lambda>x. if x \<in> (\<lambda>x. (X x, Y x)) ` space M then Pxy x else 0)"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1072
  have "count_space (X ` space M) \<Otimes>\<^isub>M count_space (Y ` space M) = count_space (X`space M \<times> Y`space M)"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1073
    (is "?P = ?C")
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1074
    using X Y by (simp add: simple_distributed_finite pair_measure_count_space)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1075
  with X Y show
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1076
      "integrable ?P (\<lambda>x. ?f x * log b (?f x))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1077
      "integrable ?P (\<lambda>x. ?f x * log b (Py (snd x)))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1078
    by (auto intro!: integrable_count_space simp: simple_distributed_finite)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1079
  have eq: "(\<lambda>(x, y). ?f (x, y) * log b (?f (x, y) / Py y)) =
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1080
    (\<lambda>x. if x \<in> (\<lambda>x. (X x, Y x)) ` space M then Pxy x * log b (Pxy x / Py (snd x)) else 0)"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1081
    by auto
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1082
  from X Y show "- (\<integral> (x, y). ?f (x, y) * log b (?f (x, y) / Py y) \<partial>?P) =
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1083
    - (\<Sum>(x, y)\<in>(\<lambda>x. (X x, Y x)) ` space M. Pxy (x, y) * log b (Pxy (x, y) / Py y))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1084
    by (auto intro!: setsum_cong simp add: `?P = ?C` lebesgue_integral_count_space_finite simple_distributed_finite eq setsum_cases split_beta')
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1085
qed
39097
943c7b348524 Moved lemmas to appropriate locations
hoelzl
parents: 39092
diff changeset
  1086
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1087
lemma (in information_space) conditional_mutual_information_eq_conditional_entropy:
41689
3e39b0e730d6 the measure valuation is again part of the measure_space type, instead of an explicit parameter to the locale;
hoelzl
parents: 41661
diff changeset
  1088
  assumes X: "simple_function M X" and Y: "simple_function M Y"
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1089
  shows "\<I>(X ; X | Y) = \<H>(X | Y)"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1090
proof -
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1091
  def Py \<equiv> "\<lambda>x. if x \<in> Y`space M then measure M (Y -` {x} \<inter> space M) else 0"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1092
  def Pxy \<equiv> "\<lambda>x. if x \<in> (\<lambda>x. (X x, Y x))`space M then measure M ((\<lambda>x. (X x, Y x)) -` {x} \<inter> space M) else 0"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1093
  def Pxxy \<equiv> "\<lambda>x. if x \<in> (\<lambda>x. (X x, X x, Y x))`space M then measure M ((\<lambda>x. (X x, X x, Y x)) -` {x} \<inter> space M) else 0"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1094
  let ?M = "X`space M \<times> X`space M \<times> Y`space M"
39097
943c7b348524 Moved lemmas to appropriate locations
hoelzl
parents: 39092
diff changeset
  1095
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1096
  note XY = simple_function_Pair[OF X Y]
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1097
  note XXY = simple_function_Pair[OF X XY]
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1098
  have Py: "simple_distributed M Y Py"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1099
    using Y by (rule simple_distributedI) (auto simp: Py_def)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1100
  have Pxy: "simple_distributed M (\<lambda>x. (X x, Y x)) Pxy"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1101
    using XY by (rule simple_distributedI) (auto simp: Pxy_def)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1102
  have Pxxy: "simple_distributed M (\<lambda>x. (X x, X x, Y x)) Pxxy"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1103
    using XXY by (rule simple_distributedI) (auto simp: Pxxy_def)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1104
  have eq: "(\<lambda>x. (X x, X x, Y x)) ` space M = (\<lambda>(x, y). (x, x, y)) ` (\<lambda>x. (X x, Y x)) ` space M"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1105
    by auto
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1106
  have inj: "\<And>A. inj_on (\<lambda>(x, y). (x, x, y)) A"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1107
    by (auto simp: inj_on_def)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1108
  have Pxxy_eq: "\<And>x y. Pxxy (x, x, y) = Pxy (x, y)"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1109
    by (auto simp: Pxxy_def Pxy_def intro!: arg_cong[where f=prob])
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1110
  have "AE x in count_space ((\<lambda>x. (X x, Y x))`space M). Py (snd x) = 0 \<longrightarrow> Pxy x = 0"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1111
    by (intro subdensity_real[of snd, OF _ Pxy[THEN simple_distributed] Py[THEN simple_distributed]]) (auto intro: measurable_Pair)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1112
  then show ?thesis
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1113
    apply (subst conditional_mutual_information_eq[OF Py Pxy Pxy Pxxy])
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1114
    apply (subst conditional_entropy_eq[OF Py X Pxy])
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1115
    apply (auto intro!: setsum_cong simp: Pxxy_eq setsum_negf[symmetric] eq setsum_reindex[OF inj]
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1116
                log_simps zero_less_mult_iff zero_le_mult_iff field_simps mult_less_0_iff AE_count_space)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1117
    using Py[THEN simple_distributed, THEN distributed_real_AE] Pxy[THEN simple_distributed, THEN distributed_real_AE]
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1118
    apply (auto simp add: not_le[symmetric] AE_count_space)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1119
    done
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1120
qed
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1121
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1122
lemma (in information_space) conditional_entropy_nonneg:
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1123
  assumes X: "simple_function M X" and Y: "simple_function M Y" shows "0 \<le> \<H>(X | Y)"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1124
  using conditional_mutual_information_eq_conditional_entropy[OF X Y] conditional_mutual_information_nonneg[OF X X Y]
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1125
  by simp
36080
0d9affa4e73c Added Information theory and Example: dining cryptographers
hoelzl
parents:
diff changeset
  1126
39097
943c7b348524 Moved lemmas to appropriate locations
hoelzl
parents: 39092
diff changeset
  1127
subsection {* Equalities *}
943c7b348524 Moved lemmas to appropriate locations
hoelzl
parents: 39092
diff changeset
  1128
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1129
lemma (in information_space) mutual_information_eq_entropy_conditional_entropy_distr:
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1130
  fixes Px :: "'b \<Rightarrow> real" and Py :: "'c \<Rightarrow> real" and Pxy :: "('b \<times> 'c) \<Rightarrow> real"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1131
  assumes S: "sigma_finite_measure S" and T: "sigma_finite_measure T"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1132
  assumes Px: "distributed M S X Px" and Py: "distributed M T Y Py"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1133
  assumes Pxy: "distributed M (S \<Otimes>\<^isub>M T) (\<lambda>x. (X x, Y x)) Pxy"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1134
  assumes Ix: "integrable(S \<Otimes>\<^isub>M T) (\<lambda>x. Pxy x * log b (Px (fst x)))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1135
  assumes Iy: "integrable(S \<Otimes>\<^isub>M T) (\<lambda>x. Pxy x * log b (Py (snd x)))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1136
  assumes Ixy: "integrable(S \<Otimes>\<^isub>M T) (\<lambda>x. Pxy x * log b (Pxy x))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1137
  shows  "mutual_information b S T X Y = entropy b S X + entropy b T Y - entropy b (S \<Otimes>\<^isub>M T) (\<lambda>x. (X x, Y x))"
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
  1138
proof -
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1139
  have X: "entropy b S X = - (\<integral>x. Pxy x * log b (Px (fst x)) \<partial>(S \<Otimes>\<^isub>M T))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1140
    using b_gt_1 Px[THEN distributed_real_measurable]
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1141
    apply (subst entropy_distr[OF S Px])
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1142
    apply (subst distributed_transform_integral[OF Pxy Px, where T=fst])
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1143
    apply (auto intro!: integral_cong)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1144
    done
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1145
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1146
  have Y: "entropy b T Y = - (\<integral>x. Pxy x * log b (Py (snd x)) \<partial>(S \<Otimes>\<^isub>M T))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1147
    using b_gt_1 Py[THEN distributed_real_measurable]
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1148
    apply (subst entropy_distr[OF T Py])
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1149
    apply (subst distributed_transform_integral[OF Pxy Py, where T=snd])
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1150
    apply (auto intro!: integral_cong)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1151
    done
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1152
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1153
  interpret S: sigma_finite_measure S by fact
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1154
  interpret T: sigma_finite_measure T by fact
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1155
  interpret ST: pair_sigma_finite S T ..
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1156
  have ST: "sigma_finite_measure (S \<Otimes>\<^isub>M T)" ..
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1157
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1158
  have XY: "entropy b (S \<Otimes>\<^isub>M T) (\<lambda>x. (X x, Y x)) = - (\<integral>x. Pxy x * log b (Pxy x) \<partial>(S \<Otimes>\<^isub>M T))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1159
    by (subst entropy_distr[OF ST Pxy]) (auto intro!: integral_cong)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1160
  
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1161
  have "AE x in S \<Otimes>\<^isub>M T. Px (fst x) = 0 \<longrightarrow> Pxy x = 0"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1162
    by (intro subdensity_real[of fst, OF _ Pxy Px]) (auto intro: measurable_Pair)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1163
  moreover have "AE x in S \<Otimes>\<^isub>M T. Py (snd x) = 0 \<longrightarrow> Pxy x = 0"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1164
    by (intro subdensity_real[of snd, OF _ Pxy Py]) (auto intro: measurable_Pair)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1165
  moreover have "AE x in S \<Otimes>\<^isub>M T. 0 \<le> Px (fst x)"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1166
    using Px by (intro ST.AE_pair_measure) (auto simp: comp_def intro!: measurable_fst'' dest: distributed_real_AE distributed_real_measurable)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1167
  moreover have "AE x in S \<Otimes>\<^isub>M T. 0 \<le> Py (snd x)"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1168
    using Py by (intro ST.AE_pair_measure) (auto simp: comp_def intro!: measurable_snd'' dest: distributed_real_AE distributed_real_measurable)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1169
  moreover note Pxy[THEN distributed_real_AE]
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1170
  ultimately have "AE x in S \<Otimes>\<^isub>M T. Pxy x * log b (Pxy x) - Pxy x * log b (Px (fst x)) - Pxy x * log b (Py (snd x)) = 
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1171
    Pxy x * log b (Pxy x / (Px (fst x) * Py (snd x)))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1172
    (is "AE x in _. ?f x = ?g x")
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1173
  proof eventually_elim
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1174
    case (goal1 x)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1175
    show ?case
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1176
    proof cases
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1177
      assume "Pxy x \<noteq> 0"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1178
      with goal1 have "0 < Px (fst x)" "0 < Py (snd x)" "0 < Pxy x"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1179
        by auto
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1180
      then show ?thesis
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1181
        using b_gt_1 by (simp add: log_simps mult_pos_pos less_imp_le field_simps)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1182
    qed simp
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1183
  qed
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1184
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1185
  have "entropy b S X + entropy b T Y - entropy b (S \<Otimes>\<^isub>M T) (\<lambda>x. (X x, Y x)) = integral\<^isup>L (S \<Otimes>\<^isub>M T) ?f"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1186
    unfolding X Y XY
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1187
    apply (subst integral_diff)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1188
    apply (intro integral_diff Ixy Ix Iy)+
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1189
    apply (subst integral_diff)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1190
    apply (intro integral_diff Ixy Ix Iy)+
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1191
    apply (simp add: field_simps)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1192
    done
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1193
  also have "\<dots> = integral\<^isup>L (S \<Otimes>\<^isub>M T) ?g"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1194
    using `AE x in _. ?f x = ?g x` by (rule integral_cong_AE)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1195
  also have "\<dots> = mutual_information b S T X Y"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1196
    by (rule mutual_information_distr[OF S T Px Py Pxy, symmetric])
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1197
  finally show ?thesis ..
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1198
qed
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1199
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1200
lemma (in information_space) mutual_information_eq_entropy_conditional_entropy:
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1201
  assumes sf_X: "simple_function M X" and sf_Y: "simple_function M Y"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1202
  shows  "\<I>(X ; Y) = \<H>(X) - \<H>(X | Y)"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1203
proof -
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1204
  have X: "simple_distributed M X (\<lambda>x. measure M (X -` {x} \<inter> space M))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1205
    using sf_X by (rule simple_distributedI) auto
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1206
  have Y: "simple_distributed M Y (\<lambda>x. measure M (Y -` {x} \<inter> space M))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1207
    using sf_Y by (rule simple_distributedI) auto
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1208
  have sf_XY: "simple_function M (\<lambda>x. (X x, Y x))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1209
    using sf_X sf_Y by (rule simple_function_Pair)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1210
  then have XY: "simple_distributed M (\<lambda>x. (X x, Y x)) (\<lambda>x. measure M ((\<lambda>x. (X x, Y x)) -` {x} \<inter> space M))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1211
    by (rule simple_distributedI) auto
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1212
  from simple_distributed_joint_finite[OF this, simp]
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1213
  have eq: "count_space (X ` space M) \<Otimes>\<^isub>M count_space (Y ` space M) = count_space (X ` space M \<times> Y ` space M)"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1214
    by (simp add: pair_measure_count_space)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1215
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1216
  have "\<I>(X ; Y) = \<H>(X) + \<H>(Y) - entropy b (count_space (X`space M) \<Otimes>\<^isub>M count_space (Y`space M)) (\<lambda>x. (X x, Y x))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1217
    using sigma_finite_measure_count_space_finite sigma_finite_measure_count_space_finite simple_distributed[OF X] simple_distributed[OF Y] simple_distributed_joint[OF XY]
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1218
    by (rule mutual_information_eq_entropy_conditional_entropy_distr) (auto simp: eq integrable_count_space)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1219
  then show ?thesis
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1220
    unfolding conditional_entropy_def by simp
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1221
qed
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1222
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1223
lemma (in information_space) mutual_information_nonneg_simple:
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1224
  assumes sf_X: "simple_function M X" and sf_Y: "simple_function M Y"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1225
  shows  "0 \<le> \<I>(X ; Y)"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1226
proof -
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1227
  have X: "simple_distributed M X (\<lambda>x. measure M (X -` {x} \<inter> space M))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1228
    using sf_X by (rule simple_distributedI) auto
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1229
  have Y: "simple_distributed M Y (\<lambda>x. measure M (Y -` {x} \<inter> space M))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1230
    using sf_Y by (rule simple_distributedI) auto
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1231
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1232
  have sf_XY: "simple_function M (\<lambda>x. (X x, Y x))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1233
    using sf_X sf_Y by (rule simple_function_Pair)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1234
  then have XY: "simple_distributed M (\<lambda>x. (X x, Y x)) (\<lambda>x. measure M ((\<lambda>x. (X x, Y x)) -` {x} \<inter> space M))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1235
    by (rule simple_distributedI) auto
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1236
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1237
  from simple_distributed_joint_finite[OF this, simp]
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1238
  have eq: "count_space (X ` space M) \<Otimes>\<^isub>M count_space (Y ` space M) = count_space (X ` space M \<times> Y ` space M)"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1239
    by (simp add: pair_measure_count_space)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1240
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
  1241
  show ?thesis
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1242
    by (rule mutual_information_nonneg[OF _ _ simple_distributed[OF X] simple_distributed[OF Y] simple_distributed_joint[OF XY]])
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1243
       (simp_all add: eq integrable_count_space sigma_finite_measure_count_space_finite)
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
  1244
qed
36080
0d9affa4e73c Added Information theory and Example: dining cryptographers
hoelzl
parents:
diff changeset
  1245
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
  1246
lemma (in information_space) conditional_entropy_less_eq_entropy:
41689
3e39b0e730d6 the measure valuation is again part of the measure_space type, instead of an explicit parameter to the locale;
hoelzl
parents: 41661
diff changeset
  1247
  assumes X: "simple_function M X" and Z: "simple_function M Z"
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
  1248
  shows "\<H>(X | Z) \<le> \<H>(X)"
36624
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
  1249
proof -
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1250
  have "0 \<le> \<I>(X ; Z)" using X Z by (rule mutual_information_nonneg_simple)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1251
  also have "\<I>(X ; Z) = \<H>(X) - \<H>(X | Z)" using mutual_information_eq_entropy_conditional_entropy[OF assms] .
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1252
  finally show ?thesis by auto
36080
0d9affa4e73c Added Information theory and Example: dining cryptographers
hoelzl
parents:
diff changeset
  1253
qed
0d9affa4e73c Added Information theory and Example: dining cryptographers
hoelzl
parents:
diff changeset
  1254
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
  1255
lemma (in information_space) entropy_chain_rule:
41689
3e39b0e730d6 the measure valuation is again part of the measure_space type, instead of an explicit parameter to the locale;
hoelzl
parents: 41661
diff changeset
  1256
  assumes X: "simple_function M X" and Y: "simple_function M Y"
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
  1257
  shows  "\<H>(\<lambda>x. (X x, Y x)) = \<H>(X) + \<H>(Y|X)"
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
  1258
proof -
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1259
  note XY = simple_distributedI[OF simple_function_Pair[OF X Y] refl]
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1260
  note YX = simple_distributedI[OF simple_function_Pair[OF Y X] refl]
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1261
  note simple_distributed_joint_finite[OF this, simp]
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1262
  let ?f = "\<lambda>x. prob ((\<lambda>x. (X x, Y x)) -` {x} \<inter> space M)"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1263
  let ?g = "\<lambda>x. prob ((\<lambda>x. (Y x, X x)) -` {x} \<inter> space M)"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1264
  let ?h = "\<lambda>x. if x \<in> (\<lambda>x. (Y x, X x)) ` space M then prob ((\<lambda>x. (Y x, X x)) -` {x} \<inter> space M) else 0"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1265
  have "\<H>(\<lambda>x. (X x, Y x)) = - (\<Sum>x\<in>(\<lambda>x. (X x, Y x)) ` space M. ?f x * log b (?f x))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1266
    using XY by (rule entropy_simple_distributed)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1267
  also have "\<dots> = - (\<Sum>x\<in>(\<lambda>(x, y). (y, x)) ` (\<lambda>x. (X x, Y x)) ` space M. ?g x * log b (?g x))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1268
    by (subst (2) setsum_reindex) (auto simp: inj_on_def intro!: setsum_cong arg_cong[where f="\<lambda>A. prob A * log b (prob A)"])
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1269
  also have "\<dots> = - (\<Sum>x\<in>(\<lambda>x. (Y x, X x)) ` space M. ?h x * log b (?h x))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1270
    by (auto intro!: setsum_cong)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1271
  also have "\<dots> = entropy b (count_space (Y ` space M) \<Otimes>\<^isub>M count_space (X ` space M)) (\<lambda>x. (Y x, X x))"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1272
    by (subst entropy_distr[OF _ simple_distributed_joint[OF YX]])
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1273
       (auto simp: pair_measure_count_space sigma_finite_measure_count_space_finite lebesgue_integral_count_space_finite
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1274
             cong del: setsum_cong  intro!: setsum_mono_zero_left)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1275
  finally have "\<H>(\<lambda>x. (X x, Y x)) = entropy b (count_space (Y ` space M) \<Otimes>\<^isub>M count_space (X ` space M)) (\<lambda>x. (Y x, X x))" .
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1276
  then show ?thesis
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1277
    unfolding conditional_entropy_def by simp
36624
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
  1278
qed
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
  1279
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
  1280
lemma (in information_space) entropy_partition:
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1281
  assumes X: "simple_function M X"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1282
  shows "\<H>(X) = \<H>(f \<circ> X) + \<H>(X|f \<circ> X)"
36624
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
  1283
proof -
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1284
  note fX = simple_function_compose[OF X, of f]  
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1285
  have eq: "(\<lambda>x. ((f \<circ> X) x, X x)) ` space M = (\<lambda>x. (f x, x)) ` X ` space M" by auto
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1286
  have inj: "\<And>A. inj_on (\<lambda>x. (f x, x)) A"
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1287
    by (auto simp: inj_on_def)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1288
  show ?thesis
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1289
    apply (subst entropy_chain_rule[symmetric, OF fX X])
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1290
    apply (subst entropy_simple_distributed[OF simple_distributedI[OF simple_function_Pair[OF fX X] refl]])
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1291
    apply (subst entropy_simple_distributed[OF simple_distributedI[OF X refl]])
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1292
    unfolding eq
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1293
    apply (subst setsum_reindex[OF inj])
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1294
    apply (auto intro!: setsum_cong arg_cong[where f="\<lambda>A. prob A * log b (prob A)"])
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1295
    done
36624
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
  1296
qed
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
  1297
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
  1298
corollary (in information_space) entropy_data_processing:
41689
3e39b0e730d6 the measure valuation is again part of the measure_space type, instead of an explicit parameter to the locale;
hoelzl
parents: 41661
diff changeset
  1299
  assumes X: "simple_function M X" shows "\<H>(f \<circ> X) \<le> \<H>(X)"
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
  1300
proof -
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1301
  note fX = simple_function_compose[OF X, of f]
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1302
  from X have "\<H>(X) = \<H>(f\<circ>X) + \<H>(X|f\<circ>X)" by (rule entropy_partition)
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
  1303
  then show "\<H>(f \<circ> X) \<le> \<H>(X)"
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1304
    by (auto intro: conditional_entropy_nonneg[OF X fX])
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
  1305
qed
36624
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
  1306
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
  1307
corollary (in information_space) entropy_of_inj:
41689
3e39b0e730d6 the measure valuation is again part of the measure_space type, instead of an explicit parameter to the locale;
hoelzl
parents: 41661
diff changeset
  1308
  assumes X: "simple_function M X" and inj: "inj_on f (X`space M)"
36624
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
  1309
  shows "\<H>(f \<circ> X) = \<H>(X)"
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
  1310
proof (rule antisym)
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
  1311
  show "\<H>(f \<circ> X) \<le> \<H>(X)" using entropy_data_processing[OF X] .
36624
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
  1312
next
41689
3e39b0e730d6 the measure valuation is again part of the measure_space type, instead of an explicit parameter to the locale;
hoelzl
parents: 41661
diff changeset
  1313
  have sf: "simple_function M (f \<circ> X)"
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
  1314
    using X by auto
36624
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
  1315
  have "\<H>(X) = \<H>(the_inv_into (X`space M) f \<circ> (f \<circ> X))"
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1316
    unfolding o_assoc
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1317
    apply (subst entropy_simple_distributed[OF simple_distributedI[OF X refl]])
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1318
    apply (subst entropy_simple_distributed[OF simple_distributedI[OF simple_function_compose[OF X]], where f="\<lambda>x. prob (X -` {x} \<inter> space M)"])
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1319
    apply (auto intro!: setsum_cong arg_cong[where f=prob] image_eqI simp: the_inv_into_f_f[OF inj] comp_def)
05663f75964c reworked Probability theory
hoelzl
parents: 46905
diff changeset
  1320
    done
36624
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
  1321
  also have "... \<le> \<H>(f \<circ> X)"
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39302
diff changeset
  1322
    using entropy_data_processing[OF sf] .
36624
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
  1323
  finally show "\<H>(X) \<le> \<H>(f \<circ> X)" .
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
  1324
qed
25153c08655e Cleanup information theory
hoelzl
parents: 36623
diff changeset
  1325
36080
0d9affa4e73c Added Information theory and Example: dining cryptographers
hoelzl
parents:
diff changeset
  1326
end