src/HOL/Probability/SPMF.thy
author wenzelm
Thu, 24 Dec 2020 00:07:51 +0100
changeset 72996 cdcd2785db94
parent 70381 b151d1f00204
child 77434 da41823d09a7
permissions -rw-r--r--
more NEWS;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
     1
(* Author: Andreas Lochbihler, ETH Zurich *)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
     2
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
     3
section \<open>Discrete subprobability distribution\<close>
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
     4
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
     5
theory SPMF imports
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
     6
  Probability_Mass_Function
66453
cc19f7ca2ed6 session-qualified theory imports: isabelle imports -U -i -d '~~/src/Benchmarks' -a;
wenzelm
parents: 64634
diff changeset
     7
  "HOL-Library.Complete_Partial_Order2"
cc19f7ca2ed6 session-qualified theory imports: isabelle imports -U -i -d '~~/src/Benchmarks' -a;
wenzelm
parents: 64634
diff changeset
     8
  "HOL-Library.Rewrite"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
     9
begin
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    10
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    11
subsection \<open>Auxiliary material\<close>
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    12
69260
0a9688695a1b removed relics of ASCII syntax for indexed big operators
haftmann
parents: 67399
diff changeset
    13
lemma cSUP_singleton [simp]: "(SUP x\<in>{x}. f x :: _ :: conditionally_complete_lattice) = f x"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    14
by (metis cSup_singleton image_empty image_insert)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    15
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    16
subsubsection \<open>More about extended reals\<close>
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    17
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    18
lemma [simp]:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    19
  shows ennreal_max_0: "ennreal (max 0 x) = ennreal x"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    20
  and ennreal_max_0': "ennreal (max x 0) = ennreal x"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    21
by(simp_all add: max_def ennreal_eq_0_iff)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    22
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    23
lemma e2ennreal_0 [simp]: "e2ennreal 0 = 0"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    24
by(simp add: zero_ennreal_def)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    25
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    26
lemma enn2real_bot [simp]: "enn2real \<bottom> = 0"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    27
by(simp add: bot_ennreal_def)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    28
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    29
lemma continuous_at_ennreal[continuous_intros]: "continuous F f \<Longrightarrow> continuous F (\<lambda>x. ennreal (f x))"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    30
  unfolding continuous_def by auto
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    31
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    32
lemma ennreal_Sup:
69260
0a9688695a1b removed relics of ASCII syntax for indexed big operators
haftmann
parents: 67399
diff changeset
    33
  assumes *: "(SUP a\<in>A. ennreal a) \<noteq> \<top>"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    34
  and "A \<noteq> {}"
69260
0a9688695a1b removed relics of ASCII syntax for indexed big operators
haftmann
parents: 67399
diff changeset
    35
  shows "ennreal (Sup A) = (SUP a\<in>A. ennreal a)"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    36
proof (rule continuous_at_Sup_mono)
69260
0a9688695a1b removed relics of ASCII syntax for indexed big operators
haftmann
parents: 67399
diff changeset
    37
  obtain r where r: "ennreal r = (SUP a\<in>A. ennreal a)" "r \<ge> 0"
0a9688695a1b removed relics of ASCII syntax for indexed big operators
haftmann
parents: 67399
diff changeset
    38
    using * by(cases "(SUP a\<in>A. ennreal a)") simp_all
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    39
  then show "bdd_above A"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    40
    by(auto intro!: SUP_upper bdd_aboveI[of _ r] simp add: ennreal_le_iff[symmetric])
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    41
qed (auto simp: mono_def continuous_at_imp_continuous_at_within continuous_at_ennreal ennreal_leI assms)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    42
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    43
lemma ennreal_SUP:
69260
0a9688695a1b removed relics of ASCII syntax for indexed big operators
haftmann
parents: 67399
diff changeset
    44
  "\<lbrakk> (SUP a\<in>A. ennreal (f a)) \<noteq> \<top>; A \<noteq> {} \<rbrakk> \<Longrightarrow> ennreal (SUP a\<in>A. f a) = (SUP a\<in>A. ennreal (f a))"
69861
62e47f06d22c avoid context-sensitive simp rules whose context-free form (image_comp) is not simp by default
haftmann
parents: 69661
diff changeset
    45
using ennreal_Sup[of "f ` A"] by (auto simp add: image_comp)
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    46
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    47
lemma ennreal_lt_0: "x < 0 \<Longrightarrow> ennreal x = 0"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    48
by(simp add: ennreal_eq_0_iff)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    49
69597
ff784d5a5bfb isabelle update -u control_cartouches;
wenzelm
parents: 69260
diff changeset
    50
subsubsection \<open>More about \<^typ>\<open>'a option\<close>\<close>
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    51
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    52
lemma None_in_map_option_image [simp]: "None \<in> map_option f ` A \<longleftrightarrow> None \<in> A"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    53
by auto
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    54
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    55
lemma Some_in_map_option_image [simp]: "Some x \<in> map_option f ` A \<longleftrightarrow> (\<exists>y. x = f y \<and> Some y \<in> A)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    56
by(auto intro: rev_image_eqI dest: sym)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    57
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    58
lemma case_option_collapse: "case_option x (\<lambda>_. x) = (\<lambda>_. x)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    59
by(simp add: fun_eq_iff split: option.split)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    60
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    61
lemma case_option_id: "case_option None Some = id"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    62
by(rule ext)(simp split: option.split)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    63
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    64
inductive ord_option :: "('a \<Rightarrow> 'b \<Rightarrow> bool) \<Rightarrow> 'a option \<Rightarrow> 'b option \<Rightarrow> bool"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    65
  for ord :: "'a \<Rightarrow> 'b \<Rightarrow> bool"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    66
where
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    67
  None: "ord_option ord None x"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    68
| Some: "ord x y \<Longrightarrow> ord_option ord (Some x) (Some y)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    69
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    70
inductive_simps ord_option_simps [simp]:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    71
  "ord_option ord None x"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    72
  "ord_option ord x None"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    73
  "ord_option ord (Some x) (Some y)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    74
  "ord_option ord (Some x) None"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    75
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    76
inductive_simps ord_option_eq_simps [simp]:
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
    77
  "ord_option (=) None y"
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
    78
  "ord_option (=) (Some x) y"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    79
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    80
lemma ord_option_reflI: "(\<And>y. y \<in> set_option x \<Longrightarrow> ord y y) \<Longrightarrow> ord_option ord x x"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    81
by(cases x) simp_all
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    82
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    83
lemma reflp_ord_option: "reflp ord \<Longrightarrow> reflp (ord_option ord)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    84
by(simp add: reflp_def ord_option_reflI)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    85
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    86
lemma ord_option_trans:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    87
  "\<lbrakk> ord_option ord x y; ord_option ord y z;
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    88
    \<And>a b c. \<lbrakk> a \<in> set_option x; b \<in> set_option y; c \<in> set_option z; ord a b; ord b c \<rbrakk> \<Longrightarrow> ord a c \<rbrakk>
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    89
  \<Longrightarrow> ord_option ord x z"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    90
by(auto elim!: ord_option.cases)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    91
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    92
lemma transp_ord_option: "transp ord \<Longrightarrow> transp (ord_option ord)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    93
unfolding transp_def by(blast intro: ord_option_trans)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    94
64634
5bd30359e46e proper logical constants
haftmann
parents: 64267
diff changeset
    95
lemma antisymp_ord_option: "antisymp ord \<Longrightarrow> antisymp (ord_option ord)"
5bd30359e46e proper logical constants
haftmann
parents: 64267
diff changeset
    96
by(auto intro!: antisympI elim!: ord_option.cases dest: antisympD)
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    97
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    98
lemma ord_option_chainD:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
    99
  "Complete_Partial_Order.chain (ord_option ord) Y
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   100
  \<Longrightarrow> Complete_Partial_Order.chain ord {x. Some x \<in> Y}"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   101
by(rule chainI)(auto dest: chainD)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   102
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   103
definition lub_option :: "('a set \<Rightarrow> 'b) \<Rightarrow> 'a option set \<Rightarrow> 'b option"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   104
where "lub_option lub Y = (if Y \<subseteq> {None} then None else Some (lub {x. Some x \<in> Y}))"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   105
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   106
lemma map_lub_option: "map_option f (lub_option lub Y) = lub_option (f \<circ> lub) Y"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   107
by(simp add: lub_option_def)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   108
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   109
lemma lub_option_upper:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   110
  assumes "Complete_Partial_Order.chain (ord_option ord) Y" "x \<in> Y"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   111
  and lub_upper: "\<And>Y x. \<lbrakk> Complete_Partial_Order.chain ord Y; x \<in> Y \<rbrakk> \<Longrightarrow> ord x (lub Y)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   112
  shows "ord_option ord x (lub_option lub Y)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   113
using assms(1-2)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   114
by(cases x)(auto simp add: lub_option_def intro: lub_upper[OF ord_option_chainD])
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   115
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   116
lemma lub_option_least:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   117
  assumes Y: "Complete_Partial_Order.chain (ord_option ord) Y"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   118
  and upper: "\<And>x. x \<in> Y \<Longrightarrow> ord_option ord x y"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   119
  assumes lub_least: "\<And>Y y. \<lbrakk> Complete_Partial_Order.chain ord Y; \<And>x. x \<in> Y \<Longrightarrow> ord x y \<rbrakk> \<Longrightarrow> ord (lub Y) y"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   120
  shows "ord_option ord (lub_option lub Y) y"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   121
using Y
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   122
by(cases y)(auto 4 3 simp add: lub_option_def intro: lub_least[OF ord_option_chainD] dest: upper)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   123
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
   124
lemma lub_map_option: "lub_option lub (map_option f ` Y) = lub_option (lub \<circ> (`) f) Y"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   125
apply(auto simp add: lub_option_def)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   126
apply(erule notE)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   127
apply(rule arg_cong[where f=lub])
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   128
apply(auto intro: rev_image_eqI dest: sym)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   129
done
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   130
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   131
lemma ord_option_mono: "\<lbrakk> ord_option A x y; \<And>x y. A x y \<Longrightarrow> B x y \<rbrakk> \<Longrightarrow> ord_option B x y"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   132
by(auto elim: ord_option.cases)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   133
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   134
lemma ord_option_mono' [mono]:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   135
  "(\<And>x y. A x y \<longrightarrow> B x y) \<Longrightarrow> ord_option A x y \<longrightarrow> ord_option B x y"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   136
by(blast intro: ord_option_mono)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   137
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   138
lemma ord_option_compp: "ord_option (A OO B) = ord_option A OO ord_option B"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   139
by(auto simp add: fun_eq_iff elim!: ord_option.cases intro: ord_option.intros)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   140
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   141
lemma ord_option_inf: "inf (ord_option A) (ord_option B) = ord_option (inf A B)" (is "?lhs = ?rhs")
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   142
proof(rule antisym)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   143
  show "?lhs \<le> ?rhs" by(auto elim!: ord_option.cases)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   144
qed(auto elim: ord_option_mono)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   145
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   146
lemma ord_option_map2: "ord_option ord x (map_option f y) = ord_option (\<lambda>x y. ord x (f y)) x y"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   147
by(auto elim: ord_option.cases)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   148
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   149
lemma ord_option_map1: "ord_option ord (map_option f x) y = ord_option (\<lambda>x y. ord (f x) y) x y"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   150
by(auto elim: ord_option.cases)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   151
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   152
lemma option_ord_Some1_iff: "option_ord (Some x) y \<longleftrightarrow> y = Some x"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   153
by(auto simp add: flat_ord_def)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   154
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   155
subsubsection \<open>A relator for sets that treats sets like predicates\<close>
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   156
63343
fb5d8a50c641 bundle lifting_syntax;
wenzelm
parents: 63333
diff changeset
   157
context includes lifting_syntax
fb5d8a50c641 bundle lifting_syntax;
wenzelm
parents: 63333
diff changeset
   158
begin
fb5d8a50c641 bundle lifting_syntax;
wenzelm
parents: 63333
diff changeset
   159
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   160
definition rel_pred :: "('a \<Rightarrow> 'b \<Rightarrow> bool) \<Rightarrow> 'a set \<Rightarrow> 'b set \<Rightarrow> bool"
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
   161
where "rel_pred R A B = (R ===> (=)) (\<lambda>x. x \<in> A) (\<lambda>y. y \<in> B)"
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
   162
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
   163
lemma rel_predI: "(R ===> (=)) (\<lambda>x. x \<in> A) (\<lambda>y. y \<in> B) \<Longrightarrow> rel_pred R A B"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   164
by(simp add: rel_pred_def)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   165
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   166
lemma rel_predD: "\<lbrakk> rel_pred R A B; R x y \<rbrakk> \<Longrightarrow> x \<in> A \<longleftrightarrow> y \<in> B"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   167
by(simp add: rel_pred_def rel_fun_def)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   168
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
   169
lemma Collect_parametric: "((A ===> (=)) ===> rel_pred A) Collect Collect"
63308
d49580620ecb isabelle update_cartouches -c -t;
wenzelm
parents: 63243
diff changeset
   170
  \<comment> \<open>Declare this rule as @{attribute transfer_rule} only locally
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   171
      because it blows up the search space for @{method transfer}
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   172
      (in combination with @{thm [source] Collect_transfer})\<close>
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   173
by(simp add: rel_funI rel_predI)
63343
fb5d8a50c641 bundle lifting_syntax;
wenzelm
parents: 63333
diff changeset
   174
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   175
end
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   176
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   177
subsubsection \<open>Monotonicity rules\<close>
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   178
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
   179
lemma monotone_gfp_eadd1: "monotone (\<ge>) (\<ge>) (\<lambda>x. x + y :: enat)"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   180
by(auto intro!: monotoneI)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   181
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
   182
lemma monotone_gfp_eadd2: "monotone (\<ge>) (\<ge>) (\<lambda>y. x + y :: enat)"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   183
by(auto intro!: monotoneI)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   184
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   185
lemma mono2mono_gfp_eadd[THEN gfp.mono2mono2, cont_intro, simp]:
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
   186
  shows monotone_eadd: "monotone (rel_prod (\<ge>) (\<ge>)) (\<ge>) (\<lambda>(x, y). x + y :: enat)"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   187
by(simp add: monotone_gfp_eadd1 monotone_gfp_eadd2)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   188
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   189
lemma eadd_gfp_partial_function_mono [partial_function_mono]:
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
   190
  "\<lbrakk> monotone (fun_ord (\<ge>)) (\<ge>) f; monotone (fun_ord (\<ge>)) (\<ge>) g \<rbrakk>
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
   191
  \<Longrightarrow> monotone (fun_ord (\<ge>)) (\<ge>) (\<lambda>x. f x + g x :: enat)"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   192
by(rule mono2mono_gfp_eadd)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   193
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   194
lemma mono2mono_ereal[THEN lfp.mono2mono]:
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
   195
  shows monotone_ereal: "monotone (\<le>) (\<le>) ereal"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   196
by(rule monotoneI) simp
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   197
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   198
lemma mono2mono_ennreal[THEN lfp.mono2mono]:
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
   199
  shows monotone_ennreal: "monotone (\<le>) (\<le>) ennreal"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   200
by(rule monotoneI)(simp add: ennreal_leI)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   201
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   202
subsubsection \<open>Bijections\<close>
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   203
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   204
lemma bi_unique_rel_set_bij_betw:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   205
  assumes unique: "bi_unique R"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   206
  and rel: "rel_set R A B"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   207
  shows "\<exists>f. bij_betw f A B \<and> (\<forall>x\<in>A. R x (f x))"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   208
proof -
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   209
  from assms obtain f where f: "\<And>x. x \<in> A \<Longrightarrow> R x (f x)" and B: "\<And>x. x \<in> A \<Longrightarrow> f x \<in> B"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   210
    apply(atomize_elim)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   211
    apply(fold all_conj_distrib)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   212
    apply(subst choice_iff[symmetric])
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   213
    apply(auto dest: rel_setD1)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   214
    done
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   215
  have "inj_on f A" by(rule inj_onI)(auto dest!: f dest: bi_uniqueDl[OF unique])
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   216
  moreover have "f ` A = B" using rel
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   217
    by(auto 4 3 intro: B dest: rel_setD2 f bi_uniqueDr[OF unique])
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   218
  ultimately have "bij_betw f A B" unfolding bij_betw_def ..
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   219
  thus ?thesis using f by blast
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   220
qed
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   221
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   222
lemma bij_betw_rel_setD: "bij_betw f A B \<Longrightarrow> rel_set (\<lambda>x y. y = f x) A B"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   223
by(rule rel_setI)(auto dest: bij_betwE bij_betw_imp_surj_on[symmetric])
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   224
63308
d49580620ecb isabelle update_cartouches -c -t;
wenzelm
parents: 63243
diff changeset
   225
subsection \<open>Subprobability mass function\<close>
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   226
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   227
type_synonym 'a spmf = "'a option pmf"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   228
translations (type) "'a spmf" \<leftharpoondown> (type) "'a option pmf"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   229
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   230
definition measure_spmf :: "'a spmf \<Rightarrow> 'a measure"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   231
where "measure_spmf p = distr (restrict_space (measure_pmf p) (range Some)) (count_space UNIV) the"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   232
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   233
abbreviation spmf :: "'a spmf \<Rightarrow> 'a \<Rightarrow> real"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   234
where "spmf p x \<equiv> pmf p (Some x)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   235
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   236
lemma space_measure_spmf: "space (measure_spmf p) = UNIV"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   237
by(simp add: measure_spmf_def)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   238
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   239
lemma sets_measure_spmf [simp, measurable_cong]: "sets (measure_spmf p) = sets (count_space UNIV)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   240
by(simp add: measure_spmf_def)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   241
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   242
lemma measure_spmf_not_bot [simp]: "measure_spmf p \<noteq> \<bottom>"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   243
proof
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   244
  assume "measure_spmf p = \<bottom>"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   245
  hence "space (measure_spmf p) = space \<bottom>" by simp
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   246
  thus False by(simp add: space_measure_spmf)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   247
qed
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   248
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   249
lemma measurable_the_measure_pmf_Some [measurable, simp]:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   250
  "the \<in> measurable (restrict_space (measure_pmf p) (range Some)) (count_space UNIV)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   251
by(auto simp add: measurable_def sets_restrict_space space_restrict_space integral_restrict_space)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   252
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   253
lemma measurable_spmf_measure1[simp]: "measurable (measure_spmf M) N = UNIV \<rightarrow> space N"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   254
by(auto simp: measurable_def space_measure_spmf)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   255
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   256
lemma measurable_spmf_measure2[simp]: "measurable N (measure_spmf M) = measurable N (count_space UNIV)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   257
by(intro measurable_cong_sets) simp_all
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   258
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   259
lemma subprob_space_measure_spmf [simp, intro!]: "subprob_space (measure_spmf p)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   260
proof
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   261
  show "emeasure (measure_spmf p) (space (measure_spmf p)) \<le> 1"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   262
    by(simp add: measure_spmf_def emeasure_distr emeasure_restrict_space space_restrict_space measure_pmf.measure_le_1)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   263
qed(simp add: space_measure_spmf)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   264
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   265
interpretation measure_spmf: subprob_space "measure_spmf p" for p
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   266
by(rule subprob_space_measure_spmf)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   267
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   268
lemma finite_measure_spmf [simp]: "finite_measure (measure_spmf p)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   269
by unfold_locales
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   270
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   271
lemma spmf_conv_measure_spmf: "spmf p x = measure (measure_spmf p) {x}"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   272
by(auto simp add: measure_spmf_def measure_distr measure_restrict_space pmf.rep_eq space_restrict_space intro: arg_cong2[where f=measure])
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   273
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   274
lemma emeasure_measure_spmf_conv_measure_pmf:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   275
  "emeasure (measure_spmf p) A = emeasure (measure_pmf p) (Some ` A)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   276
by(auto simp add: measure_spmf_def emeasure_distr emeasure_restrict_space space_restrict_space intro: arg_cong2[where f=emeasure])
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   277
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   278
lemma measure_measure_spmf_conv_measure_pmf:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   279
  "measure (measure_spmf p) A = measure (measure_pmf p) (Some ` A)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   280
using emeasure_measure_spmf_conv_measure_pmf[of p A]
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   281
by(simp add: measure_spmf.emeasure_eq_measure measure_pmf.emeasure_eq_measure)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   282
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   283
lemma emeasure_spmf_map_pmf_Some [simp]:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   284
  "emeasure (measure_spmf (map_pmf Some p)) A = emeasure (measure_pmf p) A"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   285
by(auto simp add: measure_spmf_def emeasure_distr emeasure_restrict_space space_restrict_space intro: arg_cong2[where f=emeasure])
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   286
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   287
lemma measure_spmf_map_pmf_Some [simp]:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   288
  "measure (measure_spmf (map_pmf Some p)) A = measure (measure_pmf p) A"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   289
using emeasure_spmf_map_pmf_Some[of p A] by(simp add: measure_spmf.emeasure_eq_measure measure_pmf.emeasure_eq_measure)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   290
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   291
lemma nn_integral_measure_spmf: "(\<integral>\<^sup>+ x. f x \<partial>measure_spmf p) = \<integral>\<^sup>+ x. ennreal (spmf p x) * f x \<partial>count_space UNIV"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   292
  (is "?lhs = ?rhs")
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   293
proof -
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   294
  have "?lhs = \<integral>\<^sup>+ x. pmf p x * f (the x) \<partial>count_space (range Some)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   295
    by(simp add: measure_spmf_def nn_integral_distr nn_integral_restrict_space nn_integral_measure_pmf nn_integral_count_space_indicator ac_simps times_ereal.simps(1)[symmetric] del: times_ereal.simps(1))
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   296
  also have "\<dots> = \<integral>\<^sup>+ x. ennreal (spmf p (the x)) * f (the x) \<partial>count_space (range Some)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   297
    by(rule nn_integral_cong) auto
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   298
  also have "\<dots> = \<integral>\<^sup>+ x. spmf p (the (Some x)) * f (the (Some x)) \<partial>count_space UNIV"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   299
    by(rule nn_integral_bij_count_space[symmetric])(simp add: bij_betw_def)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   300
  also have "\<dots> = ?rhs" by simp
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   301
  finally show ?thesis .
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   302
qed
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   303
63333
158ab2239496 Probability: show that measures form a complete lattice
hoelzl
parents: 63308
diff changeset
   304
lemma integral_measure_spmf:
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   305
  assumes "integrable (measure_spmf p) f"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   306
  shows "(\<integral> x. f x \<partial>measure_spmf p) = \<integral> x. spmf p x * f x \<partial>count_space UNIV"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   307
proof -
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   308
  have "integrable (count_space UNIV) (\<lambda>x. spmf p x * f x)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   309
    using assms by(simp add: integrable_iff_bounded nn_integral_measure_spmf abs_mult ennreal_mult'')
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   310
  then show ?thesis using assms
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   311
    by(simp add: real_lebesgue_integral_def nn_integral_measure_spmf ennreal_mult'[symmetric])
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   312
qed
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   313
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   314
lemma emeasure_spmf_single: "emeasure (measure_spmf p) {x} = spmf p x"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   315
by(simp add: measure_spmf.emeasure_eq_measure spmf_conv_measure_spmf)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   316
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   317
lemma measurable_measure_spmf[measurable]:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   318
  "(\<lambda>x. measure_spmf (M x)) \<in> measurable (count_space UNIV) (subprob_algebra (count_space UNIV))"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   319
by (auto simp: space_subprob_algebra)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   320
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   321
lemma nn_integral_measure_spmf_conv_measure_pmf:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   322
  assumes [measurable]: "f \<in> borel_measurable (count_space UNIV)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   323
  shows "nn_integral (measure_spmf p) f = nn_integral (restrict_space (measure_pmf p) (range Some)) (f \<circ> the)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   324
by(simp add: measure_spmf_def nn_integral_distr o_def)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   325
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   326
lemma measure_spmf_in_space_subprob_algebra [simp]:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   327
  "measure_spmf p \<in> space (subprob_algebra (count_space UNIV))"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   328
by(simp add: space_subprob_algebra)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   329
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   330
lemma nn_integral_spmf_neq_top: "(\<integral>\<^sup>+ x. spmf p x \<partial>count_space UNIV) \<noteq> \<top>"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   331
using nn_integral_measure_spmf[where f="\<lambda>_. 1", of p, symmetric] by simp
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   332
69260
0a9688695a1b removed relics of ASCII syntax for indexed big operators
haftmann
parents: 67399
diff changeset
   333
lemma SUP_spmf_neq_top': "(SUP p\<in>Y. ennreal (spmf p x)) \<noteq> \<top>"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   334
proof(rule neq_top_trans)
69260
0a9688695a1b removed relics of ASCII syntax for indexed big operators
haftmann
parents: 67399
diff changeset
   335
  show "(SUP p\<in>Y. ennreal (spmf p x)) \<le> 1" by(rule SUP_least)(simp add: pmf_le_1)
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   336
qed simp
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   337
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   338
lemma SUP_spmf_neq_top: "(SUP i. ennreal (spmf (Y i) x)) \<noteq> \<top>"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   339
proof(rule neq_top_trans)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   340
  show "(SUP i. ennreal (spmf (Y i) x)) \<le> 1" by(rule SUP_least)(simp add: pmf_le_1)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   341
qed simp
63333
158ab2239496 Probability: show that measures form a complete lattice
hoelzl
parents: 63308
diff changeset
   342
69260
0a9688695a1b removed relics of ASCII syntax for indexed big operators
haftmann
parents: 67399
diff changeset
   343
lemma SUP_emeasure_spmf_neq_top: "(SUP p\<in>Y. emeasure (measure_spmf p) A) \<noteq> \<top>"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   344
proof(rule neq_top_trans)
69260
0a9688695a1b removed relics of ASCII syntax for indexed big operators
haftmann
parents: 67399
diff changeset
   345
  show "(SUP p\<in>Y. emeasure (measure_spmf p) A) \<le> 1"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   346
    by(rule SUP_least)(simp add: measure_spmf.subprob_emeasure_le_1)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   347
qed simp
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   348
63308
d49580620ecb isabelle update_cartouches -c -t;
wenzelm
parents: 63243
diff changeset
   349
subsection \<open>Support\<close>
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   350
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   351
definition set_spmf :: "'a spmf \<Rightarrow> 'a set"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   352
where "set_spmf p = set_pmf p \<bind> set_option"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   353
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   354
lemma set_spmf_rep_eq: "set_spmf p = {x. measure (measure_spmf p) {x} \<noteq> 0}"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   355
proof -
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   356
  have "\<And>x :: 'a. the -` {x} \<inter> range Some = {Some x}" by auto
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   357
  then show ?thesis
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   358
    by(auto simp add: set_spmf_def set_pmf.rep_eq measure_spmf_def measure_distr measure_restrict_space space_restrict_space intro: rev_image_eqI)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   359
qed
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   360
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   361
lemma in_set_spmf: "x \<in> set_spmf p \<longleftrightarrow> Some x \<in> set_pmf p"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   362
by(simp add: set_spmf_def)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   363
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   364
lemma AE_measure_spmf_iff [simp]: "(AE x in measure_spmf p. P x) \<longleftrightarrow> (\<forall>x\<in>set_spmf p. P x)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   365
by(auto 4 3 simp add: measure_spmf_def AE_distr_iff AE_restrict_space_iff AE_measure_pmf_iff set_spmf_def cong del: AE_cong)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   366
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   367
lemma spmf_eq_0_set_spmf: "spmf p x = 0 \<longleftrightarrow> x \<notin> set_spmf p"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   368
by(auto simp add: pmf_eq_0_set_pmf set_spmf_def intro: rev_image_eqI)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   369
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   370
lemma in_set_spmf_iff_spmf: "x \<in> set_spmf p \<longleftrightarrow> spmf p x \<noteq> 0"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   371
by(auto simp add: set_spmf_def set_pmf_iff intro: rev_image_eqI)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   372
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   373
lemma set_spmf_return_pmf_None [simp]: "set_spmf (return_pmf None) = {}"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   374
by(auto simp add: set_spmf_def)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   375
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   376
lemma countable_set_spmf [simp]: "countable (set_spmf p)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   377
by(simp add: set_spmf_def bind_UNION)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   378
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   379
lemma spmf_eqI:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   380
  assumes "\<And>i. spmf p i = spmf q i"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   381
  shows "p = q"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   382
proof(rule pmf_eqI)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   383
  fix i
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   384
  show "pmf p i = pmf q i"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   385
  proof(cases i)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   386
    case (Some i')
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   387
    thus ?thesis by(simp add: assms)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   388
  next
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   389
    case None
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   390
    have "ennreal (pmf p i) = measure (measure_pmf p) {i}" by(simp add: pmf_def)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   391
    also have "{i} = space (measure_pmf p) - range Some"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   392
      by(auto simp add: None intro: ccontr)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   393
    also have "measure (measure_pmf p) \<dots> = ennreal 1 - measure (measure_pmf p) (range Some)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   394
      by(simp add: measure_pmf.prob_compl ennreal_minus[symmetric] del: space_measure_pmf)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   395
    also have "range Some = (\<Union>x\<in>set_spmf p. {Some x}) \<union> Some ` (- set_spmf p)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   396
      by auto
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   397
    also have "measure (measure_pmf p) \<dots> = measure (measure_pmf p) (\<Union>x\<in>set_spmf p. {Some x})"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   398
      by(rule measure_pmf.measure_zero_union)(auto simp add: measure_pmf.prob_eq_0 AE_measure_pmf_iff in_set_spmf_iff_spmf set_pmf_iff)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   399
    also have "ennreal \<dots> = \<integral>\<^sup>+ x. measure (measure_pmf p) {Some x} \<partial>count_space (set_spmf p)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   400
      unfolding measure_pmf.emeasure_eq_measure[symmetric]
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   401
      by(simp_all add: emeasure_UN_countable disjoint_family_on_def)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   402
    also have "\<dots> = \<integral>\<^sup>+ x. spmf p x \<partial>count_space (set_spmf p)" by(simp add: pmf_def)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   403
    also have "\<dots> = \<integral>\<^sup>+ x. spmf q x \<partial>count_space (set_spmf p)" by(simp add: assms)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   404
    also have "set_spmf p = set_spmf q" by(auto simp add: in_set_spmf_iff_spmf assms)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   405
    also have "(\<integral>\<^sup>+ x. spmf q x \<partial>count_space (set_spmf q)) = \<integral>\<^sup>+ x. measure (measure_pmf q) {Some x} \<partial>count_space (set_spmf q)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   406
      by(simp add: pmf_def)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   407
    also have "\<dots> = measure (measure_pmf q) (\<Union>x\<in>set_spmf q. {Some x})"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   408
      unfolding measure_pmf.emeasure_eq_measure[symmetric]
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   409
      by(simp_all add: emeasure_UN_countable disjoint_family_on_def)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   410
    also have "\<dots> = measure (measure_pmf q) ((\<Union>x\<in>set_spmf q. {Some x}) \<union> Some ` (- set_spmf q))"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   411
      by(rule ennreal_cong measure_pmf.measure_zero_union[symmetric])+(auto simp add: measure_pmf.prob_eq_0 AE_measure_pmf_iff in_set_spmf_iff_spmf set_pmf_iff)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   412
    also have "((\<Union>x\<in>set_spmf q. {Some x}) \<union> Some ` (- set_spmf q)) = range Some" by auto
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   413
    also have "ennreal 1 - measure (measure_pmf q) \<dots> = measure (measure_pmf q) (space (measure_pmf q) - range Some)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   414
      by(simp add: one_ereal_def measure_pmf.prob_compl ennreal_minus[symmetric] del: space_measure_pmf)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   415
    also have "space (measure_pmf q) - range Some = {i}"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   416
      by(auto simp add: None intro: ccontr)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   417
    also have "measure (measure_pmf q) \<dots> = pmf q i" by(simp add: pmf_def)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   418
    finally show ?thesis by simp
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   419
  qed
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   420
qed
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   421
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   422
lemma integral_measure_spmf_restrict:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   423
  fixes f ::  "'a \<Rightarrow> 'b :: {banach, second_countable_topology}" shows
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   424
  "(\<integral> x. f x \<partial>measure_spmf M) = (\<integral> x. f x \<partial>restrict_space (measure_spmf M) (set_spmf M))"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   425
by(auto intro!: integral_cong_AE simp add: integral_restrict_space)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   426
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   427
lemma nn_integral_measure_spmf':
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   428
  "(\<integral>\<^sup>+ x. f x \<partial>measure_spmf p) = \<integral>\<^sup>+ x. ennreal (spmf p x) * f x \<partial>count_space (set_spmf p)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   429
by(auto simp add: nn_integral_measure_spmf nn_integral_count_space_indicator in_set_spmf_iff_spmf intro!: nn_integral_cong split: split_indicator)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   430
63308
d49580620ecb isabelle update_cartouches -c -t;
wenzelm
parents: 63243
diff changeset
   431
subsection \<open>Functorial structure\<close>
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   432
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   433
abbreviation map_spmf :: "('a \<Rightarrow> 'b) \<Rightarrow> 'a spmf \<Rightarrow> 'b spmf"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   434
where "map_spmf f \<equiv> map_pmf (map_option f)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   435
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   436
context begin
63308
d49580620ecb isabelle update_cartouches -c -t;
wenzelm
parents: 63243
diff changeset
   437
local_setup \<open>Local_Theory.map_background_naming (Name_Space.mandatory_path "spmf")\<close>
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   438
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   439
lemma map_comp: "map_spmf f (map_spmf g p) = map_spmf (f \<circ> g) p"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   440
by(simp add: pmf.map_comp o_def option.map_comp)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   441
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   442
lemma map_id0: "map_spmf id = id"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   443
by(simp add: pmf.map_id option.map_id0)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   444
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   445
lemma map_id [simp]: "map_spmf id p = p"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   446
by(simp add: map_id0)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   447
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   448
lemma map_ident [simp]: "map_spmf (\<lambda>x. x) p = p"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   449
by(simp add: id_def[symmetric])
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   450
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   451
end
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   452
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   453
lemma set_map_spmf [simp]: "set_spmf (map_spmf f p) = f ` set_spmf p"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   454
by(simp add: set_spmf_def image_bind bind_image o_def Option.option.set_map)
63333
158ab2239496 Probability: show that measures form a complete lattice
hoelzl
parents: 63308
diff changeset
   455
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   456
lemma map_spmf_cong:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   457
  "\<lbrakk> p = q; \<And>x. x \<in> set_spmf q \<Longrightarrow> f x = g x \<rbrakk>
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   458
  \<Longrightarrow> map_spmf f p = map_spmf g q"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   459
by(auto intro: pmf.map_cong option.map_cong simp add: in_set_spmf)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   460
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   461
lemma map_spmf_cong_simp:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   462
  "\<lbrakk> p = q; \<And>x. x \<in> set_spmf q =simp=> f x = g x \<rbrakk>
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   463
  \<Longrightarrow> map_spmf f p = map_spmf g q"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   464
unfolding simp_implies_def by(rule map_spmf_cong)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   465
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   466
lemma map_spmf_idI: "(\<And>x. x \<in> set_spmf p \<Longrightarrow> f x = x) \<Longrightarrow> map_spmf f p = p"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   467
by(rule map_pmf_idI map_option_idI)+(simp add: in_set_spmf)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   468
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   469
lemma emeasure_map_spmf:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   470
  "emeasure (measure_spmf (map_spmf f p)) A = emeasure (measure_spmf p) (f -` A)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   471
by(auto simp add: measure_spmf_def emeasure_distr measurable_restrict_space1 space_restrict_space emeasure_restrict_space intro: arg_cong2[where f=emeasure])
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   472
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   473
lemma measure_map_spmf: "measure (measure_spmf (map_spmf f p)) A = measure (measure_spmf p) (f -` A)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   474
using emeasure_map_spmf[of f p A] by(simp add: measure_spmf.emeasure_eq_measure)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   475
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   476
lemma measure_map_spmf_conv_distr:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   477
  "measure_spmf (map_spmf f p) = distr (measure_spmf p) (count_space UNIV) f"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   478
by(rule measure_eqI)(simp_all add: emeasure_map_spmf emeasure_distr)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   479
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   480
lemma spmf_map_pmf_Some [simp]: "spmf (map_pmf Some p) i = pmf p i"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   481
by(simp add: pmf_map_inj')
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   482
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   483
lemma spmf_map_inj: "\<lbrakk> inj_on f (set_spmf M); x \<in> set_spmf M \<rbrakk> \<Longrightarrow> spmf (map_spmf f M) (f x) = spmf M x"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   484
by(subst option.map(2)[symmetric, where f=f])(rule pmf_map_inj, auto simp add: in_set_spmf inj_on_def elim!: option.inj_map_strong[rotated])
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   485
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   486
lemma spmf_map_inj': "inj f \<Longrightarrow> spmf (map_spmf f M) (f x) = spmf M x"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   487
by(subst option.map(2)[symmetric, where f=f])(rule pmf_map_inj'[OF option.inj_map])
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   488
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   489
lemma spmf_map_outside: "x \<notin> f ` set_spmf M \<Longrightarrow> spmf (map_spmf f M) x = 0"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   490
unfolding spmf_eq_0_set_spmf by simp
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   491
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   492
lemma ennreal_spmf_map: "ennreal (spmf (map_spmf f p) x) = emeasure (measure_spmf p) (f -` {x})"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   493
by(auto simp add: ennreal_pmf_map measure_spmf_def emeasure_distr emeasure_restrict_space space_restrict_space intro: arg_cong2[where f=emeasure])
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   494
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   495
lemma spmf_map: "spmf (map_spmf f p) x = measure (measure_spmf p) (f -` {x})"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   496
using ennreal_spmf_map[of f p x] by(simp add: measure_spmf.emeasure_eq_measure)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   497
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   498
lemma ennreal_spmf_map_conv_nn_integral:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   499
  "ennreal (spmf (map_spmf f p) x) = integral\<^sup>N (measure_spmf p) (indicator (f -` {x}))"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   500
by(auto simp add: ennreal_pmf_map measure_spmf_def emeasure_distr space_restrict_space emeasure_restrict_space intro: arg_cong2[where f=emeasure])
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   501
63308
d49580620ecb isabelle update_cartouches -c -t;
wenzelm
parents: 63243
diff changeset
   502
subsection \<open>Monad operations\<close>
d49580620ecb isabelle update_cartouches -c -t;
wenzelm
parents: 63243
diff changeset
   503
d49580620ecb isabelle update_cartouches -c -t;
wenzelm
parents: 63243
diff changeset
   504
subsubsection \<open>Return\<close>
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   505
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   506
abbreviation return_spmf :: "'a \<Rightarrow> 'a spmf"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   507
where "return_spmf x \<equiv> return_pmf (Some x)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   508
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   509
lemma pmf_return_spmf: "pmf (return_spmf x) y = indicator {y} (Some x)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   510
by(fact pmf_return)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   511
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   512
lemma measure_spmf_return_spmf: "measure_spmf (return_spmf x) = Giry_Monad.return (count_space UNIV) x"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   513
by(rule measure_eqI)(simp_all add: measure_spmf_def emeasure_distr space_restrict_space emeasure_restrict_space indicator_def)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   514
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   515
lemma measure_spmf_return_pmf_None [simp]: "measure_spmf (return_pmf None) = null_measure (count_space UNIV)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   516
by(rule measure_eqI)(auto simp add: measure_spmf_def emeasure_distr space_restrict_space emeasure_restrict_space indicator_eq_0_iff)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   517
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   518
lemma set_return_spmf [simp]: "set_spmf (return_spmf x) = {x}"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   519
by(auto simp add: set_spmf_def)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   520
63308
d49580620ecb isabelle update_cartouches -c -t;
wenzelm
parents: 63243
diff changeset
   521
subsubsection \<open>Bind\<close>
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   522
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   523
definition bind_spmf :: "'a spmf \<Rightarrow> ('a \<Rightarrow> 'b spmf) \<Rightarrow> 'b spmf"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   524
where "bind_spmf x f = bind_pmf x (\<lambda>a. case a of None \<Rightarrow> return_pmf None | Some a' \<Rightarrow> f a')"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   525
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   526
adhoc_overloading Monad_Syntax.bind bind_spmf
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   527
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   528
lemma return_None_bind_spmf [simp]: "return_pmf None \<bind> (f :: 'a \<Rightarrow> _) = return_pmf None"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   529
by(simp add: bind_spmf_def bind_return_pmf)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   530
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   531
lemma return_bind_spmf [simp]: "return_spmf x \<bind> f = f x"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   532
by(simp add: bind_spmf_def bind_return_pmf)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   533
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   534
lemma bind_return_spmf [simp]: "x \<bind> return_spmf = x"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   535
proof -
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   536
  have "\<And>a :: 'a option. (case a of None \<Rightarrow> return_pmf None | Some a' \<Rightarrow> return_spmf a') = return_pmf a"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   537
    by(simp split: option.split)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   538
  then show ?thesis
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   539
    by(simp add: bind_spmf_def bind_return_pmf')
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   540
qed
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   541
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   542
lemma bind_spmf_assoc [simp]:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   543
  fixes x :: "'a spmf" and f :: "'a \<Rightarrow> 'b spmf" and g :: "'b \<Rightarrow> 'c spmf"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   544
  shows "(x \<bind> f) \<bind> g = x \<bind> (\<lambda>y. f y \<bind> g)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   545
by(auto simp add: bind_spmf_def bind_assoc_pmf fun_eq_iff bind_return_pmf split: option.split intro: arg_cong[where f="bind_pmf x"])
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   546
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   547
lemma pmf_bind_spmf_None: "pmf (p \<bind> f) None = pmf p None + \<integral> x. pmf (f x) None \<partial>measure_spmf p"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   548
  (is "?lhs = ?rhs")
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   549
proof -
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   550
  let ?f = "\<lambda>x. pmf (case x of None \<Rightarrow> return_pmf None | Some x \<Rightarrow> f x) None"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   551
  have "?lhs = \<integral> x. ?f x \<partial>measure_pmf p"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   552
    by(simp add: bind_spmf_def pmf_bind)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   553
  also have "\<dots> = \<integral> x. ?f None * indicator {None} x + ?f x * indicator (range Some) x \<partial>measure_pmf p"
63886
685fb01256af move Henstock-Kurzweil integration after Lebesgue_Measure; replace content by abbreviation measure lborel
hoelzl
parents: 63626
diff changeset
   554
    by(rule Bochner_Integration.integral_cong)(auto simp add: indicator_def)
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   555
  also have "\<dots> = (\<integral> x. ?f None * indicator {None} x \<partial>measure_pmf p) + (\<integral> x. ?f x * indicator (range Some) x \<partial>measure_pmf p)"
63886
685fb01256af move Henstock-Kurzweil integration after Lebesgue_Measure; replace content by abbreviation measure lborel
hoelzl
parents: 63626
diff changeset
   556
    by(rule Bochner_Integration.integral_add)(auto 4 3 intro: integrable_real_mult_indicator measure_pmf.integrable_const_bound[where B=1] simp add: AE_measure_pmf_iff pmf_le_1)
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   557
  also have "\<dots> = pmf p None + \<integral> x. indicator (range Some) x * pmf (f (the x)) None \<partial>measure_pmf p"
63886
685fb01256af move Henstock-Kurzweil integration after Lebesgue_Measure; replace content by abbreviation measure lborel
hoelzl
parents: 63626
diff changeset
   558
    by(auto simp add: measure_measure_pmf_finite indicator_eq_0_iff intro!: Bochner_Integration.integral_cong)
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   559
  also have "\<dots> = ?rhs" unfolding measure_spmf_def
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   560
    by(subst integral_distr)(auto simp add: integral_restrict_space)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   561
  finally show ?thesis .
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   562
qed
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   563
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   564
lemma spmf_bind: "spmf (p \<bind> f) y = \<integral> x. spmf (f x) y \<partial>measure_spmf p"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   565
unfolding measure_spmf_def
63886
685fb01256af move Henstock-Kurzweil integration after Lebesgue_Measure; replace content by abbreviation measure lborel
hoelzl
parents: 63626
diff changeset
   566
by(subst integral_distr)(auto simp add: bind_spmf_def pmf_bind integral_restrict_space indicator_eq_0_iff intro!: Bochner_Integration.integral_cong split: option.split)
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   567
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   568
lemma ennreal_spmf_bind: "ennreal (spmf (p \<bind> f) x) = \<integral>\<^sup>+ y. spmf (f y) x \<partial>measure_spmf p"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   569
by(auto simp add: bind_spmf_def ennreal_pmf_bind nn_integral_measure_spmf_conv_measure_pmf nn_integral_restrict_space intro: nn_integral_cong split: split_indicator option.split)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   570
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   571
lemma measure_spmf_bind_pmf: "measure_spmf (p \<bind> f) = measure_pmf p \<bind> measure_spmf \<circ> f"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   572
  (is "?lhs = ?rhs")
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   573
proof(rule measure_eqI)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   574
  show "sets ?lhs = sets ?rhs"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   575
    by(simp add: sets_bind[where N="count_space UNIV"] space_measure_spmf)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   576
next
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   577
  fix A :: "'a set"
63333
158ab2239496 Probability: show that measures form a complete lattice
hoelzl
parents: 63308
diff changeset
   578
  have "emeasure ?lhs A = \<integral>\<^sup>+ x. emeasure (measure_spmf (f x)) A \<partial>measure_pmf p"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   579
    by(simp add: measure_spmf_def emeasure_distr space_restrict_space emeasure_restrict_space bind_spmf_def)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   580
  also have "\<dots> = emeasure ?rhs A"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   581
    by(simp add: emeasure_bind[where N="count_space UNIV"] space_measure_spmf space_subprob_algebra)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   582
  finally show "emeasure ?lhs A = emeasure ?rhs A" .
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   583
qed
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   584
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   585
lemma measure_spmf_bind: "measure_spmf (p \<bind> f) = measure_spmf p \<bind> measure_spmf \<circ> f"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   586
  (is "?lhs = ?rhs")
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   587
proof(rule measure_eqI)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   588
  show "sets ?lhs = sets ?rhs"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   589
    by(simp add: sets_bind[where N="count_space UNIV"] space_measure_spmf)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   590
next
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   591
  fix A :: "'a set"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   592
  let ?A = "the -` A \<inter> range Some"
63333
158ab2239496 Probability: show that measures form a complete lattice
hoelzl
parents: 63308
diff changeset
   593
  have "emeasure ?lhs A = \<integral>\<^sup>+ x. emeasure (measure_pmf (case x of None \<Rightarrow> return_pmf None | Some x \<Rightarrow> f x)) ?A \<partial>measure_pmf p"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   594
    by(simp add: measure_spmf_def emeasure_distr space_restrict_space emeasure_restrict_space bind_spmf_def)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   595
  also have "\<dots> =  \<integral>\<^sup>+ x. emeasure (measure_pmf (f (the x))) ?A * indicator (range Some) x \<partial>measure_pmf p"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   596
    by(rule nn_integral_cong)(auto split: option.split simp add: indicator_def)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   597
  also have "\<dots> = \<integral>\<^sup>+ x. emeasure (measure_spmf (f x)) A \<partial>measure_spmf p"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   598
    by(simp add: measure_spmf_def nn_integral_distr nn_integral_restrict_space emeasure_distr space_restrict_space emeasure_restrict_space)
63333
158ab2239496 Probability: show that measures form a complete lattice
hoelzl
parents: 63308
diff changeset
   599
  also have "\<dots> = emeasure ?rhs A"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   600
    by(simp add: emeasure_bind[where N="count_space UNIV"] space_measure_spmf space_subprob_algebra)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   601
  finally show "emeasure ?lhs A = emeasure ?rhs A" .
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   602
qed
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   603
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   604
lemma map_spmf_bind_spmf: "map_spmf f (bind_spmf p g) = bind_spmf p (map_spmf f \<circ> g)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   605
by(auto simp add: bind_spmf_def map_bind_pmf fun_eq_iff split: option.split intro: arg_cong2[where f=bind_pmf])
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   606
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   607
lemma bind_map_spmf: "map_spmf f p \<bind> g = p \<bind> g \<circ> f"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   608
by(simp add: bind_spmf_def bind_map_pmf o_def cong del: option.case_cong_weak)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   609
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   610
lemma spmf_bind_leI:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   611
  assumes "\<And>y. y \<in> set_spmf p \<Longrightarrow> spmf (f y) x \<le> r"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   612
  and "0 \<le> r"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   613
  shows "spmf (bind_spmf p f) x \<le> r"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   614
proof -
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   615
  have "ennreal (spmf (bind_spmf p f) x) = \<integral>\<^sup>+ y. spmf (f y) x \<partial>measure_spmf p" by(rule ennreal_spmf_bind)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   616
  also have "\<dots> \<le> \<integral>\<^sup>+ y. r \<partial>measure_spmf p" by(rule nn_integral_mono_AE)(simp add: assms)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   617
  also have "\<dots> \<le> r" using assms measure_spmf.emeasure_space_le_1
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   618
    by(auto simp add: measure_spmf.emeasure_eq_measure intro!: mult_left_le)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   619
  finally show ?thesis using assms(2) by(simp)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   620
qed
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   621
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   622
lemma map_spmf_conv_bind_spmf: "map_spmf f p = (p \<bind> (\<lambda>x. return_spmf (f x)))"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   623
by(simp add: map_pmf_def bind_spmf_def)(rule bind_pmf_cong, simp_all split: option.split)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   624
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   625
lemma bind_spmf_cong:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   626
  "\<lbrakk> p = q; \<And>x. x \<in> set_spmf q \<Longrightarrow> f x = g x \<rbrakk>
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   627
  \<Longrightarrow> bind_spmf p f = bind_spmf q g"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   628
by(auto simp add: bind_spmf_def in_set_spmf intro: bind_pmf_cong option.case_cong)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   629
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   630
lemma bind_spmf_cong_simp:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   631
  "\<lbrakk> p = q; \<And>x. x \<in> set_spmf q =simp=> f x = g x \<rbrakk>
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   632
  \<Longrightarrow> bind_spmf p f = bind_spmf q g"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   633
by(simp add: simp_implies_def cong: bind_spmf_cong)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   634
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   635
lemma set_bind_spmf: "set_spmf (M \<bind> f) = set_spmf M \<bind> (set_spmf \<circ> f)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   636
by(auto simp add: set_spmf_def bind_spmf_def bind_UNION split: option.splits)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   637
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   638
lemma bind_spmf_const_return_None [simp]: "bind_spmf p (\<lambda>_. return_pmf None) = return_pmf None"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   639
by(simp add: bind_spmf_def case_option_collapse)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   640
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   641
lemma bind_commute_spmf:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   642
  "bind_spmf p (\<lambda>x. bind_spmf q (f x)) = bind_spmf q (\<lambda>y. bind_spmf p (\<lambda>x. f x y))"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   643
  (is "?lhs = ?rhs")
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   644
proof -
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   645
  let ?f = "\<lambda>x y. case x of None \<Rightarrow> return_pmf None | Some a \<Rightarrow> (case y of None \<Rightarrow> return_pmf None | Some b \<Rightarrow> f a b)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   646
  have "?lhs = p \<bind> (\<lambda>x. q \<bind> ?f x)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   647
    unfolding bind_spmf_def by(rule bind_pmf_cong[OF refl])(simp split: option.split)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   648
  also have "\<dots> = q \<bind> (\<lambda>y. p \<bind> (\<lambda>x. ?f x y))" by(rule bind_commute_pmf)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   649
  also have "\<dots> = ?rhs" unfolding bind_spmf_def
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   650
    by(rule bind_pmf_cong[OF refl])(auto split: option.split, metis bind_spmf_const_return_None bind_spmf_def)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   651
  finally show ?thesis .
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   652
qed
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   653
63308
d49580620ecb isabelle update_cartouches -c -t;
wenzelm
parents: 63243
diff changeset
   654
subsection \<open>Relator\<close>
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   655
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   656
abbreviation rel_spmf :: "('a \<Rightarrow> 'b \<Rightarrow> bool) \<Rightarrow> 'a spmf \<Rightarrow> 'b spmf \<Rightarrow> bool"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   657
where "rel_spmf R \<equiv> rel_pmf (rel_option R)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   658
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   659
lemma rel_pmf_mono:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   660
  "\<lbrakk>rel_pmf A f g; \<And>x y. A x y \<Longrightarrow> B x y \<rbrakk> \<Longrightarrow> rel_pmf B f g"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   661
using pmf.rel_mono[of A B] by(simp add: le_fun_def)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   662
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   663
lemma rel_spmf_mono:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   664
  "\<lbrakk>rel_spmf A f g; \<And>x y. A x y \<Longrightarrow> B x y \<rbrakk> \<Longrightarrow> rel_spmf B f g"
63333
158ab2239496 Probability: show that measures form a complete lattice
hoelzl
parents: 63308
diff changeset
   665
apply(erule rel_pmf_mono)
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   666
using option.rel_mono[of A B] by(simp add: le_fun_def)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   667
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   668
lemma rel_spmf_mono_strong:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   669
  "\<lbrakk> rel_spmf A f g; \<And>x y. \<lbrakk> A x y; x \<in> set_spmf f; y \<in> set_spmf g \<rbrakk> \<Longrightarrow> B x y \<rbrakk> \<Longrightarrow> rel_spmf B f g"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   670
apply(erule pmf.rel_mono_strong)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   671
apply(erule option.rel_mono_strong)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   672
apply(auto simp add: in_set_spmf)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   673
done
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   674
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   675
lemma rel_spmf_reflI: "(\<And>x. x \<in> set_spmf p \<Longrightarrow> P x x) \<Longrightarrow> rel_spmf P p p"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   676
by(rule rel_pmf_reflI)(auto simp add: set_spmf_def intro: rel_option_reflI)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   677
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   678
lemma rel_spmfI [intro?]:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   679
  "\<lbrakk> \<And>x y. (x, y) \<in> set_spmf pq \<Longrightarrow> P x y; map_spmf fst pq = p; map_spmf snd pq = q \<rbrakk>
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   680
  \<Longrightarrow> rel_spmf P p q"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   681
by(rule rel_pmf.intros[where pq="map_pmf (\<lambda>x. case x of None \<Rightarrow> (None, None) | Some (a, b) \<Rightarrow> (Some a, Some b)) pq"])
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   682
  (auto simp add: pmf.map_comp o_def in_set_spmf split: option.splits intro: pmf.map_cong)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   683
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   684
lemma rel_spmfE [elim?, consumes 1, case_names rel_spmf]:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   685
  assumes "rel_spmf P p q"
63333
158ab2239496 Probability: show that measures form a complete lattice
hoelzl
parents: 63308
diff changeset
   686
  obtains pq where
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   687
    "\<And>x y. (x, y) \<in> set_spmf pq \<Longrightarrow> P x y"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   688
    "p = map_spmf fst pq"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   689
    "q = map_spmf snd pq"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   690
using assms
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   691
proof(cases rule: rel_pmf.cases[consumes 1, case_names rel_pmf])
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   692
  case (rel_pmf pq)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   693
  let ?pq = "map_pmf (\<lambda>(a, b). case (a, b) of (Some x, Some y) \<Rightarrow> Some (x, y) | _ \<Rightarrow> None) pq"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   694
  have "\<And>x y. (x, y) \<in> set_spmf ?pq \<Longrightarrow> P x y"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   695
    by(auto simp add: in_set_spmf split: option.split_asm dest: rel_pmf(1))
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   696
  moreover
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   697
  have "\<And>x. (x, None) \<in> set_pmf pq \<Longrightarrow> x = None" by(auto dest!: rel_pmf(1))
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   698
  then have "p = map_spmf fst ?pq" using rel_pmf(2)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   699
    by(auto simp add: pmf.map_comp split_beta intro!: pmf.map_cong split: option.split)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   700
  moreover
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   701
  have "\<And>y. (None, y) \<in> set_pmf pq \<Longrightarrow> y = None" by(auto dest!: rel_pmf(1))
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   702
  then have "q = map_spmf snd ?pq" using rel_pmf(3)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   703
    by(auto simp add: pmf.map_comp split_beta intro!: pmf.map_cong split: option.split)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   704
  ultimately show thesis ..
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   705
qed
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   706
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   707
lemma rel_spmf_simps:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   708
  "rel_spmf R p q \<longleftrightarrow> (\<exists>pq. (\<forall>(x, y)\<in>set_spmf pq. R x y) \<and> map_spmf fst pq = p \<and> map_spmf snd pq = q)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   709
by(auto intro: rel_spmfI elim!: rel_spmfE)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   710
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   711
lemma spmf_rel_map:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   712
  shows spmf_rel_map1: "\<And>R f x. rel_spmf R (map_spmf f x) = rel_spmf (\<lambda>x. R (f x)) x"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   713
  and spmf_rel_map2: "\<And>R x g y. rel_spmf R x (map_spmf g y) = rel_spmf (\<lambda>x y. R x (g y)) x y"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   714
by(simp_all add: fun_eq_iff pmf.rel_map option.rel_map[abs_def])
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   715
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   716
lemma spmf_rel_conversep: "rel_spmf R\<inverse>\<inverse> = (rel_spmf R)\<inverse>\<inverse>"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   717
by(simp add: option.rel_conversep pmf.rel_conversep)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   718
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
   719
lemma spmf_rel_eq: "rel_spmf (=) = (=)"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   720
by(simp add: pmf.rel_eq option.rel_eq)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   721
63343
fb5d8a50c641 bundle lifting_syntax;
wenzelm
parents: 63333
diff changeset
   722
context includes lifting_syntax
fb5d8a50c641 bundle lifting_syntax;
wenzelm
parents: 63333
diff changeset
   723
begin
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   724
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   725
lemma bind_spmf_parametric [transfer_rule]:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   726
  "(rel_spmf A ===> (A ===> rel_spmf B) ===> rel_spmf B) bind_spmf bind_spmf"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   727
unfolding bind_spmf_def[abs_def] by transfer_prover
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   728
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   729
lemma return_spmf_parametric: "(A ===> rel_spmf A) return_spmf return_spmf"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   730
by transfer_prover
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   731
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   732
lemma map_spmf_parametric: "((A ===> B) ===> rel_spmf A ===> rel_spmf B) map_spmf map_spmf"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   733
by transfer_prover
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   734
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   735
lemma rel_spmf_parametric:
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
   736
  "((A ===> B ===> (=)) ===> rel_spmf A ===> rel_spmf B ===> (=)) rel_spmf rel_spmf"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   737
by transfer_prover
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   738
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   739
lemma set_spmf_parametric [transfer_rule]:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   740
  "(rel_spmf A ===> rel_set A) set_spmf set_spmf"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   741
unfolding set_spmf_def[abs_def] by transfer_prover
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   742
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   743
lemma return_spmf_None_parametric:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   744
  "(rel_spmf A) (return_pmf None) (return_pmf None)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   745
by simp
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   746
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   747
end
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   748
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   749
lemma rel_spmf_bindI:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   750
  "\<lbrakk> rel_spmf R p q; \<And>x y. R x y \<Longrightarrow> rel_spmf P (f x) (g y) \<rbrakk>
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   751
  \<Longrightarrow> rel_spmf P (p \<bind> f) (q \<bind> g)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   752
by(fact bind_spmf_parametric[THEN rel_funD, THEN rel_funD, OF _ rel_funI])
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   753
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   754
lemma rel_spmf_bind_reflI:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   755
  "(\<And>x. x \<in> set_spmf p \<Longrightarrow> rel_spmf P (f x) (g x)) \<Longrightarrow> rel_spmf P (p \<bind> f) (p \<bind> g)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   756
by(rule rel_spmf_bindI[where R="\<lambda>x y. x = y \<and> x \<in> set_spmf p"])(auto intro: rel_spmf_reflI)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   757
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   758
lemma rel_pmf_return_pmfI: "P x y \<Longrightarrow> rel_pmf P (return_pmf x) (return_pmf y)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   759
by(rule rel_pmf.intros[where pq="return_pmf (x, y)"])(simp_all)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   760
63343
fb5d8a50c641 bundle lifting_syntax;
wenzelm
parents: 63333
diff changeset
   761
context includes lifting_syntax
fb5d8a50c641 bundle lifting_syntax;
wenzelm
parents: 63333
diff changeset
   762
begin
fb5d8a50c641 bundle lifting_syntax;
wenzelm
parents: 63333
diff changeset
   763
69597
ff784d5a5bfb isabelle update -u control_cartouches;
wenzelm
parents: 69260
diff changeset
   764
text \<open>We do not yet have a relator for \<^typ>\<open>'a measure\<close>, so we combine \<^const>\<open>measure\<close> and \<^const>\<open>measure_pmf\<close>\<close>
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   765
lemma measure_pmf_parametric:
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
   766
  "(rel_pmf A ===> rel_pred A ===> (=)) (\<lambda>p. measure (measure_pmf p)) (\<lambda>q. measure (measure_pmf q))"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   767
proof(rule rel_funI)+
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   768
  fix p q X Y
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   769
  assume "rel_pmf A p q" and "rel_pred A X Y"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   770
  from this(1) obtain pq where A: "\<And>x y. (x, y) \<in> set_pmf pq \<Longrightarrow> A x y"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   771
    and p: "p = map_pmf fst pq" and q: "q = map_pmf snd pq" by cases auto
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   772
  show "measure p X = measure q Y" unfolding p q measure_map_pmf
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   773
    by(rule measure_pmf.finite_measure_eq_AE)(auto simp add: AE_measure_pmf_iff dest!: A rel_predD[OF \<open>rel_pred _ _ _\<close>])
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   774
qed
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   775
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   776
lemma measure_spmf_parametric:
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
   777
  "(rel_spmf A ===> rel_pred A ===> (=)) (\<lambda>p. measure (measure_spmf p)) (\<lambda>q. measure (measure_spmf q))"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   778
unfolding measure_measure_spmf_conv_measure_pmf[abs_def]
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   779
apply(rule rel_funI)+
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   780
apply(erule measure_pmf_parametric[THEN rel_funD, THEN rel_funD])
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   781
apply(auto simp add: rel_pred_def rel_fun_def elim: option.rel_cases)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   782
done
63343
fb5d8a50c641 bundle lifting_syntax;
wenzelm
parents: 63333
diff changeset
   783
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   784
end
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   785
69597
ff784d5a5bfb isabelle update -u control_cartouches;
wenzelm
parents: 69260
diff changeset
   786
subsection \<open>From \<^typ>\<open>'a pmf\<close> to \<^typ>\<open>'a spmf\<close>\<close>
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   787
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   788
definition spmf_of_pmf :: "'a pmf \<Rightarrow> 'a spmf"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   789
where "spmf_of_pmf = map_pmf Some"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   790
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   791
lemma set_spmf_spmf_of_pmf [simp]: "set_spmf (spmf_of_pmf p) = set_pmf p"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   792
by(auto simp add: spmf_of_pmf_def set_spmf_def bind_image o_def)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   793
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   794
lemma spmf_spmf_of_pmf [simp]: "spmf (spmf_of_pmf p) x = pmf p x"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   795
by(simp add: spmf_of_pmf_def)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   796
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   797
lemma pmf_spmf_of_pmf_None [simp]: "pmf (spmf_of_pmf p) None = 0"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   798
using ennreal_pmf_map[of Some p None] by(simp add: spmf_of_pmf_def)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   799
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   800
lemma emeasure_spmf_of_pmf [simp]: "emeasure (measure_spmf (spmf_of_pmf p)) A = emeasure (measure_pmf p) A"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   801
by(simp add: emeasure_measure_spmf_conv_measure_pmf spmf_of_pmf_def inj_vimage_image_eq)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   802
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   803
lemma measure_spmf_spmf_of_pmf [simp]: "measure_spmf (spmf_of_pmf p) = measure_pmf p"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   804
by(rule measure_eqI) simp_all
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   805
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   806
lemma map_spmf_of_pmf [simp]: "map_spmf f (spmf_of_pmf p) = spmf_of_pmf (map_pmf f p)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   807
by(simp add: spmf_of_pmf_def pmf.map_comp o_def)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   808
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   809
lemma rel_spmf_spmf_of_pmf [simp]: "rel_spmf R (spmf_of_pmf p) (spmf_of_pmf q) = rel_pmf R p q"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   810
by(simp add: spmf_of_pmf_def pmf.rel_map)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   811
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   812
lemma spmf_of_pmf_return_pmf [simp]: "spmf_of_pmf (return_pmf x) = return_spmf x"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   813
by(simp add: spmf_of_pmf_def)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   814
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   815
lemma bind_spmf_of_pmf [simp]: "bind_spmf (spmf_of_pmf p) f = bind_pmf p f"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   816
by(simp add: spmf_of_pmf_def bind_spmf_def bind_map_pmf)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   817
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   818
lemma set_spmf_bind_pmf: "set_spmf (bind_pmf p f) = Set.bind (set_pmf p) (set_spmf \<circ> f)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   819
unfolding bind_spmf_of_pmf[symmetric] by(subst set_bind_spmf) simp
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   820
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   821
lemma spmf_of_pmf_bind: "spmf_of_pmf (bind_pmf p f) = bind_pmf p (\<lambda>x. spmf_of_pmf (f x))"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   822
by(simp add: spmf_of_pmf_def map_bind_pmf)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   823
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   824
lemma bind_pmf_return_spmf: "p \<bind> (\<lambda>x. return_spmf (f x)) = spmf_of_pmf (map_pmf f p)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   825
by(simp add: map_pmf_def spmf_of_pmf_bind)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   826
63308
d49580620ecb isabelle update_cartouches -c -t;
wenzelm
parents: 63243
diff changeset
   827
subsection \<open>Weight of a subprobability\<close>
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   828
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   829
abbreviation weight_spmf :: "'a spmf \<Rightarrow> real"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   830
where "weight_spmf p \<equiv> measure (measure_spmf p) (space (measure_spmf p))"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   831
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   832
lemma weight_spmf_def: "weight_spmf p = measure (measure_spmf p) UNIV"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   833
by(simp add: space_measure_spmf)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   834
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   835
lemma weight_spmf_le_1: "weight_spmf p \<le> 1"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   836
by(simp add: measure_spmf.subprob_measure_le_1)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   837
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   838
lemma weight_return_spmf [simp]: "weight_spmf (return_spmf x) = 1"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   839
by(simp add: measure_spmf_return_spmf measure_return)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   840
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   841
lemma weight_return_pmf_None [simp]: "weight_spmf (return_pmf None) = 0"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   842
by(simp)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   843
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   844
lemma weight_map_spmf [simp]: "weight_spmf (map_spmf f p) = weight_spmf p"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   845
by(simp add: weight_spmf_def measure_map_spmf)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   846
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   847
lemma weight_spmf_of_pmf [simp]: "weight_spmf (spmf_of_pmf p) = 1"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   848
using measure_pmf.prob_space[of p] by(simp add: spmf_of_pmf_def weight_spmf_def)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   849
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   850
lemma weight_spmf_nonneg: "weight_spmf p \<ge> 0"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   851
by(fact measure_nonneg)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   852
63333
158ab2239496 Probability: show that measures form a complete lattice
hoelzl
parents: 63308
diff changeset
   853
lemma (in finite_measure) integrable_weight_spmf [simp]:
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   854
  "(\<lambda>x. weight_spmf (f x)) \<in> borel_measurable M \<Longrightarrow> integrable M (\<lambda>x. weight_spmf (f x))"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   855
by(rule integrable_const_bound[where B=1])(simp_all add: weight_spmf_nonneg weight_spmf_le_1)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   856
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   857
lemma weight_spmf_eq_nn_integral_spmf: "weight_spmf p = \<integral>\<^sup>+ x. spmf p x \<partial>count_space UNIV"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   858
by(simp add: measure_measure_spmf_conv_measure_pmf space_measure_spmf measure_pmf.emeasure_eq_measure[symmetric] nn_integral_pmf[symmetric] embed_measure_count_space[symmetric] inj_on_def nn_integral_embed_measure measurable_embed_measure1)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   859
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   860
lemma weight_spmf_eq_nn_integral_support:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   861
  "weight_spmf p = \<integral>\<^sup>+ x. spmf p x \<partial>count_space (set_spmf p)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   862
unfolding weight_spmf_eq_nn_integral_spmf
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   863
by(auto simp add: nn_integral_count_space_indicator in_set_spmf_iff_spmf intro!: nn_integral_cong split: split_indicator)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   864
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   865
lemma pmf_None_eq_weight_spmf: "pmf p None = 1 - weight_spmf p"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   866
proof -
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   867
  have "weight_spmf p = \<integral>\<^sup>+ x. spmf p x \<partial>count_space UNIV" by(rule weight_spmf_eq_nn_integral_spmf)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   868
  also have "\<dots> = \<integral>\<^sup>+ x. ennreal (pmf p x) * indicator (range Some) x \<partial>count_space UNIV"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   869
    by(simp add: nn_integral_count_space_indicator[symmetric] embed_measure_count_space[symmetric] nn_integral_embed_measure measurable_embed_measure1)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   870
  also have "\<dots> + pmf p None = \<integral>\<^sup>+ x. ennreal (pmf p x) * indicator (range Some) x + ennreal (pmf p None) * indicator {None} x \<partial>count_space UNIV"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   871
    by(subst nn_integral_add)(simp_all add: max_def)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   872
  also have "\<dots> = \<integral>\<^sup>+ x. pmf p x \<partial>count_space UNIV"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   873
    by(rule nn_integral_cong)(auto split: split_indicator)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   874
  also have "\<dots> = 1" by (simp add: nn_integral_pmf)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   875
  finally show ?thesis by(simp add: ennreal_plus[symmetric] del: ennreal_plus)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   876
qed
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   877
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   878
lemma weight_spmf_conv_pmf_None: "weight_spmf p = 1 - pmf p None"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   879
by(simp add: pmf_None_eq_weight_spmf)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   880
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   881
lemma weight_spmf_le_0: "weight_spmf p \<le> 0 \<longleftrightarrow> weight_spmf p = 0"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   882
by(rule measure_le_0_iff)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   883
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   884
lemma weight_spmf_lt_0: "\<not> weight_spmf p < 0"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   885
by(simp add: not_less weight_spmf_nonneg)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   886
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   887
lemma spmf_le_weight: "spmf p x \<le> weight_spmf p"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   888
proof -
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   889
  have "ennreal (spmf p x) \<le> weight_spmf p"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   890
    unfolding weight_spmf_eq_nn_integral_spmf by(rule nn_integral_ge_point) simp
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   891
  then show ?thesis by simp
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   892
qed
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   893
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   894
lemma weight_spmf_eq_0: "weight_spmf p = 0 \<longleftrightarrow> p = return_pmf None"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   895
by(auto intro!: pmf_eqI simp add: pmf_None_eq_weight_spmf split: split_indicator)(metis not_Some_eq pmf_le_0_iff spmf_le_weight)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   896
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   897
lemma weight_bind_spmf: "weight_spmf (x \<bind> f) = lebesgue_integral (measure_spmf x) (weight_spmf \<circ> f)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   898
unfolding weight_spmf_def
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   899
by(simp add: measure_spmf_bind o_def measure_spmf.measure_bind[where N="count_space UNIV"])
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   900
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   901
lemma rel_spmf_weightD: "rel_spmf A p q \<Longrightarrow> weight_spmf p = weight_spmf q"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   902
by(erule rel_spmfE) simp
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   903
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   904
lemma rel_spmf_bij_betw:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   905
  assumes f: "bij_betw f (set_spmf p) (set_spmf q)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   906
  and eq: "\<And>x. x \<in> set_spmf p \<Longrightarrow> spmf p x = spmf q (f x)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   907
  shows "rel_spmf (\<lambda>x y. f x = y) p q"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   908
proof -
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   909
  let ?f = "map_option f"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   910
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   911
  have weq: "ennreal (weight_spmf p) = ennreal (weight_spmf q)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   912
    unfolding weight_spmf_eq_nn_integral_support
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   913
    by(subst nn_integral_bij_count_space[OF f, symmetric])(rule nn_integral_cong_AE, simp add: eq AE_count_space)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   914
  then have "None \<in> set_pmf p \<longleftrightarrow> None \<in> set_pmf q"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   915
    by(simp add: pmf_None_eq_weight_spmf set_pmf_iff)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   916
  with f have "bij_betw (map_option f) (set_pmf p) (set_pmf q)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   917
    apply(auto simp add: bij_betw_def in_set_spmf inj_on_def intro: option.expand)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   918
    apply(rename_tac [!] x)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   919
    apply(case_tac [!] x)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   920
    apply(auto iff: in_set_spmf)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   921
    done
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   922
  then have "rel_pmf (\<lambda>x y. ?f x = y) p q"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   923
    by(rule rel_pmf_bij_betw)(case_tac x, simp_all add: weq[simplified] eq in_set_spmf pmf_None_eq_weight_spmf)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   924
  thus ?thesis by(rule pmf.rel_mono_strong)(auto intro!: rel_optionI simp add: Option.is_none_def)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   925
qed
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   926
63308
d49580620ecb isabelle update_cartouches -c -t;
wenzelm
parents: 63243
diff changeset
   927
subsection \<open>From density to spmfs\<close>
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   928
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   929
context fixes f :: "'a \<Rightarrow> real" begin
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   930
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   931
definition embed_spmf :: "'a spmf"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   932
where "embed_spmf = embed_pmf (\<lambda>x. case x of None \<Rightarrow> 1 - enn2real (\<integral>\<^sup>+ x. ennreal (f x) \<partial>count_space UNIV) | Some x' \<Rightarrow> max 0 (f x'))"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   933
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   934
context
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   935
  assumes prob: "(\<integral>\<^sup>+ x. ennreal (f x) \<partial>count_space UNIV) \<le> 1"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   936
begin
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   937
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   938
lemma nn_integral_embed_spmf_eq_1:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   939
  "(\<integral>\<^sup>+ x. ennreal (case x of None \<Rightarrow> 1 - enn2real (\<integral>\<^sup>+ x. ennreal (f x) \<partial>count_space UNIV) | Some x' \<Rightarrow> max 0 (f x')) \<partial>count_space UNIV) = 1"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   940
  (is "?lhs = _" is "(\<integral>\<^sup>+ x. ?f x \<partial>?M) = _")
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   941
proof -
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   942
  have "?lhs = \<integral>\<^sup>+ x. ?f x * indicator {None} x + ?f x * indicator (range Some) x \<partial>?M"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   943
    by(rule nn_integral_cong)(auto split: split_indicator)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   944
  also have "\<dots> = (1 - enn2real (\<integral>\<^sup>+ x. ennreal (f x) \<partial>count_space UNIV)) + \<integral>\<^sup>+ x. ?f x * indicator (range Some) x \<partial>?M"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   945
    (is "_ = ?None + ?Some")
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   946
    by(subst nn_integral_add)(simp_all add: AE_count_space max_def le_diff_eq real_le_ereal_iff one_ereal_def[symmetric] prob split: option.split)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   947
  also have "?Some = \<integral>\<^sup>+ x. ?f x \<partial>count_space (range Some)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   948
    by(simp add: nn_integral_count_space_indicator)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   949
  also have "count_space (range Some) = embed_measure (count_space UNIV) Some"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   950
    by(simp add: embed_measure_count_space)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   951
  also have "(\<integral>\<^sup>+ x. ?f x \<partial>\<dots>) = \<integral>\<^sup>+ x. ennreal (f x) \<partial>count_space UNIV"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   952
    by(subst nn_integral_embed_measure)(simp_all add: measurable_embed_measure1)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   953
  also have "?None + \<dots> = 1" using prob
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   954
    by(auto simp add: ennreal_minus[symmetric] ennreal_1[symmetric] ennreal_enn2real_if top_unique simp del: ennreal_1)(simp add: diff_add_self_ennreal)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   955
  finally show ?thesis .
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   956
qed
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   957
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   958
lemma pmf_embed_spmf_None: "pmf embed_spmf None = 1 - enn2real (\<integral>\<^sup>+ x. ennreal (f x) \<partial>count_space UNIV)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   959
unfolding embed_spmf_def
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   960
apply(subst pmf_embed_pmf)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   961
  subgoal using prob by(simp add: field_simps enn2real_leI split: option.split)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   962
 apply(rule nn_integral_embed_spmf_eq_1)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   963
apply simp
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   964
done
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   965
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   966
lemma spmf_embed_spmf [simp]: "spmf embed_spmf x = max 0 (f x)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   967
unfolding embed_spmf_def
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   968
apply(subst pmf_embed_pmf)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   969
  subgoal using prob by(simp add: field_simps enn2real_leI split: option.split)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   970
 apply(rule nn_integral_embed_spmf_eq_1)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   971
apply simp
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   972
done
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   973
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   974
end
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   975
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   976
end
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   977
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   978
lemma embed_spmf_K_0[simp]: "embed_spmf (\<lambda>_. 0) = return_pmf None" (is "?lhs = ?rhs")
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   979
by(rule spmf_eqI)(simp add: zero_ereal_def[symmetric])
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   980
63308
d49580620ecb isabelle update_cartouches -c -t;
wenzelm
parents: 63243
diff changeset
   981
subsection \<open>Ordering on spmfs\<close>
d49580620ecb isabelle update_cartouches -c -t;
wenzelm
parents: 63243
diff changeset
   982
d49580620ecb isabelle update_cartouches -c -t;
wenzelm
parents: 63243
diff changeset
   983
text \<open>
69597
ff784d5a5bfb isabelle update -u control_cartouches;
wenzelm
parents: 69260
diff changeset
   984
  \<^const>\<open>rel_pmf\<close> does not preserve a ccpo structure. Counterexample by Saheb-Djahromi:
63308
d49580620ecb isabelle update_cartouches -c -t;
wenzelm
parents: 63243
diff changeset
   985
  Take prefix order over \<open>bool llist\<close> and
d49580620ecb isabelle update_cartouches -c -t;
wenzelm
parents: 63243
diff changeset
   986
  the set \<open>range (\<lambda>n :: nat. uniform (llist_n n))\<close> where \<open>llist_n\<close> is the set
d49580620ecb isabelle update_cartouches -c -t;
wenzelm
parents: 63243
diff changeset
   987
  of all \<open>llist\<close>s of length \<open>n\<close> and \<open>uniform\<close> returns a uniform distribution over
d49580620ecb isabelle update_cartouches -c -t;
wenzelm
parents: 63243
diff changeset
   988
  the given set. The set forms a chain in \<open>ord_pmf lprefix\<close>, but it has not an upper bound.
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   989
  Any upper bound may contain only infinite lists in its support because otherwise it is not greater
63308
d49580620ecb isabelle update_cartouches -c -t;
wenzelm
parents: 63243
diff changeset
   990
  than the \<open>n+1\<close>-st element in the chain where \<open>n\<close> is the length of the finite list.
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   991
  Moreover its support must contain all infinite lists, because otherwise there is a finite list
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   992
  all of whose finite extensions are not in the support - a contradiction to the upper bound property.
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   993
  Hence, the support is uncountable, but pmf's only have countable support.
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   994
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   995
  However, if all chains in the ccpo are finite, then it should preserve the ccpo structure.
63308
d49580620ecb isabelle update_cartouches -c -t;
wenzelm
parents: 63243
diff changeset
   996
\<close>
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   997
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   998
abbreviation ord_spmf :: "('a \<Rightarrow> 'a \<Rightarrow> bool) \<Rightarrow> 'a spmf \<Rightarrow> 'a spmf \<Rightarrow> bool"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
   999
where "ord_spmf ord \<equiv> rel_pmf (ord_option ord)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1000
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1001
locale ord_spmf_syntax begin
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1002
notation ord_spmf (infix "\<sqsubseteq>\<index>" 60)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1003
end
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1004
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1005
lemma ord_spmf_map_spmf1: "ord_spmf R (map_spmf f p) = ord_spmf (\<lambda>x. R (f x)) p"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1006
by(simp add: pmf.rel_map[abs_def] ord_option_map1[abs_def])
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1007
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1008
lemma ord_spmf_map_spmf2: "ord_spmf R p (map_spmf f q) = ord_spmf (\<lambda>x y. R x (f y)) p q"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1009
by(simp add: pmf.rel_map ord_option_map2)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1010
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1011
lemma ord_spmf_map_spmf12: "ord_spmf R (map_spmf f p) (map_spmf f q) = ord_spmf (\<lambda>x y. R (f x) (f y)) p q"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1012
by(simp add: pmf.rel_map ord_option_map1[abs_def] ord_option_map2)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1013
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1014
lemmas ord_spmf_map_spmf = ord_spmf_map_spmf1 ord_spmf_map_spmf2 ord_spmf_map_spmf12
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1015
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1016
context fixes ord :: "'a \<Rightarrow> 'a \<Rightarrow> bool" (structure) begin
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1017
interpretation ord_spmf_syntax .
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1018
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1019
lemma ord_spmfI:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1020
  "\<lbrakk> \<And>x y. (x, y) \<in> set_spmf pq \<Longrightarrow> ord x y; map_spmf fst pq = p; map_spmf snd pq = q \<rbrakk>
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1021
  \<Longrightarrow> p \<sqsubseteq> q"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1022
by(rule rel_pmf.intros[where pq="map_pmf (\<lambda>x. case x of None \<Rightarrow> (None, None) | Some (a, b) \<Rightarrow> (Some a, Some b)) pq"])
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1023
  (auto simp add: pmf.map_comp o_def in_set_spmf split: option.splits intro: pmf.map_cong)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1024
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1025
lemma ord_spmf_None [simp]: "return_pmf None \<sqsubseteq> x"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1026
by(rule rel_pmf.intros[where pq="map_pmf (Pair None) x"])(auto simp add: pmf.map_comp o_def)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1027
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1028
lemma ord_spmf_reflI: "(\<And>x. x \<in> set_spmf p \<Longrightarrow> ord x x) \<Longrightarrow> p \<sqsubseteq> p"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1029
by(rule rel_pmf_reflI ord_option_reflI)+(auto simp add: in_set_spmf)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1030
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1031
lemma rel_spmf_inf:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1032
  assumes "p \<sqsubseteq> q"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1033
  and "q \<sqsubseteq> p"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1034
  and refl: "reflp ord"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1035
  and trans: "transp ord"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1036
  shows "rel_spmf (inf ord ord\<inverse>\<inverse>) p q"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1037
proof -
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1038
  from \<open>p \<sqsubseteq> q\<close> \<open>q \<sqsubseteq> p\<close>
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1039
  have "rel_pmf (inf (ord_option ord) (ord_option ord)\<inverse>\<inverse>) p q"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1040
    by(rule rel_pmf_inf)(blast intro: reflp_ord_option transp_ord_option refl trans)+
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1041
  also have "inf (ord_option ord) (ord_option ord)\<inverse>\<inverse> = rel_option (inf ord ord\<inverse>\<inverse>)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1042
    by(auto simp add: fun_eq_iff elim: ord_option.cases option.rel_cases)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1043
  finally show ?thesis .
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1044
qed
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1045
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1046
end
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1047
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1048
lemma ord_spmf_return_spmf2: "ord_spmf R p (return_spmf y) \<longleftrightarrow> (\<forall>x\<in>set_spmf p. R x y)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1049
by(auto simp add: rel_pmf_return_pmf2 in_set_spmf ord_option.simps intro: ccontr)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1050
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1051
lemma ord_spmf_mono: "\<lbrakk> ord_spmf A p q; \<And>x y. A x y \<Longrightarrow> B x y \<rbrakk> \<Longrightarrow> ord_spmf B p q"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1052
by(erule rel_pmf_mono)(erule ord_option_mono)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1053
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1054
lemma ord_spmf_compp: "ord_spmf (A OO B) = ord_spmf A OO ord_spmf B"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1055
by(simp add: ord_option_compp pmf.rel_compp)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1056
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1057
lemma ord_spmf_bindI:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1058
  assumes pq: "ord_spmf R p q"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1059
  and fg: "\<And>x y. R x y \<Longrightarrow> ord_spmf P (f x) (g y)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1060
  shows "ord_spmf P (p \<bind> f) (q \<bind> g)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1061
unfolding bind_spmf_def using pq
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1062
by(rule rel_pmf_bindI)(auto split: option.split intro: fg)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1063
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1064
lemma ord_spmf_bind_reflI:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1065
  "(\<And>x. x \<in> set_spmf p \<Longrightarrow> ord_spmf R (f x) (g x))
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1066
  \<Longrightarrow> ord_spmf R (p \<bind> f) (p \<bind> g)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1067
by(rule ord_spmf_bindI[where R="\<lambda>x y. x = y \<and> x \<in> set_spmf p"])(auto intro: ord_spmf_reflI)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1068
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1069
lemma ord_pmf_increaseI:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1070
  assumes le: "\<And>x. spmf p x \<le> spmf q x"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1071
  and refl: "\<And>x. x \<in> set_spmf p \<Longrightarrow> R x x"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1072
  shows "ord_spmf R p q"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1073
proof(rule rel_pmf.intros)
63333
158ab2239496 Probability: show that measures form a complete lattice
hoelzl
parents: 63308
diff changeset
  1074
  define pq where "pq = embed_pmf
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1075
    (\<lambda>(x, y). case x of Some x' \<Rightarrow> (case y of Some y' \<Rightarrow> if x' = y' then spmf p x' else 0 | None \<Rightarrow> 0)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1076
      | None \<Rightarrow> (case y of None \<Rightarrow> pmf q None | Some y' \<Rightarrow> spmf q y' - spmf p y'))"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1077
     (is "_ = embed_pmf ?f")
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1078
  have nonneg: "\<And>xy. ?f xy \<ge> 0"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1079
    by(clarsimp simp add: le field_simps split: option.split)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1080
  have integral: "(\<integral>\<^sup>+ xy. ?f xy \<partial>count_space UNIV) = 1" (is "nn_integral ?M _ = _")
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1081
  proof -
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1082
    have "(\<integral>\<^sup>+ xy. ?f xy \<partial>count_space UNIV) =
63333
158ab2239496 Probability: show that measures form a complete lattice
hoelzl
parents: 63308
diff changeset
  1083
      \<integral>\<^sup>+ xy. ennreal (?f xy) * indicator {(None, None)} xy +
158ab2239496 Probability: show that measures form a complete lattice
hoelzl
parents: 63308
diff changeset
  1084
             ennreal (?f xy) * indicator (range (\<lambda>x. (None, Some x))) xy +
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1085
             ennreal (?f xy) * indicator (range (\<lambda>x. (Some x, Some x))) xy \<partial>?M"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1086
      by(rule nn_integral_cong)(auto split: split_indicator option.splits if_split_asm)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1087
    also have "\<dots> = (\<integral>\<^sup>+ xy. ?f xy * indicator {(None, None)} xy \<partial>?M) +
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1088
        (\<integral>\<^sup>+ xy. ennreal (?f xy) * indicator (range (\<lambda>x. (None, Some x))) xy \<partial>?M) +
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1089
        (\<integral>\<^sup>+ xy. ennreal (?f xy) * indicator (range (\<lambda>x. (Some x, Some x))) xy \<partial>?M)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1090
      (is "_ = ?None + ?Some2 + ?Some")
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1091
      by(subst nn_integral_add)(simp_all add: nn_integral_add AE_count_space le_diff_eq le split: option.split)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1092
    also have "?None = pmf q None" by simp
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1093
    also have "?Some2 = \<integral>\<^sup>+ x. ennreal (spmf q x) - spmf p x \<partial>count_space UNIV"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1094
      by(simp add: nn_integral_count_space_indicator[symmetric] embed_measure_count_space[symmetric] inj_on_def nn_integral_embed_measure measurable_embed_measure1 ennreal_minus)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1095
    also have "\<dots> = (\<integral>\<^sup>+ x. spmf q x \<partial>count_space UNIV) - (\<integral>\<^sup>+ x. spmf p x \<partial>count_space UNIV)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1096
      (is "_ = ?Some2' - ?Some2''")
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1097
      by(subst nn_integral_diff)(simp_all add: le nn_integral_spmf_neq_top)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1098
    also have "?Some = \<integral>\<^sup>+ x. spmf p x \<partial>count_space UNIV"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1099
      by(simp add: nn_integral_count_space_indicator[symmetric] embed_measure_count_space[symmetric] inj_on_def nn_integral_embed_measure measurable_embed_measure1)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1100
    also have "pmf q None + (?Some2' - ?Some2'') + \<dots> = pmf q None + ?Some2'"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1101
      by(auto simp add: diff_add_self_ennreal le intro!: nn_integral_mono)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1102
    also have "\<dots> = \<integral>\<^sup>+ x. ennreal (pmf q x) * indicator {None} x + ennreal (pmf q x) * indicator (range Some) x \<partial>count_space UNIV"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1103
      by(subst nn_integral_add)(simp_all add: nn_integral_count_space_indicator[symmetric] embed_measure_count_space[symmetric] nn_integral_embed_measure measurable_embed_measure1)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1104
    also have "\<dots> = \<integral>\<^sup>+ x. pmf q x \<partial>count_space UNIV"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1105
      by(rule nn_integral_cong)(auto split: split_indicator)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1106
    also have "\<dots> = 1" by(simp add: nn_integral_pmf)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1107
    finally show ?thesis .
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1108
  qed
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1109
  note f = nonneg integral
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1110
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1111
  { fix x y
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1112
    assume "(x, y) \<in> set_pmf pq"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1113
    hence "?f (x, y) \<noteq> 0" unfolding pq_def by(simp add: set_embed_pmf[OF f])
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1114
    then show "ord_option R x y"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1115
      by(simp add: spmf_eq_0_set_spmf refl split: option.split_asm if_split_asm) }
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1116
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1117
  have weight_le: "weight_spmf p \<le> weight_spmf q"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1118
    by(subst ennreal_le_iff[symmetric])(auto simp add: weight_spmf_eq_nn_integral_spmf intro!: nn_integral_mono le)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1119
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1120
  show "map_pmf fst pq = p"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1121
  proof(rule pmf_eqI)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1122
    fix i
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1123
    have "ennreal (pmf (map_pmf fst pq) i) = (\<integral>\<^sup>+ y. pmf pq (i, y) \<partial>count_space UNIV)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1124
      unfolding pq_def ennreal_pmf_map
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1125
      apply(simp add: embed_pmf.rep_eq[OF f] o_def emeasure_density nn_integral_count_space_indicator[symmetric])
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1126
      apply(subst pmf_embed_pmf[OF f])
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1127
      apply(rule nn_integral_bij_count_space[symmetric])
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1128
      apply(auto simp add: bij_betw_def inj_on_def)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1129
      done
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1130
    also have "\<dots> = pmf p i"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1131
    proof(cases i)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1132
      case (Some x)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1133
      have "(\<integral>\<^sup>+ y. pmf pq (Some x, y) \<partial>count_space UNIV) = \<integral>\<^sup>+ y. pmf p (Some x) * indicator {Some x} y \<partial>count_space UNIV"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1134
        by(rule nn_integral_cong)(simp add: pq_def pmf_embed_pmf[OF f] split: option.split)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1135
      then show ?thesis using Some by simp
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1136
    next
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1137
      case None
63333
158ab2239496 Probability: show that measures form a complete lattice
hoelzl
parents: 63308
diff changeset
  1138
      have "(\<integral>\<^sup>+ y. pmf pq (None, y) \<partial>count_space UNIV) =
158ab2239496 Probability: show that measures form a complete lattice
hoelzl
parents: 63308
diff changeset
  1139
            (\<integral>\<^sup>+ y. ennreal (pmf pq (None, Some (the y))) * indicator (range Some) y +
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1140
                   ennreal (pmf pq (None, None)) * indicator {None} y \<partial>count_space UNIV)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1141
        by(rule nn_integral_cong)(auto split: split_indicator)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1142
      also have "\<dots> = (\<integral>\<^sup>+ y. ennreal (pmf pq (None, Some (the y))) \<partial>count_space (range Some)) + pmf pq (None, None)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1143
        by(subst nn_integral_add)(simp_all add: nn_integral_count_space_indicator)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1144
      also have "\<dots> = (\<integral>\<^sup>+ y. ennreal (spmf q y) - ennreal (spmf p y) \<partial>count_space UNIV) + pmf q None"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1145
        by(simp add: pq_def pmf_embed_pmf[OF f] embed_measure_count_space[symmetric] nn_integral_embed_measure measurable_embed_measure1 ennreal_minus)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1146
      also have "(\<integral>\<^sup>+ y. ennreal (spmf q y) - ennreal (spmf p y) \<partial>count_space UNIV) =
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1147
                 (\<integral>\<^sup>+ y. spmf q y \<partial>count_space UNIV) - (\<integral>\<^sup>+ y. spmf p y \<partial>count_space UNIV)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1148
        by(subst nn_integral_diff)(simp_all add: AE_count_space le nn_integral_spmf_neq_top split: split_indicator)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1149
      also have "\<dots> = pmf p None - pmf q None"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1150
        by(simp add: pmf_None_eq_weight_spmf weight_spmf_eq_nn_integral_spmf[symmetric] ennreal_minus)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1151
      also have "\<dots> = ennreal (pmf p None) - ennreal (pmf q None)" by(simp add: ennreal_minus)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1152
      finally show ?thesis using None weight_le
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1153
        by(auto simp add: diff_add_self_ennreal pmf_None_eq_weight_spmf intro: ennreal_leI)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1154
    qed
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1155
    finally show "pmf (map_pmf fst pq) i = pmf p i" by simp
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1156
  qed
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1157
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1158
  show "map_pmf snd pq = q"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1159
  proof(rule pmf_eqI)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1160
    fix i
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1161
    have "ennreal (pmf (map_pmf snd pq) i) = (\<integral>\<^sup>+ x. pmf pq (x, i) \<partial>count_space UNIV)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1162
      unfolding pq_def ennreal_pmf_map
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1163
      apply(simp add: embed_pmf.rep_eq[OF f] o_def emeasure_density nn_integral_count_space_indicator[symmetric])
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1164
      apply(subst pmf_embed_pmf[OF f])
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1165
      apply(rule nn_integral_bij_count_space[symmetric])
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1166
      apply(auto simp add: bij_betw_def inj_on_def)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1167
      done
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1168
    also have "\<dots> = ennreal (pmf q i)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1169
    proof(cases i)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1170
      case None
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1171
      have "(\<integral>\<^sup>+ x. pmf pq (x, None) \<partial>count_space UNIV) = \<integral>\<^sup>+ x. pmf q None * indicator {None :: 'a option} x \<partial>count_space UNIV"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1172
        by(rule nn_integral_cong)(simp add: pq_def pmf_embed_pmf[OF f] split: option.split)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1173
      then show ?thesis using None by simp
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1174
    next
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1175
      case (Some y)
63333
158ab2239496 Probability: show that measures form a complete lattice
hoelzl
parents: 63308
diff changeset
  1176
      have "(\<integral>\<^sup>+ x. pmf pq (x, Some y) \<partial>count_space UNIV) =
158ab2239496 Probability: show that measures form a complete lattice
hoelzl
parents: 63308
diff changeset
  1177
        (\<integral>\<^sup>+ x. ennreal (pmf pq (x, Some y)) * indicator (range Some) x +
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1178
               ennreal (pmf pq (None, Some y)) * indicator {None} x \<partial>count_space UNIV)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1179
        by(rule nn_integral_cong)(auto split: split_indicator)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1180
      also have "\<dots> = (\<integral>\<^sup>+ x. ennreal (pmf pq (x, Some y)) * indicator (range Some) x \<partial>count_space UNIV) + pmf pq (None, Some y)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1181
        by(subst nn_integral_add)(simp_all)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1182
      also have "\<dots> = (\<integral>\<^sup>+ x. ennreal (spmf p y) * indicator {Some y} x \<partial>count_space UNIV) + (spmf q y - spmf p y)"
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  1183
        by(auto simp add: pq_def pmf_embed_pmf[OF f] one_ereal_def[symmetric] simp del: nn_integral_indicator_singleton intro!: arg_cong2[where f="(+)"] nn_integral_cong split: option.split)
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1184
      also have "\<dots> = spmf q y" by(simp add: ennreal_minus[symmetric] le)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1185
      finally show ?thesis using Some by simp
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1186
    qed
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1187
    finally show "pmf (map_pmf snd pq) i = pmf q i" by simp
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1188
  qed
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1189
qed
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1190
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1191
lemma ord_spmf_eq_leD:
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  1192
  assumes "ord_spmf (=) p q"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1193
  shows "spmf p x \<le> spmf q x"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1194
proof(cases "x \<in> set_spmf p")
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1195
  case False
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1196
  thus ?thesis by(simp add: in_set_spmf_iff_spmf)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1197
next
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1198
  case True
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1199
  from assms obtain pq
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  1200
    where pq: "\<And>x y. (x, y) \<in> set_pmf pq \<Longrightarrow> ord_option (=) x y"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1201
    and p: "p = map_pmf fst pq"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1202
    and q: "q = map_pmf snd pq" by cases auto
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1203
  have "ennreal (spmf p x) = integral\<^sup>N pq (indicator (fst -` {Some x}))"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1204
    using p by(simp add: ennreal_pmf_map)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1205
  also have "\<dots> = integral\<^sup>N pq (indicator {(Some x, Some x)})"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1206
    by(rule nn_integral_cong_AE)(auto simp add: AE_measure_pmf_iff split: split_indicator dest: pq)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1207
  also have "\<dots> \<le> integral\<^sup>N pq (indicator (snd -` {Some x}))"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1208
    by(rule nn_integral_mono) simp
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1209
  also have "\<dots> = ennreal (spmf q x)" using q by(simp add: ennreal_pmf_map)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1210
  finally show ?thesis by simp
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1211
qed
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1212
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  1213
lemma ord_spmf_eqD_set_spmf: "ord_spmf (=) p q \<Longrightarrow> set_spmf p \<subseteq> set_spmf q"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1214
by(rule subsetI)(drule_tac x=x in ord_spmf_eq_leD, auto simp add: in_set_spmf_iff_spmf)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1215
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1216
lemma ord_spmf_eqD_emeasure:
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  1217
  "ord_spmf (=) p q \<Longrightarrow> emeasure (measure_spmf p) A \<le> emeasure (measure_spmf q) A"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1218
by(auto intro!: nn_integral_mono split: split_indicator dest: ord_spmf_eq_leD simp add: nn_integral_measure_spmf nn_integral_indicator[symmetric])
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1219
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  1220
lemma ord_spmf_eqD_measure_spmf: "ord_spmf (=) p q \<Longrightarrow> measure_spmf p \<le> measure_spmf q"
63333
158ab2239496 Probability: show that measures form a complete lattice
hoelzl
parents: 63308
diff changeset
  1221
  by (subst le_measure) (auto simp: ord_spmf_eqD_emeasure)
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1222
69597
ff784d5a5bfb isabelle update -u control_cartouches;
wenzelm
parents: 69260
diff changeset
  1223
subsection \<open>CCPO structure for the flat ccpo \<^term>\<open>ord_option (=)\<close>\<close>
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1224
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1225
context fixes Y :: "'a spmf set" begin
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1226
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1227
definition lub_spmf :: "'a spmf"
69260
0a9688695a1b removed relics of ASCII syntax for indexed big operators
haftmann
parents: 67399
diff changeset
  1228
where "lub_spmf = embed_spmf (\<lambda>x. enn2real (SUP p \<in> Y. ennreal (spmf p x)))"
69597
ff784d5a5bfb isabelle update -u control_cartouches;
wenzelm
parents: 69260
diff changeset
  1229
  \<comment> \<open>We go through \<^typ>\<open>ennreal\<close> to have a sensible definition even if \<^term>\<open>Y\<close> is empty.\<close>
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1230
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1231
lemma lub_spmf_empty [simp]: "SPMF.lub_spmf {} = return_pmf None"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1232
by(simp add: SPMF.lub_spmf_def bot_ereal_def)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1233
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  1234
context assumes chain: "Complete_Partial_Order.chain (ord_spmf (=)) Y" begin
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  1235
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  1236
lemma chain_ord_spmf_eqD: "Complete_Partial_Order.chain (\<le>) ((\<lambda>p x. ennreal (spmf p x)) ` Y)"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1237
  (is "Complete_Partial_Order.chain _ (?f ` _)")
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1238
proof(rule chainI)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1239
  fix f g
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1240
  assume "f \<in> ?f ` Y" "g \<in> ?f ` Y"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1241
  then obtain p q where f: "f = ?f p" "p \<in> Y" and g: "g = ?f q" "q \<in> Y" by blast
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  1242
  from chain \<open>p \<in> Y\<close> \<open>q \<in> Y\<close> have "ord_spmf (=) p q \<or> ord_spmf (=) q p" by(rule chainD)
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1243
  thus "f \<le> g \<or> g \<le> f"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1244
  proof
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  1245
    assume "ord_spmf (=) p q"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1246
    hence "\<And>x. spmf p x \<le> spmf q x" by(rule ord_spmf_eq_leD)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1247
    hence "f \<le> g" unfolding f g by(auto intro: le_funI)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1248
    thus ?thesis ..
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1249
  next
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  1250
    assume "ord_spmf (=) q p"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1251
    hence "\<And>x. spmf q x \<le> spmf p x" by(rule ord_spmf_eq_leD)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1252
    hence "g \<le> f" unfolding f g by(auto intro: le_funI)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1253
    thus ?thesis ..
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1254
  qed
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1255
qed
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1256
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1257
lemma ord_spmf_eq_pmf_None_eq:
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  1258
  assumes le: "ord_spmf (=) p q"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1259
  and None: "pmf p None = pmf q None"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1260
  shows "p = q"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1261
proof(rule spmf_eqI)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1262
  fix i
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1263
  from le have le': "\<And>x. spmf p x \<le> spmf q x" by(rule ord_spmf_eq_leD)
63333
158ab2239496 Probability: show that measures form a complete lattice
hoelzl
parents: 63308
diff changeset
  1264
  have "(\<integral>\<^sup>+ x. ennreal (spmf q x) - spmf p x \<partial>count_space UNIV) =
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1265
     (\<integral>\<^sup>+ x. spmf q x \<partial>count_space UNIV) - (\<integral>\<^sup>+ x. spmf p x \<partial>count_space UNIV)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1266
    by(subst nn_integral_diff)(simp_all add: AE_count_space le' nn_integral_spmf_neq_top)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1267
  also have "\<dots> = (1 - pmf q None) - (1 - pmf p None)" unfolding pmf_None_eq_weight_spmf
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1268
    by(simp add: weight_spmf_eq_nn_integral_spmf[symmetric] ennreal_minus)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1269
  also have "\<dots> = 0" using None by simp
63333
158ab2239496 Probability: show that measures form a complete lattice
hoelzl
parents: 63308
diff changeset
  1270
  finally have "\<And>x. spmf q x \<le> spmf p x"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1271
    by(simp add: nn_integral_0_iff_AE AE_count_space ennreal_minus ennreal_eq_0_iff)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1272
  with le' show "spmf p i = spmf q i" by(rule antisym)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1273
qed
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1274
63333
158ab2239496 Probability: show that measures form a complete lattice
hoelzl
parents: 63308
diff changeset
  1275
lemma ord_spmf_eqD_pmf_None:
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  1276
  assumes "ord_spmf (=) x y"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1277
  shows "pmf x None \<ge> pmf y None"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1278
using assms
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1279
apply cases
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1280
apply(clarsimp simp only: ennreal_le_iff[symmetric, OF pmf_nonneg] ennreal_pmf_map)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1281
apply(fastforce simp add: AE_measure_pmf_iff intro!: nn_integral_mono_AE)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1282
done
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1283
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1284
text \<open>
69597
ff784d5a5bfb isabelle update -u control_cartouches;
wenzelm
parents: 69260
diff changeset
  1285
  Chains on \<^typ>\<open>'a spmf\<close> maintain countable support.
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1286
  Thanks to Johannes Hölzl for the proof idea.
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1287
\<close>
63333
158ab2239496 Probability: show that measures form a complete lattice
hoelzl
parents: 63308
diff changeset
  1288
lemma spmf_chain_countable: "countable (\<Union>p\<in>Y. set_spmf p)"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1289
proof(cases "Y = {}")
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1290
  case Y: False
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1291
  show ?thesis
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  1292
  proof(cases "\<exists>x\<in>Y. \<forall>y\<in>Y. ord_spmf (=) y x")
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1293
    case True
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  1294
    then obtain x where x: "x \<in> Y" and upper: "\<And>y. y \<in> Y \<Longrightarrow> ord_spmf (=) y x" by blast
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1295
    hence "(\<Union>x\<in>Y. set_spmf x) \<subseteq> set_spmf x" by(auto dest: ord_spmf_eqD_set_spmf)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1296
    thus ?thesis by(rule countable_subset) simp
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1297
  next
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1298
    case False
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1299
    define N :: "'a option pmf \<Rightarrow> real" where "N p = pmf p None" for p
63333
158ab2239496 Probability: show that measures form a complete lattice
hoelzl
parents: 63308
diff changeset
  1300
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  1301
    have N_less_imp_le_spmf: "\<lbrakk> x \<in> Y; y \<in> Y; N y < N x \<rbrakk> \<Longrightarrow> ord_spmf (=) x y" for x y
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1302
      using chainD[OF chain, of x y] ord_spmf_eqD_pmf_None[of x y] ord_spmf_eqD_pmf_None[of y x]
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1303
      by (auto simp: N_def)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1304
    have N_eq_imp_eq: "\<lbrakk> x \<in> Y; y \<in> Y; N y = N x \<rbrakk> \<Longrightarrow> x = y" for x y
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1305
      using chainD[OF chain, of x y] by(auto simp add: N_def dest: ord_spmf_eq_pmf_None_eq)
63333
158ab2239496 Probability: show that measures form a complete lattice
hoelzl
parents: 63308
diff changeset
  1306
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1307
    have NC: "N ` Y \<noteq> {}" "bdd_below (N ` Y)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1308
      using \<open>Y \<noteq> {}\<close> by(auto intro!: bdd_belowI[of _ 0] simp: N_def)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1309
    have NC_less: "Inf (N ` Y) < N x" if "x \<in> Y" for x unfolding cInf_less_iff[OF NC]
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1310
    proof(rule ccontr)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1311
      assume **: "\<not> (\<exists>y\<in>N ` Y. y < N x)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1312
      { fix y
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1313
        assume "y \<in> Y"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1314
        with ** consider "N x < N y" | "N x = N y" by(auto simp add: not_less le_less)
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  1315
        hence "ord_spmf (=) y x" using \<open>y \<in> Y\<close> \<open>x \<in> Y\<close>
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1316
          by cases(auto dest: N_less_imp_le_spmf N_eq_imp_eq intro: ord_spmf_reflI) }
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1317
      with False \<open>x \<in> Y\<close> show False by blast
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1318
    qed
63333
158ab2239496 Probability: show that measures form a complete lattice
hoelzl
parents: 63308
diff changeset
  1319
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1320
    from NC have "Inf (N ` Y) \<in> closure (N ` Y)" by (intro closure_contains_Inf)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1321
    then obtain X' where "\<And>n. X' n \<in> N ` Y" and X': "X' \<longlonglongrightarrow> Inf (N ` Y)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1322
      unfolding closure_sequential by auto
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1323
    then obtain X where X: "\<And>n. X n \<in> Y" and "X' = (\<lambda>n. N (X n))" unfolding image_iff Bex_def by metis
63333
158ab2239496 Probability: show that measures form a complete lattice
hoelzl
parents: 63308
diff changeset
  1324
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1325
    with X' have seq: "(\<lambda>n. N (X n)) \<longlonglongrightarrow> Inf (N ` Y)" by simp
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1326
    have "(\<Union>x \<in> Y. set_spmf x) \<subseteq> (\<Union>n. set_spmf (X n))"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1327
    proof(rule UN_least)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1328
      fix x
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1329
      assume "x \<in> Y"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1330
      from order_tendstoD(2)[OF seq NC_less[OF \<open>x \<in> Y\<close>]]
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1331
      obtain i where "N (X i) < N x" by (auto simp: eventually_sequentially)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1332
      thus "set_spmf x \<subseteq> (\<Union>n. set_spmf (X n))" using X \<open>x \<in> Y\<close>
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1333
        by(blast dest: N_less_imp_le_spmf ord_spmf_eqD_set_spmf)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1334
    qed
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1335
    thus ?thesis by(rule countable_subset) simp
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1336
  qed
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1337
qed simp
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1338
69260
0a9688695a1b removed relics of ASCII syntax for indexed big operators
haftmann
parents: 67399
diff changeset
  1339
lemma lub_spmf_subprob: "(\<integral>\<^sup>+ x. (SUP p \<in> Y. ennreal (spmf p x)) \<partial>count_space UNIV) \<le> 1"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1340
proof(cases "Y = {}")
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1341
  case True
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1342
  thus ?thesis by(simp add: bot_ennreal)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1343
next
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1344
  case False
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1345
  let ?B = "\<Union>p\<in>Y. set_spmf p"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1346
  have countable: "countable ?B" by(rule spmf_chain_countable)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1347
69260
0a9688695a1b removed relics of ASCII syntax for indexed big operators
haftmann
parents: 67399
diff changeset
  1348
  have "(\<integral>\<^sup>+ x. (SUP p\<in>Y. ennreal (spmf p x)) \<partial>count_space UNIV) =
0a9688695a1b removed relics of ASCII syntax for indexed big operators
haftmann
parents: 67399
diff changeset
  1349
        (\<integral>\<^sup>+ x. (SUP p\<in>Y. ennreal (spmf p x) * indicator ?B x) \<partial>count_space UNIV)"
69661
a03a63b81f44 tuned proofs
haftmann
parents: 69597
diff changeset
  1350
    by (intro nn_integral_cong arg_cong [of _ _ Sup]) (auto split: split_indicator simp add: spmf_eq_0_set_spmf)
69260
0a9688695a1b removed relics of ASCII syntax for indexed big operators
haftmann
parents: 67399
diff changeset
  1351
  also have "\<dots> = (\<integral>\<^sup>+ x. (SUP p\<in>Y. ennreal (spmf p x)) \<partial>count_space ?B)"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1352
    unfolding ennreal_indicator[symmetric] using False
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1353
    by(subst SUP_mult_right_ennreal[symmetric])(simp add: ennreal_indicator nn_integral_count_space_indicator)
69260
0a9688695a1b removed relics of ASCII syntax for indexed big operators
haftmann
parents: 67399
diff changeset
  1354
  also have "\<dots> = (SUP p\<in>Y. \<integral>\<^sup>+ x. spmf p x \<partial>count_space ?B)" using False _ countable
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1355
    by(rule nn_integral_monotone_convergence_SUP_countable)(rule chain_ord_spmf_eqD)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1356
  also have "\<dots> \<le> 1"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1357
  proof(rule SUP_least)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1358
    fix p
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1359
    assume "p \<in> Y"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1360
    have "(\<integral>\<^sup>+ x. spmf p x \<partial>count_space ?B) = \<integral>\<^sup>+ x. ennreal (spmf p x) * indicator ?B x \<partial>count_space UNIV"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1361
      by(simp add: nn_integral_count_space_indicator)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1362
    also have "\<dots> = \<integral>\<^sup>+ x. spmf p x \<partial>count_space UNIV"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1363
      by(rule nn_integral_cong)(auto split: split_indicator simp add: spmf_eq_0_set_spmf \<open>p \<in> Y\<close>)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1364
    also have "\<dots> \<le> 1"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1365
      by(simp add: weight_spmf_eq_nn_integral_spmf[symmetric] weight_spmf_le_1)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1366
    finally show "(\<integral>\<^sup>+ x. spmf p x \<partial>count_space ?B) \<le> 1" .
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1367
  qed
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1368
  finally show ?thesis .
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1369
qed
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1370
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1371
lemma spmf_lub_spmf:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1372
  assumes "Y \<noteq> {}"
69260
0a9688695a1b removed relics of ASCII syntax for indexed big operators
haftmann
parents: 67399
diff changeset
  1373
  shows "spmf lub_spmf x = (SUP p \<in> Y. spmf p x)"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1374
proof -
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1375
  from assms obtain p where "p \<in> Y" by auto
69260
0a9688695a1b removed relics of ASCII syntax for indexed big operators
haftmann
parents: 67399
diff changeset
  1376
  have "spmf lub_spmf x = max 0 (enn2real (SUP p\<in>Y. ennreal (spmf p x)))" unfolding lub_spmf_def
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1377
    by(rule spmf_embed_spmf)(simp del: SUP_eq_top_iff Sup_eq_top_iff add: ennreal_enn2real_if SUP_spmf_neq_top' lub_spmf_subprob)
69260
0a9688695a1b removed relics of ASCII syntax for indexed big operators
haftmann
parents: 67399
diff changeset
  1378
  also have "\<dots> = enn2real (SUP p\<in>Y. ennreal (spmf p x))"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1379
    by(rule max_absorb2)(simp)
69260
0a9688695a1b removed relics of ASCII syntax for indexed big operators
haftmann
parents: 67399
diff changeset
  1380
  also have "\<dots> = enn2real (ennreal (SUP p \<in> Y. spmf p x))" using assms
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1381
    by(subst ennreal_SUP[symmetric])(simp_all add: SUP_spmf_neq_top' del: SUP_eq_top_iff Sup_eq_top_iff)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1382
  also have "0 \<le> (\<Squnion>p\<in>Y. spmf p x)" using assms
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1383
    by(auto intro!: cSUP_upper2 bdd_aboveI[where M=1] simp add: pmf_le_1)
69260
0a9688695a1b removed relics of ASCII syntax for indexed big operators
haftmann
parents: 67399
diff changeset
  1384
  then have "enn2real (ennreal (SUP p \<in> Y. spmf p x)) = (SUP p \<in> Y. spmf p x)"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1385
    by(rule enn2real_ennreal)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1386
  finally show ?thesis .
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1387
qed
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1388
69260
0a9688695a1b removed relics of ASCII syntax for indexed big operators
haftmann
parents: 67399
diff changeset
  1389
lemma ennreal_spmf_lub_spmf: "Y \<noteq> {} \<Longrightarrow> ennreal (spmf lub_spmf x) = (SUP p\<in>Y. ennreal (spmf p x))"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1390
unfolding spmf_lub_spmf by(subst ennreal_SUP)(simp_all add: SUP_spmf_neq_top' del: SUP_eq_top_iff Sup_eq_top_iff)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1391
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1392
lemma lub_spmf_upper:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1393
  assumes p: "p \<in> Y"
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  1394
  shows "ord_spmf (=) p lub_spmf"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1395
proof(rule ord_pmf_increaseI)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1396
  fix x
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1397
  from p have [simp]: "Y \<noteq> {}" by auto
69260
0a9688695a1b removed relics of ASCII syntax for indexed big operators
haftmann
parents: 67399
diff changeset
  1398
  from p have "ennreal (spmf p x) \<le> (SUP p\<in>Y. ennreal (spmf p x))" by(rule SUP_upper)
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1399
  also have "\<dots> = ennreal (spmf lub_spmf x)" using p
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1400
    by(subst spmf_lub_spmf)(auto simp add: ennreal_SUP SUP_spmf_neq_top' simp del: SUP_eq_top_iff Sup_eq_top_iff)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1401
  finally show "spmf p x \<le> spmf lub_spmf x" by simp
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1402
qed simp
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1403
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1404
lemma lub_spmf_least:
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  1405
  assumes z: "\<And>x. x \<in> Y \<Longrightarrow> ord_spmf (=) x z"
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  1406
  shows "ord_spmf (=) lub_spmf z"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1407
proof(cases "Y = {}")
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1408
  case nonempty: False
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1409
  show ?thesis
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1410
  proof(rule ord_pmf_increaseI)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1411
    fix x
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1412
    from nonempty obtain p where p: "p \<in> Y" by auto
69260
0a9688695a1b removed relics of ASCII syntax for indexed big operators
haftmann
parents: 67399
diff changeset
  1413
    have "ennreal (spmf lub_spmf x) = (SUP p\<in>Y. ennreal (spmf p x))"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1414
      by(subst spmf_lub_spmf)(auto simp add: ennreal_SUP SUP_spmf_neq_top' nonempty simp del: SUP_eq_top_iff Sup_eq_top_iff)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1415
    also have "\<dots> \<le> ennreal (spmf z x)" by(rule SUP_least)(simp add: ord_spmf_eq_leD z)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1416
    finally show "spmf lub_spmf x \<le> spmf z x" by simp
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1417
  qed simp
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1418
qed simp
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1419
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1420
lemma set_lub_spmf: "set_spmf lub_spmf = (\<Union>p\<in>Y. set_spmf p)" (is "?lhs = ?rhs")
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1421
proof(cases "Y = {}")
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1422
  case [simp]: False
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1423
  show ?thesis
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1424
  proof(rule set_eqI)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1425
    fix x
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1426
    have "x \<in> ?lhs \<longleftrightarrow> ennreal (spmf lub_spmf x) > 0"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1427
      by(simp_all add: in_set_spmf_iff_spmf less_le)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1428
    also have "\<dots> \<longleftrightarrow> (\<exists>p\<in>Y. ennreal (spmf p x) > 0)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1429
      by(simp add: ennreal_spmf_lub_spmf less_SUP_iff)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1430
    also have "\<dots> \<longleftrightarrow> x \<in> ?rhs"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1431
      by(auto simp add: in_set_spmf_iff_spmf less_le)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1432
    finally show "x \<in> ?lhs \<longleftrightarrow> x \<in> ?rhs" .
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1433
  qed
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1434
qed simp
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1435
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1436
lemma emeasure_lub_spmf:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1437
  assumes Y: "Y \<noteq> {}"
69260
0a9688695a1b removed relics of ASCII syntax for indexed big operators
haftmann
parents: 67399
diff changeset
  1438
  shows "emeasure (measure_spmf lub_spmf) A = (SUP y\<in>Y. emeasure (measure_spmf y) A)"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1439
  (is "?lhs = ?rhs")
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1440
proof -
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1441
  let ?M = "count_space (set_spmf lub_spmf)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1442
  have "?lhs = \<integral>\<^sup>+ x. ennreal (spmf lub_spmf x) * indicator A x \<partial>?M"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1443
    by(auto simp add: nn_integral_indicator[symmetric] nn_integral_measure_spmf')
69260
0a9688695a1b removed relics of ASCII syntax for indexed big operators
haftmann
parents: 67399
diff changeset
  1444
  also have "\<dots> = \<integral>\<^sup>+ x. (SUP y\<in>Y. ennreal (spmf y x) * indicator A x) \<partial>?M"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1445
    unfolding ennreal_indicator[symmetric]
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1446
    by(simp add: spmf_lub_spmf assms ennreal_SUP[OF SUP_spmf_neq_top'] SUP_mult_right_ennreal)
69260
0a9688695a1b removed relics of ASCII syntax for indexed big operators
haftmann
parents: 67399
diff changeset
  1447
  also from assms have "\<dots> = (SUP y\<in>Y. \<integral>\<^sup>+ x. ennreal (spmf y x) * indicator A x \<partial>?M)"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1448
  proof(rule nn_integral_monotone_convergence_SUP_countable)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1449
    have "(\<lambda>i x. ennreal (spmf i x) * indicator A x) ` Y = (\<lambda>f x. f x * indicator A x) ` (\<lambda>p x. ennreal (spmf p x)) ` Y"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1450
      by(simp add: image_image)
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  1451
    also have "Complete_Partial_Order.chain (\<le>) \<dots>" using chain_ord_spmf_eqD
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1452
      by(rule chain_imageI)(auto simp add: le_fun_def split: split_indicator)
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  1453
    finally show "Complete_Partial_Order.chain (\<le>) ((\<lambda>i x. ennreal (spmf i x) * indicator A x) ` Y)" .
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1454
  qed simp
69260
0a9688695a1b removed relics of ASCII syntax for indexed big operators
haftmann
parents: 67399
diff changeset
  1455
  also have "\<dots> = (SUP y\<in>Y. \<integral>\<^sup>+ x. ennreal (spmf y x) * indicator A x \<partial>count_space UNIV)"
69661
a03a63b81f44 tuned proofs
haftmann
parents: 69597
diff changeset
  1456
    by(auto simp add: nn_integral_count_space_indicator set_lub_spmf spmf_eq_0_set_spmf split: split_indicator intro!: arg_cong [of _ _ Sup] image_cong nn_integral_cong)
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1457
  also have "\<dots> = ?rhs"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1458
    by(auto simp add: nn_integral_indicator[symmetric] nn_integral_measure_spmf)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1459
  finally show ?thesis .
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1460
qed
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1461
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1462
lemma measure_lub_spmf:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1463
  assumes Y: "Y \<noteq> {}"
69260
0a9688695a1b removed relics of ASCII syntax for indexed big operators
haftmann
parents: 67399
diff changeset
  1464
  shows "measure (measure_spmf lub_spmf) A = (SUP y\<in>Y. measure (measure_spmf y) A)" (is "?lhs = ?rhs")
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1465
proof -
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1466
  have "ennreal ?lhs = ennreal ?rhs"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1467
    using emeasure_lub_spmf[OF assms] SUP_emeasure_spmf_neq_top[of A Y] Y
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1468
    unfolding measure_spmf.emeasure_eq_measure by(subst ennreal_SUP)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1469
  moreover have "0 \<le> ?rhs" using Y
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1470
    by(auto intro!: cSUP_upper2 bdd_aboveI[where M=1] measure_spmf.subprob_measure_le_1)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1471
  ultimately show ?thesis by(simp)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1472
qed
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1473
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1474
lemma weight_lub_spmf:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1475
  assumes Y: "Y \<noteq> {}"
69260
0a9688695a1b removed relics of ASCII syntax for indexed big operators
haftmann
parents: 67399
diff changeset
  1476
  shows "weight_spmf lub_spmf = (SUP y\<in>Y. weight_spmf y)"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1477
unfolding weight_spmf_def by(rule measure_lub_spmf) fact
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1478
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1479
lemma measure_spmf_lub_spmf:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1480
  assumes Y: "Y \<noteq> {}"
69260
0a9688695a1b removed relics of ASCII syntax for indexed big operators
haftmann
parents: 67399
diff changeset
  1481
  shows "measure_spmf lub_spmf = (SUP p\<in>Y. measure_spmf p)" (is "?lhs = ?rhs")
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1482
proof(rule measure_eqI)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1483
  from assms obtain p where p: "p \<in> Y" by auto
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  1484
  from chain have chain': "Complete_Partial_Order.chain (\<le>) (measure_spmf ` Y)"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1485
    by(rule chain_imageI)(rule ord_spmf_eqD_measure_spmf)
63333
158ab2239496 Probability: show that measures form a complete lattice
hoelzl
parents: 63308
diff changeset
  1486
  show "sets ?lhs = sets ?rhs"
158ab2239496 Probability: show that measures form a complete lattice
hoelzl
parents: 63308
diff changeset
  1487
    using Y by (subst sets_SUP) auto
158ab2239496 Probability: show that measures form a complete lattice
hoelzl
parents: 63308
diff changeset
  1488
  show "emeasure ?lhs A = emeasure ?rhs A" for A
158ab2239496 Probability: show that measures form a complete lattice
hoelzl
parents: 63308
diff changeset
  1489
    using chain' Y p by (subst emeasure_SUP_chain) (auto simp:  emeasure_lub_spmf)
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1490
qed
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1491
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1492
end
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1493
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1494
end
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1495
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  1496
lemma partial_function_definitions_spmf: "partial_function_definitions (ord_spmf (=)) lub_spmf"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1497
  (is "partial_function_definitions ?R _")
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1498
proof
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1499
  fix x show "?R x x" by(simp add: ord_spmf_reflI)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1500
next
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1501
  fix x y z
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1502
  assume "?R x y" "?R y z"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1503
  with transp_ord_option[OF transp_equality] show "?R x z" by(rule transp_rel_pmf[THEN transpD])
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1504
next
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1505
  fix x y
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1506
  assume "?R x y" "?R y x"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1507
  thus "x = y"
64634
5bd30359e46e proper logical constants
haftmann
parents: 64267
diff changeset
  1508
    by(rule rel_pmf_antisym)(simp_all add: reflp_ord_option transp_ord_option antisymp_ord_option)
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1509
next
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1510
  fix Y x
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1511
  assume "Complete_Partial_Order.chain ?R Y" "x \<in> Y"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1512
  then show "?R x (lub_spmf Y)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1513
    by(rule lub_spmf_upper)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1514
next
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1515
  fix Y z
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1516
  assume "Complete_Partial_Order.chain ?R Y" "\<And>x. x \<in> Y \<Longrightarrow> ?R x z"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1517
  then show "?R (lub_spmf Y) z"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1518
    by(cases "Y = {}")(simp_all add: lub_spmf_least)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1519
qed
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1520
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  1521
lemma ccpo_spmf: "class.ccpo lub_spmf (ord_spmf (=)) (mk_less (ord_spmf (=)))"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1522
by(rule ccpo partial_function_definitions_spmf)+
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1523
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  1524
interpretation spmf: partial_function_definitions "ord_spmf (=)" "lub_spmf"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1525
  rewrites "lub_spmf {} \<equiv> return_pmf None"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1526
by(rule partial_function_definitions_spmf) simp
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1527
69597
ff784d5a5bfb isabelle update -u control_cartouches;
wenzelm
parents: 69260
diff changeset
  1528
declaration \<open>Partial_Function.init "spmf" \<^term>\<open>spmf.fixp_fun\<close>
ff784d5a5bfb isabelle update -u control_cartouches;
wenzelm
parents: 69260
diff changeset
  1529
  \<^term>\<open>spmf.mono_body\<close> @{thm spmf.fixp_rule_uc} @{thm spmf.fixp_induct_uc}
63308
d49580620ecb isabelle update_cartouches -c -t;
wenzelm
parents: 63243
diff changeset
  1530
  NONE\<close>
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1531
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1532
declare spmf.leq_refl[simp]
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1533
declare admissible_leI[OF ccpo_spmf, cont_intro]
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1534
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  1535
abbreviation "mono_spmf \<equiv> monotone (fun_ord (ord_spmf (=))) (ord_spmf (=))"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1536
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1537
lemma lub_spmf_const [simp]: "lub_spmf {p} = p"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1538
by(rule spmf_eqI)(simp add: spmf_lub_spmf[OF ccpo.chain_singleton[OF ccpo_spmf]])
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1539
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1540
lemma bind_spmf_mono':
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  1541
  assumes fg: "ord_spmf (=) f g"
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  1542
  and hk: "\<And>x :: 'a. ord_spmf (=) (h x) (k x)"
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  1543
  shows "ord_spmf (=) (f \<bind> h) (g \<bind> k)"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1544
unfolding bind_spmf_def using assms(1)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1545
by(rule rel_pmf_bindI)(auto split: option.split simp add: hk)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1546
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1547
lemma bind_spmf_mono [partial_function_mono]:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1548
  assumes mf: "mono_spmf B" and mg: "\<And>y. mono_spmf (\<lambda>f. C y f)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1549
  shows "mono_spmf (\<lambda>f. bind_spmf (B f) (\<lambda>y. C y f))"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1550
proof (rule monotoneI)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1551
  fix f g :: "'a \<Rightarrow> 'b spmf"
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  1552
  assume fg: "fun_ord (ord_spmf (=)) f g"
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  1553
  with mf have "ord_spmf (=) (B f) (B g)" by (rule monotoneD[of _ _ _ f g])
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  1554
  moreover from mg have "\<And>y'. ord_spmf (=) (C y' f) (C y' g)"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1555
    by (rule monotoneD) (rule fg)
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  1556
  ultimately show "ord_spmf (=) (bind_spmf (B f) (\<lambda>y. C y f)) (bind_spmf (B g) (\<lambda>y'. C y' g))"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1557
    by(rule bind_spmf_mono')
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1558
qed
63333
158ab2239496 Probability: show that measures form a complete lattice
hoelzl
parents: 63308
diff changeset
  1559
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  1560
lemma monotone_bind_spmf1: "monotone (ord_spmf (=)) (ord_spmf (=)) (\<lambda>y. bind_spmf y g)"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1561
by(rule monotoneI)(simp add: bind_spmf_mono' ord_spmf_reflI)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1562
63333
158ab2239496 Probability: show that measures form a complete lattice
hoelzl
parents: 63308
diff changeset
  1563
lemma monotone_bind_spmf2:
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  1564
  assumes g: "\<And>x. monotone ord (ord_spmf (=)) (\<lambda>y. g y x)"
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  1565
  shows "monotone ord (ord_spmf (=)) (\<lambda>y. bind_spmf p (g y))"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1566
by(rule monotoneI)(auto intro: bind_spmf_mono' monotoneD[OF g] ord_spmf_reflI)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1567
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1568
lemma bind_lub_spmf:
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  1569
  assumes chain: "Complete_Partial_Order.chain (ord_spmf (=)) Y"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1570
  shows "bind_spmf (lub_spmf Y) f = lub_spmf ((\<lambda>p. bind_spmf p f) ` Y)" (is "?lhs = ?rhs")
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1571
proof(cases "Y = {}")
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1572
  case Y: False
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1573
  show ?thesis
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1574
  proof(rule spmf_eqI)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1575
    fix i
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  1576
    have chain': "Complete_Partial_Order.chain (\<le>) ((\<lambda>p x. ennreal (spmf p x * spmf (f x) i)) ` Y)"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1577
      using chain by(rule chain_imageI)(auto simp add: le_fun_def dest: ord_spmf_eq_leD intro: mult_right_mono)
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  1578
    have chain'': "Complete_Partial_Order.chain (ord_spmf (=)) ((\<lambda>p. p \<bind> f) ` Y)"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1579
      using chain by(rule chain_imageI)(auto intro!: monotoneI bind_spmf_mono' ord_spmf_reflI)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1580
    let ?M = "count_space (set_spmf (lub_spmf Y))"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1581
    have "ennreal (spmf ?lhs i) = \<integral>\<^sup>+ x. ennreal (spmf (lub_spmf Y) x) * ennreal (spmf (f x) i) \<partial>?M"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1582
      by(auto simp add: ennreal_spmf_lub_spmf ennreal_spmf_bind nn_integral_measure_spmf')
69260
0a9688695a1b removed relics of ASCII syntax for indexed big operators
haftmann
parents: 67399
diff changeset
  1583
    also have "\<dots> = \<integral>\<^sup>+ x. (SUP p\<in>Y. ennreal (spmf p x * spmf (f x) i)) \<partial>?M"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1584
      by(subst ennreal_spmf_lub_spmf[OF chain Y])(subst SUP_mult_right_ennreal, simp_all add: ennreal_mult Y)
69260
0a9688695a1b removed relics of ASCII syntax for indexed big operators
haftmann
parents: 67399
diff changeset
  1585
    also have "\<dots> = (SUP p\<in>Y. \<integral>\<^sup>+ x. ennreal (spmf p x * spmf (f x) i) \<partial>?M)"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1586
      using Y chain' by(rule nn_integral_monotone_convergence_SUP_countable) simp
69260
0a9688695a1b removed relics of ASCII syntax for indexed big operators
haftmann
parents: 67399
diff changeset
  1587
    also have "\<dots> = (SUP p\<in>Y. ennreal (spmf (bind_spmf p f) i))"
69661
a03a63b81f44 tuned proofs
haftmann
parents: 69597
diff changeset
  1588
      by(auto simp add: ennreal_spmf_bind nn_integral_measure_spmf nn_integral_count_space_indicator set_lub_spmf[OF chain] in_set_spmf_iff_spmf ennreal_mult intro!: arg_cong [of _ _ Sup] image_cong nn_integral_cong split: split_indicator)
69861
62e47f06d22c avoid context-sensitive simp rules whose context-free form (image_comp) is not simp by default
haftmann
parents: 69661
diff changeset
  1589
    also have "\<dots> = ennreal (spmf ?rhs i)" using chain'' by(simp add: ennreal_spmf_lub_spmf Y image_comp)
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1590
    finally show "spmf ?lhs i = spmf ?rhs i" by simp
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1591
  qed
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1592
qed simp
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1593
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1594
lemma map_lub_spmf:
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  1595
  "Complete_Partial_Order.chain (ord_spmf (=)) Y
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1596
  \<Longrightarrow> map_spmf f (lub_spmf Y) = lub_spmf (map_spmf f ` Y)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1597
unfolding map_spmf_conv_bind_spmf[abs_def] by(simp add: bind_lub_spmf o_def)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1598
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  1599
lemma mcont_bind_spmf1: "mcont lub_spmf (ord_spmf (=)) lub_spmf (ord_spmf (=)) (\<lambda>y. bind_spmf y f)"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1600
using monotone_bind_spmf1 by(rule mcontI)(rule contI, simp add: bind_lub_spmf)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1601
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1602
lemma bind_lub_spmf2:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1603
  assumes chain: "Complete_Partial_Order.chain ord Y"
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  1604
  and g: "\<And>y. monotone ord (ord_spmf (=)) (g y)"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1605
  shows "bind_spmf x (\<lambda>y. lub_spmf (g y ` Y)) = lub_spmf ((\<lambda>p. bind_spmf x (\<lambda>y. g y p)) ` Y)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1606
  (is "?lhs = ?rhs")
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1607
proof(cases "Y = {}")
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1608
  case Y: False
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1609
  show ?thesis
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1610
  proof(rule spmf_eqI)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1611
    fix i
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  1612
    have chain': "\<And>y. Complete_Partial_Order.chain (ord_spmf (=)) (g y ` Y)"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1613
      using chain g[THEN monotoneD] by(rule chain_imageI)
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  1614
    have chain'': "Complete_Partial_Order.chain (\<le>) ((\<lambda>p y. ennreal (spmf x y * spmf (g y p) i)) ` Y)"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1615
      using chain by(rule chain_imageI)(auto simp add: le_fun_def dest: ord_spmf_eq_leD monotoneD[OF g] intro!: mult_left_mono)
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  1616
    have chain''': "Complete_Partial_Order.chain (ord_spmf (=)) ((\<lambda>p. bind_spmf x (\<lambda>y. g y p)) ` Y)"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1617
      using chain by(rule chain_imageI)(rule monotone_bind_spmf2[OF g, THEN monotoneD])
63333
158ab2239496 Probability: show that measures form a complete lattice
hoelzl
parents: 63308
diff changeset
  1618
69260
0a9688695a1b removed relics of ASCII syntax for indexed big operators
haftmann
parents: 67399
diff changeset
  1619
    have "ennreal (spmf ?lhs i) = \<integral>\<^sup>+ y. (SUP p\<in>Y. ennreal (spmf x y * spmf (g y p) i)) \<partial>count_space (set_spmf x)"
69861
62e47f06d22c avoid context-sensitive simp rules whose context-free form (image_comp) is not simp by default
haftmann
parents: 69661
diff changeset
  1620
      by(simp add: ennreal_spmf_bind ennreal_spmf_lub_spmf[OF chain'] Y nn_integral_measure_spmf' SUP_mult_left_ennreal ennreal_mult image_comp)
69260
0a9688695a1b removed relics of ASCII syntax for indexed big operators
haftmann
parents: 67399
diff changeset
  1621
    also have "\<dots> = (SUP p\<in>Y. \<integral>\<^sup>+ y. ennreal (spmf x y * spmf (g y p) i) \<partial>count_space (set_spmf x))"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1622
      unfolding nn_integral_measure_spmf' using Y chain''
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1623
      by(rule nn_integral_monotone_convergence_SUP_countable) simp
69260
0a9688695a1b removed relics of ASCII syntax for indexed big operators
haftmann
parents: 67399
diff changeset
  1624
    also have "\<dots> = (SUP p\<in>Y. ennreal (spmf (bind_spmf x (\<lambda>y. g y p)) i))"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1625
      by(simp add: ennreal_spmf_bind nn_integral_measure_spmf' ennreal_mult)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1626
    also have "\<dots> = ennreal (spmf ?rhs i)" using chain'''
69861
62e47f06d22c avoid context-sensitive simp rules whose context-free form (image_comp) is not simp by default
haftmann
parents: 69661
diff changeset
  1627
      by(auto simp add: ennreal_spmf_lub_spmf Y image_comp)
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1628
    finally show "spmf ?lhs i = spmf ?rhs i" by simp
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1629
  qed
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1630
qed simp
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1631
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1632
lemma mcont_bind_spmf [cont_intro]:
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  1633
  assumes f: "mcont luba orda lub_spmf (ord_spmf (=)) f"
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  1634
  and g: "\<And>y. mcont luba orda lub_spmf (ord_spmf (=)) (g y)"
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  1635
  shows "mcont luba orda lub_spmf (ord_spmf (=)) (\<lambda>x. bind_spmf (f x) (\<lambda>y. g y x))"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1636
proof(rule spmf.mcont2mcont'[OF _ _ f])
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1637
  fix z
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  1638
  show "mcont lub_spmf (ord_spmf (=)) lub_spmf (ord_spmf (=)) (\<lambda>x. bind_spmf x (\<lambda>y. g y z))"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1639
    by(rule mcont_bind_spmf1)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1640
next
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1641
  fix x
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1642
  let ?f = "\<lambda>z. bind_spmf x (\<lambda>y. g y z)"
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  1643
  have "monotone orda (ord_spmf (=)) ?f" using mcont_mono[OF g] by(rule monotone_bind_spmf2)
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  1644
  moreover have "cont luba orda lub_spmf (ord_spmf (=)) ?f"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1645
  proof(rule contI)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1646
    fix Y
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1647
    assume chain: "Complete_Partial_Order.chain orda Y" and Y: "Y \<noteq> {}"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1648
    have "bind_spmf x (\<lambda>y. g y (luba Y)) = bind_spmf x (\<lambda>y. lub_spmf (g y ` Y))"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1649
      by(rule bind_spmf_cong)(simp_all add: mcont_contD[OF g chain Y])
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1650
    also have "\<dots> = lub_spmf ((\<lambda>p. x \<bind> (\<lambda>y. g y p)) ` Y)" using chain
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1651
      by(rule bind_lub_spmf2)(rule mcont_mono[OF g])
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1652
    finally show "bind_spmf x (\<lambda>y. g y (luba Y)) = \<dots>" .
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1653
  qed
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  1654
  ultimately show "mcont luba orda lub_spmf (ord_spmf (=)) ?f" by(rule mcontI)
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1655
qed
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1656
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1657
lemma bind_pmf_mono [partial_function_mono]:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1658
  "(\<And>y. mono_spmf (\<lambda>f. C y f)) \<Longrightarrow> mono_spmf (\<lambda>f. bind_pmf p (\<lambda>x. C x f))"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1659
using bind_spmf_mono[of "\<lambda>_. spmf_of_pmf p" C] by simp
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1660
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1661
lemma map_spmf_mono [partial_function_mono]: "mono_spmf B \<Longrightarrow> mono_spmf (\<lambda>g. map_spmf f (B g))"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1662
unfolding map_spmf_conv_bind_spmf by(rule bind_spmf_mono) simp_all
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1663
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1664
lemma mcont_map_spmf [cont_intro]:
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  1665
  "mcont luba orda lub_spmf (ord_spmf (=)) g
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  1666
  \<Longrightarrow> mcont luba orda lub_spmf (ord_spmf (=)) (\<lambda>x. map_spmf f (g x))"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1667
unfolding map_spmf_conv_bind_spmf by(rule mcont_bind_spmf) simp_all
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1668
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  1669
lemma monotone_set_spmf: "monotone (ord_spmf (=)) (\<subseteq>) set_spmf"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1670
by(rule monotoneI)(rule ord_spmf_eqD_set_spmf)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1671
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  1672
lemma cont_set_spmf: "cont lub_spmf (ord_spmf (=)) Union (\<subseteq>) set_spmf"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1673
by(rule contI)(subst set_lub_spmf; simp)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1674
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1675
lemma mcont2mcont_set_spmf[THEN mcont2mcont, cont_intro]:
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  1676
  shows mcont_set_spmf: "mcont lub_spmf (ord_spmf (=)) Union (\<subseteq>) set_spmf"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1677
by(rule mcontI monotone_set_spmf cont_set_spmf)+
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1678
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  1679
lemma monotone_spmf: "monotone (ord_spmf (=)) (\<le>) (\<lambda>p. spmf p x)"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1680
by(rule monotoneI)(simp add: ord_spmf_eq_leD)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1681
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  1682
lemma cont_spmf: "cont lub_spmf (ord_spmf (=)) Sup (\<le>) (\<lambda>p. spmf p x)"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1683
by(rule contI)(simp add: spmf_lub_spmf)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1684
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  1685
lemma mcont_spmf: "mcont lub_spmf (ord_spmf (=)) Sup (\<le>) (\<lambda>p. spmf p x)"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1686
by(rule mcontI monotone_spmf cont_spmf)+
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1687
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  1688
lemma cont_ennreal_spmf: "cont lub_spmf (ord_spmf (=)) Sup (\<le>) (\<lambda>p. ennreal (spmf p x))"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1689
by(rule contI)(simp add: ennreal_spmf_lub_spmf)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1690
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1691
lemma mcont2mcont_ennreal_spmf [THEN mcont2mcont, cont_intro]:
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  1692
  shows mcont_ennreal_spmf: "mcont lub_spmf (ord_spmf (=)) Sup (\<le>) (\<lambda>p. ennreal (spmf p x))"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1693
by(rule mcontI mono2mono_ennreal monotone_spmf cont_ennreal_spmf)+
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1694
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1695
lemma nn_integral_map_spmf [simp]: "nn_integral (measure_spmf (map_spmf f p)) g = nn_integral (measure_spmf p) (g \<circ> f)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1696
by(auto 4 3 simp add: measure_spmf_def nn_integral_distr nn_integral_restrict_space intro: nn_integral_cong split: split_indicator)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1697
69597
ff784d5a5bfb isabelle update -u control_cartouches;
wenzelm
parents: 69260
diff changeset
  1698
subsubsection \<open>Admissibility of \<^term>\<open>rel_spmf\<close>\<close>
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1699
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1700
lemma rel_spmf_measureD:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1701
  assumes "rel_spmf R p q"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1702
  shows "measure (measure_spmf p) A \<le> measure (measure_spmf q) {y. \<exists>x\<in>A. R x y}" (is "?lhs \<le> ?rhs")
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1703
proof -
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1704
  have "?lhs = measure (measure_pmf p) (Some ` A)" by(simp add: measure_measure_spmf_conv_measure_pmf)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1705
  also have "\<dots> \<le> measure (measure_pmf q) {y. \<exists>x\<in>Some ` A. rel_option R x y}"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1706
    using assms by(rule rel_pmf_measureD)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1707
  also have "\<dots> = ?rhs" unfolding measure_measure_spmf_conv_measure_pmf
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1708
    by(rule arg_cong2[where f=measure])(auto simp add: option_rel_Some1)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1709
  finally show ?thesis .
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1710
qed
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1711
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1712
locale rel_spmf_characterisation =
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1713
  assumes rel_pmf_measureI:
63333
158ab2239496 Probability: show that measures form a complete lattice
hoelzl
parents: 63308
diff changeset
  1714
    "\<And>(R :: 'a option \<Rightarrow> 'b option \<Rightarrow> bool) p q.
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1715
    (\<And>A. measure (measure_pmf p) A \<le> measure (measure_pmf q) {y. \<exists>x\<in>A. R x y})
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1716
    \<Longrightarrow> rel_pmf R p q"
63308
d49580620ecb isabelle update_cartouches -c -t;
wenzelm
parents: 63243
diff changeset
  1717
  \<comment> \<open>This assumption is shown to hold in general in the AFP entry \<open>MFMC_Countable\<close>.\<close>
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1718
begin
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1719
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1720
context fixes R :: "'a \<Rightarrow> 'b \<Rightarrow> bool" begin
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1721
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1722
lemma rel_spmf_measureI:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1723
  assumes eq1: "\<And>A. measure (measure_spmf p) A \<le> measure (measure_spmf q) {y. \<exists>x\<in>A. R x y}"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1724
  assumes eq2: "weight_spmf q \<le> weight_spmf p"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1725
  shows "rel_spmf R p q"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1726
proof(rule rel_pmf_measureI)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1727
  fix A :: "'a option set"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1728
  define A' where "A' = the ` (A \<inter> range Some)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1729
  define A'' where "A'' = A \<inter> {None}"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1730
  have A: "A = Some ` A' \<union> A''" "Some ` A' \<inter> A'' = {}"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1731
    unfolding A'_def A''_def by(auto 4 3 intro: rev_image_eqI)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1732
  have "measure (measure_pmf p) A = measure (measure_pmf p) (Some ` A') + measure (measure_pmf p) A''"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1733
    by(simp add: A measure_pmf.finite_measure_Union)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1734
  also have "measure (measure_pmf p) (Some ` A') = measure (measure_spmf p) A'"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1735
    by(simp add: measure_measure_spmf_conv_measure_pmf)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1736
  also have "\<dots> \<le> measure (measure_spmf q) {y. \<exists>x\<in>A'. R x y}" by(rule eq1)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1737
  also (ord_eq_le_trans[OF _ add_right_mono])
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1738
  have "\<dots> = measure (measure_pmf q) {y. \<exists>x\<in>A'. rel_option R (Some x) y}"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1739
    unfolding measure_measure_spmf_conv_measure_pmf
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1740
    by(rule arg_cong2[where f=measure])(auto simp add: A'_def option_rel_Some1)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1741
  also
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1742
  { have "weight_spmf p \<le> measure (measure_spmf q) {y. \<exists>x. R x y}"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1743
      using eq1[of UNIV] unfolding weight_spmf_def by simp
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1744
    also have "\<dots> \<le> weight_spmf q" unfolding weight_spmf_def
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1745
      by(rule measure_spmf.finite_measure_mono) simp_all
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1746
    finally have "weight_spmf p = weight_spmf q" using eq2 by simp }
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1747
  then have "measure (measure_pmf p) A'' = measure (measure_pmf q) (if None \<in> A then {None} else {})"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1748
    unfolding A''_def by(simp add: pmf_None_eq_weight_spmf measure_pmf_single)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1749
  also have "measure (measure_pmf q) {y. \<exists>x\<in>A'. rel_option R (Some x) y} + \<dots> = measure (measure_pmf q) {y. \<exists>x\<in>A. rel_option R x y}"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1750
    by(subst measure_pmf.finite_measure_Union[symmetric])
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1751
      (auto 4 3 intro!: arg_cong2[where f=measure] simp add: option_rel_Some1 option_rel_Some2 A'_def intro: rev_bexI elim: option.rel_cases)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1752
  finally show "measure (measure_pmf p) A \<le> \<dots>" .
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1753
qed
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1754
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1755
lemma admissible_rel_spmf:
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  1756
  "ccpo.admissible (prod_lub lub_spmf lub_spmf) (rel_prod (ord_spmf (=)) (ord_spmf (=))) (case_prod (rel_spmf R))"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1757
  (is "ccpo.admissible ?lub ?ord ?P")
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1758
proof(rule ccpo.admissibleI)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1759
  fix Y
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1760
  assume chain: "Complete_Partial_Order.chain ?ord Y"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1761
    and Y: "Y \<noteq> {}"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1762
    and R: "\<forall>(p, q) \<in> Y. rel_spmf R p q"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1763
  from R have R: "\<And>p q. (p, q) \<in> Y \<Longrightarrow> rel_spmf R p q" by auto
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  1764
  have chain1: "Complete_Partial_Order.chain (ord_spmf (=)) (fst ` Y)"
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  1765
    and chain2: "Complete_Partial_Order.chain (ord_spmf (=)) (snd ` Y)"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1766
    using chain by(rule chain_imageI; clarsimp)+
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1767
  from Y have Y1: "fst ` Y \<noteq> {}" and Y2: "snd ` Y \<noteq> {}" by auto
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1768
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1769
  have "rel_spmf R (lub_spmf (fst ` Y)) (lub_spmf (snd ` Y))"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1770
  proof(rule rel_spmf_measureI)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1771
    show "weight_spmf (lub_spmf (snd ` Y)) \<le> weight_spmf (lub_spmf (fst ` Y))"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1772
      by(auto simp add: weight_lub_spmf chain1 chain2 Y rel_spmf_weightD[OF R, symmetric] intro!: cSUP_least intro: cSUP_upper2[OF bdd_aboveI2[OF weight_spmf_le_1]])
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1773
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1774
    fix A
69260
0a9688695a1b removed relics of ASCII syntax for indexed big operators
haftmann
parents: 67399
diff changeset
  1775
    have "measure (measure_spmf (lub_spmf (fst ` Y))) A = (SUP y\<in>fst ` Y. measure (measure_spmf y) A)"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1776
      using chain1 Y1 by(rule measure_lub_spmf)
69260
0a9688695a1b removed relics of ASCII syntax for indexed big operators
haftmann
parents: 67399
diff changeset
  1777
    also have "\<dots> \<le> (SUP y\<in>snd ` Y. measure (measure_spmf y) {y. \<exists>x\<in>A. R x y})" using Y1
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1778
      by(rule cSUP_least)(auto intro!: cSUP_upper2[OF bdd_aboveI2[OF measure_spmf.subprob_measure_le_1]] rel_spmf_measureD R)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1779
    also have "\<dots> = measure (measure_spmf (lub_spmf (snd ` Y))) {y. \<exists>x\<in>A. R x y}"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1780
      using chain2 Y2 by(rule measure_lub_spmf[symmetric])
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1781
    finally show "measure (measure_spmf (lub_spmf (fst ` Y))) A \<le> \<dots>" .
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1782
  qed
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1783
  then show "?P (?lub Y)" by(simp add: prod_lub_def)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1784
qed
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1785
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1786
lemma admissible_rel_spmf_mcont [cont_intro]:
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  1787
  "\<lbrakk> mcont lub ord lub_spmf (ord_spmf (=)) f; mcont lub ord lub_spmf (ord_spmf (=)) g \<rbrakk>
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1788
  \<Longrightarrow> ccpo.admissible lub ord (\<lambda>x. rel_spmf R (f x) (g x))"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1789
by(rule admissible_subst[OF admissible_rel_spmf, where f="\<lambda>x. (f x, g x)", simplified])(rule mcont_Pair)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1790
63343
fb5d8a50c641 bundle lifting_syntax;
wenzelm
parents: 63333
diff changeset
  1791
context includes lifting_syntax
fb5d8a50c641 bundle lifting_syntax;
wenzelm
parents: 63333
diff changeset
  1792
begin
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1793
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1794
lemma fixp_spmf_parametric':
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  1795
  assumes f: "\<And>x. monotone (ord_spmf (=)) (ord_spmf (=)) F"
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  1796
  and g: "\<And>x. monotone (ord_spmf (=)) (ord_spmf (=)) G"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1797
  and param: "(rel_spmf R ===> rel_spmf R) F G"
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  1798
  shows "(rel_spmf R) (ccpo.fixp lub_spmf (ord_spmf (=)) F) (ccpo.fixp lub_spmf (ord_spmf (=)) G)"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1799
by(rule parallel_fixp_induct[OF ccpo_spmf ccpo_spmf _ f g])(auto intro: param[THEN rel_funD])
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1800
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1801
lemma fixp_spmf_parametric:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1802
  assumes f: "\<And>x. mono_spmf (\<lambda>f. F f x)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1803
  and g: "\<And>x. mono_spmf (\<lambda>f. G f x)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1804
  and param: "((A ===> rel_spmf R) ===> A ===> rel_spmf R) F G"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1805
  shows "(A ===> rel_spmf R) (spmf.fixp_fun F) (spmf.fixp_fun G)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1806
using f g
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1807
proof(rule parallel_fixp_induct_1_1[OF partial_function_definitions_spmf partial_function_definitions_spmf _ _ reflexive reflexive, where P="(A ===> rel_spmf R)"])
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  1808
  show "ccpo.admissible (prod_lub (fun_lub lub_spmf) (fun_lub lub_spmf)) (rel_prod (fun_ord (ord_spmf (=))) (fun_ord (ord_spmf (=)))) (\<lambda>x. (A ===> rel_spmf R) (fst x) (snd x))"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1809
    unfolding rel_fun_def
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1810
    apply(rule admissible_all admissible_imp admissible_rel_spmf_mcont)+
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1811
    apply(rule spmf.mcont2mcont[OF mcont_call])
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1812
     apply(rule mcont_fst)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1813
    apply(rule spmf.mcont2mcont[OF mcont_call])
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1814
     apply(rule mcont_snd)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1815
    done
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1816
  show "(A ===> rel_spmf R) (\<lambda>_. lub_spmf {}) (\<lambda>_. lub_spmf {})" by auto
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1817
  show "(A ===> rel_spmf R) (F f) (G g)" if "(A ===> rel_spmf R) f g" for f g
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1818
    using that by(rule rel_funD[OF param])
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1819
qed
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1820
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1821
end
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1822
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1823
end
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1824
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1825
end
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1826
63308
d49580620ecb isabelle update_cartouches -c -t;
wenzelm
parents: 63243
diff changeset
  1827
subsection \<open>Restrictions on spmfs\<close>
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1828
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1829
definition restrict_spmf :: "'a spmf \<Rightarrow> 'a set \<Rightarrow> 'a spmf" (infixl "\<upharpoonleft>" 110)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1830
where "p \<upharpoonleft> A = map_pmf (\<lambda>x. x \<bind> (\<lambda>y. if y \<in> A then Some y else None)) p"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1831
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1832
lemma set_restrict_spmf [simp]: "set_spmf (p \<upharpoonleft> A) = set_spmf p \<inter> A"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1833
by(fastforce simp add: restrict_spmf_def set_spmf_def split: bind_splits if_split_asm)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1834
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1835
lemma restrict_map_spmf: "map_spmf f p \<upharpoonleft> A = map_spmf f (p \<upharpoonleft> (f -` A))"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1836
by(simp add: restrict_spmf_def pmf.map_comp o_def map_option_bind bind_map_option if_distrib cong del: if_weak_cong)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1837
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1838
lemma restrict_restrict_spmf [simp]: "p \<upharpoonleft> A \<upharpoonleft> B = p \<upharpoonleft> (A \<inter> B)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1839
by(auto simp add: restrict_spmf_def pmf.map_comp o_def intro!: pmf.map_cong bind_option_cong)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1840
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1841
lemma restrict_spmf_empty [simp]: "p \<upharpoonleft> {} = return_pmf None"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1842
by(simp add: restrict_spmf_def)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1843
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1844
lemma restrict_spmf_UNIV [simp]: "p \<upharpoonleft> UNIV = p"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1845
by(simp add: restrict_spmf_def)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1846
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1847
lemma spmf_restrict_spmf_outside [simp]: "x \<notin> A \<Longrightarrow> spmf (p \<upharpoonleft> A) x = 0"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1848
by(simp add: spmf_eq_0_set_spmf)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1849
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1850
lemma emeasure_restrict_spmf [simp]:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1851
  "emeasure (measure_spmf (p \<upharpoonleft> A)) X = emeasure (measure_spmf p) (X \<inter> A)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1852
by(auto simp add: restrict_spmf_def measure_spmf_def emeasure_distr measurable_restrict_space1 emeasure_restrict_space space_restrict_space intro: arg_cong2[where f=emeasure] split: bind_splits if_split_asm)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1853
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1854
lemma measure_restrict_spmf [simp]:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1855
  "measure (measure_spmf (p \<upharpoonleft> A)) X = measure (measure_spmf p) (X \<inter> A)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1856
using emeasure_restrict_spmf[of p A X]
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1857
by(simp only: measure_spmf.emeasure_eq_measure ennreal_inj measure_nonneg)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1858
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1859
lemma spmf_restrict_spmf: "spmf (p \<upharpoonleft> A) x = (if x \<in> A then spmf p x else 0)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1860
by(simp add: spmf_conv_measure_spmf)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1861
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1862
lemma spmf_restrict_spmf_inside [simp]: "x \<in> A \<Longrightarrow> spmf (p \<upharpoonleft> A) x = spmf p x"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1863
by(simp add: spmf_restrict_spmf)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1864
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1865
lemma pmf_restrict_spmf_None: "pmf (p \<upharpoonleft> A) None = pmf p None + measure (measure_spmf p) (- A)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1866
proof -
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1867
  have [simp]: "None \<notin> Some ` (- A)" by auto
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1868
  have "(\<lambda>x. x \<bind> (\<lambda>y. if y \<in> A then Some y else None)) -` {None} = {None} \<union> (Some ` (- A))"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1869
    by(auto split: bind_splits if_split_asm)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1870
  then show ?thesis unfolding ereal.inject[symmetric]
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1871
    by(simp add: restrict_spmf_def ennreal_pmf_map emeasure_pmf_single del: ereal.inject)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1872
      (simp add: pmf.rep_eq measure_pmf.finite_measure_Union[symmetric] measure_measure_spmf_conv_measure_pmf measure_pmf.emeasure_eq_measure)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1873
qed
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1874
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1875
lemma restrict_spmf_trivial: "(\<And>x. x \<in> set_spmf p \<Longrightarrow> x \<in> A) \<Longrightarrow> p \<upharpoonleft> A = p"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1876
by(rule spmf_eqI)(auto simp add: spmf_restrict_spmf spmf_eq_0_set_spmf)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1877
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1878
lemma restrict_spmf_trivial': "set_spmf p \<subseteq> A \<Longrightarrow> p \<upharpoonleft> A = p"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1879
by(rule restrict_spmf_trivial) blast
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1880
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1881
lemma restrict_return_spmf: "return_spmf x \<upharpoonleft> A = (if x \<in> A then return_spmf x else return_pmf None)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1882
by(simp add: restrict_spmf_def)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1883
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1884
lemma restrict_return_spmf_inside [simp]: "x \<in> A \<Longrightarrow> return_spmf x \<upharpoonleft> A = return_spmf x"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1885
by(simp add: restrict_return_spmf)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1886
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1887
lemma restrict_return_spmf_outside [simp]: "x \<notin> A \<Longrightarrow> return_spmf x \<upharpoonleft> A = return_pmf None"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1888
by(simp add: restrict_return_spmf)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1889
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1890
lemma restrict_spmf_return_pmf_None [simp]: "return_pmf None \<upharpoonleft> A = return_pmf None"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1891
by(simp add: restrict_spmf_def)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1892
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1893
lemma restrict_bind_pmf: "bind_pmf p g \<upharpoonleft> A = p \<bind> (\<lambda>x. g x \<upharpoonleft> A)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1894
by(simp add: restrict_spmf_def map_bind_pmf o_def)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1895
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1896
lemma restrict_bind_spmf: "bind_spmf p g \<upharpoonleft> A = p \<bind> (\<lambda>x. g x \<upharpoonleft> A)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1897
by(auto simp add: bind_spmf_def restrict_bind_pmf cong del: option.case_cong_weak cong: option.case_cong intro!: bind_pmf_cong split: option.split)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1898
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1899
lemma bind_restrict_pmf: "bind_pmf (p \<upharpoonleft> A) g = p \<bind> (\<lambda>x. if x \<in> Some ` A then g x else g None)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1900
by(auto simp add: restrict_spmf_def bind_map_pmf fun_eq_iff split: bind_split intro: arg_cong2[where f=bind_pmf])
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1901
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1902
lemma bind_restrict_spmf: "bind_spmf (p \<upharpoonleft> A) g = p \<bind> (\<lambda>x. if x \<in> A then g x else return_pmf None)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1903
by(auto simp add: bind_spmf_def bind_restrict_pmf fun_eq_iff intro: arg_cong2[where f=bind_pmf] split: option.split)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1904
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1905
lemma spmf_map_restrict: "spmf (map_spmf fst (p \<upharpoonleft> (snd -` {y}))) x = spmf p (x, y)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1906
by(subst spmf_map)(auto intro: arg_cong2[where f=measure] simp add: spmf_conv_measure_spmf)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1907
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1908
lemma measure_eqI_restrict_spmf:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1909
  assumes "rel_spmf R (restrict_spmf p A) (restrict_spmf q B)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1910
  shows "measure (measure_spmf p) A = measure (measure_spmf q) B"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1911
proof -
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1912
  from assms have "weight_spmf (restrict_spmf p A) = weight_spmf (restrict_spmf q B)" by(rule rel_spmf_weightD)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1913
  thus ?thesis by(simp add: weight_spmf_def)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1914
qed
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1915
63308
d49580620ecb isabelle update_cartouches -c -t;
wenzelm
parents: 63243
diff changeset
  1916
subsection \<open>Subprobability distributions of sets\<close>
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1917
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1918
definition spmf_of_set :: "'a set \<Rightarrow> 'a spmf"
63333
158ab2239496 Probability: show that measures form a complete lattice
hoelzl
parents: 63308
diff changeset
  1919
where
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1920
  "spmf_of_set A = (if finite A \<and> A \<noteq> {} then spmf_of_pmf (pmf_of_set A) else return_pmf None)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1921
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1922
lemma spmf_of_set: "spmf (spmf_of_set A) x = indicator A x / card A"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1923
by(auto simp add: spmf_of_set_def)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1924
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1925
lemma pmf_spmf_of_set_None [simp]: "pmf (spmf_of_set A) None = indicator {A. infinite A \<or> A = {}} A"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1926
by(simp add: spmf_of_set_def)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1927
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1928
lemma set_spmf_of_set: "set_spmf (spmf_of_set A) = (if finite A then A else {})"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1929
by(simp add: spmf_of_set_def)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1930
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1931
lemma set_spmf_of_set_finite [simp]: "finite A \<Longrightarrow> set_spmf (spmf_of_set A) = A"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1932
by(simp add: set_spmf_of_set)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1933
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1934
lemma spmf_of_set_singleton: "spmf_of_set {x} = return_spmf x"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1935
by(simp add: spmf_of_set_def pmf_of_set_singleton)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1936
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1937
lemma map_spmf_of_set_inj_on [simp]:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1938
  "inj_on f A \<Longrightarrow> map_spmf f (spmf_of_set A) = spmf_of_set (f ` A)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1939
by(auto simp add: spmf_of_set_def map_pmf_of_set_inj dest: finite_imageD)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1940
63333
158ab2239496 Probability: show that measures form a complete lattice
hoelzl
parents: 63308
diff changeset
  1941
lemma spmf_of_pmf_pmf_of_set [simp]:
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1942
  "\<lbrakk> finite A; A \<noteq> {} \<rbrakk> \<Longrightarrow> spmf_of_pmf (pmf_of_set A) = spmf_of_set A"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1943
by(simp add: spmf_of_set_def)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1944
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1945
lemma weight_spmf_of_set:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1946
  "weight_spmf (spmf_of_set A) = (if finite A \<and> A \<noteq> {} then 1 else 0)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1947
by(auto simp only: spmf_of_set_def weight_spmf_of_pmf weight_return_pmf_None split: if_split)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1948
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1949
lemma weight_spmf_of_set_finite [simp]: "\<lbrakk> finite A; A \<noteq> {} \<rbrakk> \<Longrightarrow> weight_spmf (spmf_of_set A) = 1"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1950
by(simp add: weight_spmf_of_set)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1951
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1952
lemma weight_spmf_of_set_infinite [simp]: "infinite A \<Longrightarrow> weight_spmf (spmf_of_set A) = 0"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1953
by(simp add: weight_spmf_of_set)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1954
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1955
lemma measure_spmf_spmf_of_set:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1956
  "measure_spmf (spmf_of_set A) = (if finite A \<and> A \<noteq> {} then measure_pmf (pmf_of_set A) else null_measure (count_space UNIV))"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1957
by(simp add: spmf_of_set_def del: spmf_of_pmf_pmf_of_set)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1958
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1959
lemma emeasure_spmf_of_set:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1960
  "emeasure (measure_spmf (spmf_of_set S)) A = card (S \<inter> A) / card S"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1961
by(auto simp add: measure_spmf_spmf_of_set emeasure_pmf_of_set)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1962
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1963
lemma measure_spmf_of_set:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1964
  "measure (measure_spmf (spmf_of_set S)) A = card (S \<inter> A) / card S"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1965
by(auto simp add: measure_spmf_spmf_of_set measure_pmf_of_set)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1966
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64240
diff changeset
  1967
lemma nn_integral_spmf_of_set: "nn_integral (measure_spmf (spmf_of_set A)) f = sum f A / card A"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1968
by(cases "finite A")(auto simp add: spmf_of_set_def nn_integral_pmf_of_set card_gt_0_iff simp del: spmf_of_pmf_pmf_of_set)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1969
64267
b9a1486e79be setsum -> sum
nipkow
parents: 64240
diff changeset
  1970
lemma integral_spmf_of_set: "integral\<^sup>L (measure_spmf (spmf_of_set A)) f = sum f A / card A"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1971
by(clarsimp simp add: spmf_of_set_def integral_pmf_of_set card_gt_0_iff simp del: spmf_of_pmf_pmf_of_set)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1972
69597
ff784d5a5bfb isabelle update -u control_cartouches;
wenzelm
parents: 69260
diff changeset
  1973
notepad begin \<comment> \<open>\<^const>\<open>pmf_of_set\<close> is not fully parametric.\<close>
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1974
  define R :: "nat \<Rightarrow> nat \<Rightarrow> bool" where "R x y \<longleftrightarrow> (x \<noteq> 0 \<longrightarrow> y = 0)" for x y
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1975
  define A :: "nat set" where "A = {0, 1}"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1976
  define B :: "nat set" where "B = {0, 1, 2}"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1977
  have "rel_set R A B" unfolding R_def[abs_def] A_def B_def rel_set_def by auto
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1978
  have "\<not> rel_pmf R (pmf_of_set A) (pmf_of_set B)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1979
  proof
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1980
    assume "rel_pmf R (pmf_of_set A) (pmf_of_set B)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1981
    then obtain pq where pq: "\<And>x y. (x, y) \<in> set_pmf pq \<Longrightarrow> R x y"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1982
      and 1: "map_pmf fst pq = pmf_of_set A"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1983
      and 2: "map_pmf snd pq = pmf_of_set B"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1984
      by cases auto
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1985
    have "pmf (pmf_of_set B) 1 = 1 / 3" by(simp add: B_def)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1986
    have "pmf (pmf_of_set B) 2 = 1 / 3" by(simp add: B_def)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1987
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1988
    have "2 / 3 = pmf (pmf_of_set B) 1 + pmf (pmf_of_set B) 2" by(simp add: B_def)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1989
    also have "\<dots> = measure (measure_pmf (pmf_of_set B)) ({1} \<union> {2})"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1990
      by(subst measure_pmf.finite_measure_Union)(simp_all add: measure_pmf_single)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1991
    also have "\<dots> = emeasure (measure_pmf pq) (snd -` {2, 1})"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1992
      unfolding 2[symmetric] measure_pmf.emeasure_eq_measure[symmetric] by(simp)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1993
    also have "\<dots> = emeasure (measure_pmf pq) {(0, 2), (0, 1)}"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1994
      by(rule emeasure_eq_AE)(auto simp add: AE_measure_pmf_iff R_def dest!: pq)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1995
    also have "\<dots> \<le> emeasure (measure_pmf pq) (fst -` {0})"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1996
      by(rule emeasure_mono) auto
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1997
    also have "\<dots> = emeasure (measure_pmf (pmf_of_set A)) {0}"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1998
      unfolding 1[symmetric] by simp
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  1999
    also have "\<dots> = pmf (pmf_of_set A) 0"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2000
      by(simp add: measure_pmf_single measure_pmf.emeasure_eq_measure)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2001
    also have "pmf (pmf_of_set A) 0 = 1 / 2" by(simp add: A_def)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2002
    finally show False by(subst (asm) ennreal_le_iff; simp)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2003
  qed
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2004
end
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2005
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2006
lemma rel_pmf_of_set_bij:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2007
  assumes f: "bij_betw f A B"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2008
  and A: "A \<noteq> {}" "finite A"
63333
158ab2239496 Probability: show that measures form a complete lattice
hoelzl
parents: 63308
diff changeset
  2009
  and B: "B \<noteq> {}" "finite B"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2010
  and R: "\<And>x. x \<in> A \<Longrightarrow> R x (f x)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2011
  shows "rel_pmf R (pmf_of_set A) (pmf_of_set B)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2012
proof(rule pmf.rel_mono_strong)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2013
  define AB where "AB = (\<lambda>x. (x, f x)) ` A"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2014
  define R' where "R' x y \<longleftrightarrow> (x, y) \<in> AB" for x y
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2015
  have "(x, y) \<in> AB" if "(x, y) \<in> set_pmf (pmf_of_set AB)" for x y
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2016
    using that by(auto simp add: AB_def A)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2017
  moreover have "map_pmf fst (pmf_of_set AB) = pmf_of_set A"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2018
    by(simp add: AB_def map_pmf_of_set_inj[symmetric] inj_on_def A pmf.map_comp o_def)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2019
  moreover
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2020
  from f have [simp]: "inj_on f A" by(rule bij_betw_imp_inj_on)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2021
  from f have [simp]: "f ` A = B" by(rule bij_betw_imp_surj_on)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2022
  have "map_pmf snd (pmf_of_set AB) = pmf_of_set B"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2023
    by(simp add: AB_def map_pmf_of_set_inj[symmetric] inj_on_def A pmf.map_comp o_def)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2024
      (simp add: map_pmf_of_set_inj A)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2025
  ultimately show "rel_pmf (\<lambda>x y. (x, y) \<in> AB) (pmf_of_set A) (pmf_of_set B)" ..
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2026
qed(auto intro: R)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2027
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2028
lemma rel_spmf_of_set_bij:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2029
  assumes f: "bij_betw f A B"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2030
  and R: "\<And>x. x \<in> A \<Longrightarrow> R x (f x)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2031
  shows "rel_spmf R (spmf_of_set A) (spmf_of_set B)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2032
proof -
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2033
  have "finite A \<longleftrightarrow> finite B" using f by(rule bij_betw_finite)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2034
  moreover have "A = {} \<longleftrightarrow> B = {}" using f by(auto dest: bij_betw_empty2 bij_betw_empty1)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2035
  ultimately show ?thesis using assms
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2036
    by(auto simp add: spmf_of_set_def simp del: spmf_of_pmf_pmf_of_set intro: rel_pmf_of_set_bij)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2037
qed
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2038
63343
fb5d8a50c641 bundle lifting_syntax;
wenzelm
parents: 63333
diff changeset
  2039
context includes lifting_syntax
fb5d8a50c641 bundle lifting_syntax;
wenzelm
parents: 63333
diff changeset
  2040
begin
fb5d8a50c641 bundle lifting_syntax;
wenzelm
parents: 63333
diff changeset
  2041
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2042
lemma rel_spmf_of_set:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2043
  assumes "bi_unique R"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2044
  shows "(rel_set R ===> rel_spmf R) spmf_of_set spmf_of_set"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2045
proof
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2046
  fix A B
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2047
  assume R: "rel_set R A B"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2048
  with assms obtain f where "bij_betw f A B" and f: "\<And>x. x \<in> A \<Longrightarrow> R x (f x)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2049
    by(auto dest: bi_unique_rel_set_bij_betw)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2050
  then show "rel_spmf R (spmf_of_set A) (spmf_of_set B)" by(rule rel_spmf_of_set_bij)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2051
qed
63343
fb5d8a50c641 bundle lifting_syntax;
wenzelm
parents: 63333
diff changeset
  2052
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2053
end
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2054
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2055
lemma map_mem_spmf_of_set:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2056
  assumes "finite B" "B \<noteq> {}"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2057
  shows "map_spmf (\<lambda>x. x \<in> A) (spmf_of_set B) = spmf_of_pmf (bernoulli_pmf (card (A \<inter> B) / card B))"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2058
  (is "?lhs = ?rhs")
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2059
proof(rule spmf_eqI)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2060
  fix i
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2061
  have "ennreal (spmf ?lhs i) = card (B \<inter> (\<lambda>x. x \<in> A) -` {i}) / (card B)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2062
    by(subst ennreal_spmf_map)(simp add: measure_spmf_spmf_of_set assms emeasure_pmf_of_set)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2063
  also have "\<dots> = (if i then card (B \<inter> A) / card B else card (B - A) / card B)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2064
    by(auto intro: arg_cong[where f=card])
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2065
  also have "\<dots> = (if i then card (B \<inter> A) / card B else (card B - card (B \<inter> A)) / card B)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2066
    by(auto simp add: card_Diff_subset_Int assms)
63333
158ab2239496 Probability: show that measures form a complete lattice
hoelzl
parents: 63308
diff changeset
  2067
  also have "\<dots> = ennreal (spmf ?rhs i)"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2068
    by(simp add: assms card_gt_0_iff field_simps card_mono Int_commute of_nat_diff)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2069
  finally show "spmf ?lhs i = spmf ?rhs i" by simp
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2070
qed
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2071
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2072
abbreviation coin_spmf :: "bool spmf"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2073
where "coin_spmf \<equiv> spmf_of_set UNIV"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2074
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  2075
lemma map_eq_const_coin_spmf: "map_spmf ((=) c) coin_spmf = coin_spmf"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2076
proof -
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  2077
  have "inj ((\<longleftrightarrow>) c)" "range ((\<longleftrightarrow>) c) = UNIV" by(auto intro: inj_onI)
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2078
  then show ?thesis by simp
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2079
qed
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2080
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2081
lemma bind_coin_spmf_eq_const: "coin_spmf \<bind> (\<lambda>x :: bool. return_spmf (b = x)) = coin_spmf"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2082
using map_eq_const_coin_spmf unfolding map_spmf_conv_bind_spmf by simp
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2083
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2084
lemma bind_coin_spmf_eq_const': "coin_spmf \<bind> (\<lambda>x :: bool. return_spmf (x = b)) = coin_spmf"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2085
by(rewrite in "_ = \<hole>" bind_coin_spmf_eq_const[symmetric, of b])(auto intro: bind_spmf_cong)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2086
63308
d49580620ecb isabelle update_cartouches -c -t;
wenzelm
parents: 63243
diff changeset
  2087
subsection \<open>Losslessness\<close>
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2088
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2089
definition lossless_spmf :: "'a spmf \<Rightarrow> bool"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2090
where "lossless_spmf p \<longleftrightarrow> weight_spmf p = 1"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2091
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2092
lemma lossless_iff_pmf_None: "lossless_spmf p \<longleftrightarrow> pmf p None = 0"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2093
by(simp add: lossless_spmf_def pmf_None_eq_weight_spmf)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2094
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2095
lemma lossless_return_spmf [iff]: "lossless_spmf (return_spmf x)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2096
by(simp add: lossless_iff_pmf_None)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2097
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2098
lemma lossless_return_pmf_None [iff]: "\<not> lossless_spmf (return_pmf None)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2099
by(simp add: lossless_iff_pmf_None)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2100
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2101
lemma lossless_map_spmf [simp]: "lossless_spmf (map_spmf f p) \<longleftrightarrow> lossless_spmf p"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2102
by(auto simp add: lossless_iff_pmf_None pmf_eq_0_set_pmf)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2103
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2104
lemma lossless_bind_spmf [simp]:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2105
  "lossless_spmf (p \<bind> f) \<longleftrightarrow> lossless_spmf p \<and> (\<forall>x\<in>set_spmf p. lossless_spmf (f x))"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2106
by(simp add: lossless_iff_pmf_None pmf_bind_spmf_None add_nonneg_eq_0_iff integral_nonneg_AE integral_nonneg_eq_0_iff_AE measure_spmf.integrable_const_bound[where B=1] pmf_le_1)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2107
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2108
lemma lossless_weight_spmfD: "lossless_spmf p \<Longrightarrow> weight_spmf p = 1"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2109
by(simp add: lossless_spmf_def)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2110
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2111
lemma lossless_iff_set_pmf_None:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2112
  "lossless_spmf p \<longleftrightarrow> None \<notin> set_pmf p"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2113
by (simp add: lossless_iff_pmf_None pmf_eq_0_set_pmf)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2114
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2115
lemma lossless_spmf_of_set [simp]: "lossless_spmf (spmf_of_set A) \<longleftrightarrow> finite A \<and> A \<noteq> {}"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2116
by(auto simp add: lossless_spmf_def weight_spmf_of_set)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2117
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2118
lemma lossless_spmf_spmf_of_spmf [simp]: "lossless_spmf (spmf_of_pmf p)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2119
by(simp add: lossless_spmf_def)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2120
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2121
lemma lossless_spmf_bind_pmf [simp]:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2122
  "lossless_spmf (bind_pmf p f) \<longleftrightarrow> (\<forall>x\<in>set_pmf p. lossless_spmf (f x))"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2123
by(simp add: lossless_iff_pmf_None pmf_bind integral_nonneg_AE integral_nonneg_eq_0_iff_AE measure_pmf.integrable_const_bound[where B=1] AE_measure_pmf_iff pmf_le_1)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2124
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2125
lemma lossless_spmf_conv_spmf_of_pmf: "lossless_spmf p \<longleftrightarrow> (\<exists>p'. p = spmf_of_pmf p')"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2126
proof
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2127
  assume "lossless_spmf p"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2128
  hence *: "\<And>y. y \<in> set_pmf p \<Longrightarrow> \<exists>x. y = Some x"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2129
    by(case_tac y)(simp_all add: lossless_iff_set_pmf_None)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2130
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2131
  let ?p = "map_pmf the p"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2132
  have "p = spmf_of_pmf ?p"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2133
  proof(rule spmf_eqI)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2134
    fix i
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2135
    have "ennreal (pmf (map_pmf the p) i) = \<integral>\<^sup>+ x. indicator (the -` {i}) x \<partial>p" by(simp add: ennreal_pmf_map)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2136
    also have "\<dots> = \<integral>\<^sup>+ x. indicator {i} x \<partial>measure_spmf p" unfolding measure_spmf_def
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2137
      by(subst nn_integral_distr)(auto simp add: nn_integral_restrict_space AE_measure_pmf_iff simp del: nn_integral_indicator intro!: nn_integral_cong_AE split: split_indicator dest!: * )
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2138
    also have "\<dots> = spmf p i" by(simp add: emeasure_spmf_single)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2139
    finally show "spmf p i = spmf (spmf_of_pmf ?p) i" by simp
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2140
  qed
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2141
  thus "\<exists>p'. p = spmf_of_pmf p'" ..
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2142
qed auto
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2143
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2144
lemma spmf_False_conv_True: "lossless_spmf p \<Longrightarrow> spmf p False = 1 - spmf p True"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2145
by(clarsimp simp add: lossless_spmf_conv_spmf_of_pmf pmf_False_conv_True)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2146
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2147
lemma spmf_True_conv_False: "lossless_spmf p \<Longrightarrow> spmf p True = 1 - spmf p False"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2148
by(simp add: spmf_False_conv_True)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2149
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2150
lemma bind_eq_return_spmf:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2151
  "bind_spmf p f = return_spmf x \<longleftrightarrow> (\<forall>y\<in>set_spmf p. f y = return_spmf x) \<and> lossless_spmf p"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2152
by(auto simp add: bind_spmf_def bind_eq_return_pmf in_set_spmf lossless_iff_pmf_None pmf_eq_0_set_pmf iff del: not_None_eq split: option.split)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2153
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2154
lemma rel_spmf_return_spmf2:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2155
  "rel_spmf R p (return_spmf x) \<longleftrightarrow> lossless_spmf p \<and> (\<forall>a\<in>set_spmf p. R a x)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2156
by(auto simp add: lossless_iff_set_pmf_None rel_pmf_return_pmf2 option_rel_Some2 in_set_spmf, metis in_set_spmf not_None_eq)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2157
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2158
lemma rel_spmf_return_spmf1:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2159
  "rel_spmf R (return_spmf x) p \<longleftrightarrow> lossless_spmf p \<and> (\<forall>a\<in>set_spmf p. R x a)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2160
using rel_spmf_return_spmf2[of "R\<inverse>\<inverse>"] by(simp add: spmf_rel_conversep)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2161
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2162
lemma rel_spmf_bindI1:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2163
  assumes f: "\<And>x. x \<in> set_spmf p \<Longrightarrow> rel_spmf R (f x) q"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2164
  and p: "lossless_spmf p"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2165
  shows "rel_spmf R (bind_spmf p f) q"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2166
proof -
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2167
  fix x :: 'a
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2168
  have "rel_spmf R (bind_spmf p f) (bind_spmf (return_spmf x) (\<lambda>_. q))"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2169
    by(rule rel_spmf_bindI[where R="\<lambda>x _. x \<in> set_spmf p"])(simp_all add: rel_spmf_return_spmf2 p f)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2170
  then show ?thesis by simp
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2171
qed
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2172
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2173
lemma rel_spmf_bindI2:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2174
  "\<lbrakk> \<And>x. x \<in> set_spmf q \<Longrightarrow> rel_spmf R p (f x); lossless_spmf q \<rbrakk>
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2175
  \<Longrightarrow> rel_spmf R p (bind_spmf q f)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2176
using rel_spmf_bindI1[of q "conversep R" f p] by(simp add: spmf_rel_conversep)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2177
63308
d49580620ecb isabelle update_cartouches -c -t;
wenzelm
parents: 63243
diff changeset
  2178
subsection \<open>Scaling\<close>
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2179
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2180
definition scale_spmf :: "real \<Rightarrow> 'a spmf \<Rightarrow> 'a spmf"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2181
where
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2182
  "scale_spmf r p = embed_spmf (\<lambda>x. min (inverse (weight_spmf p)) (max 0 r) * spmf p x)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2183
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2184
lemma scale_spmf_le_1:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2185
  "(\<integral>\<^sup>+ x. min (inverse (weight_spmf p)) (max 0 r) * spmf p x \<partial>count_space UNIV) \<le> 1" (is "?lhs \<le> _")
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2186
proof -
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2187
  have "?lhs = min (inverse (weight_spmf p)) (max 0 r) * \<integral>\<^sup>+ x. spmf p x \<partial>count_space UNIV"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2188
    by(subst nn_integral_cmult[symmetric])(simp_all add: weight_spmf_nonneg max_def min_def ennreal_mult)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2189
  also have "\<dots> \<le> 1" unfolding weight_spmf_eq_nn_integral_spmf[symmetric]
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2190
    by(simp add: min_def max_def weight_spmf_nonneg order.strict_iff_order field_simps ennreal_mult[symmetric])
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2191
  finally show ?thesis .
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2192
qed
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2193
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2194
lemma spmf_scale_spmf: "spmf (scale_spmf r p) x = max 0 (min (inverse (weight_spmf p)) r) * spmf p x" (is "?lhs = ?rhs")
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2195
unfolding scale_spmf_def
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2196
apply(subst spmf_embed_spmf[OF scale_spmf_le_1])
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2197
apply(simp add: max_def min_def weight_spmf_le_0 field_simps weight_spmf_nonneg not_le order.strict_iff_order)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2198
apply(metis antisym_conv order_trans weight_spmf_nonneg zero_le_mult_iff zero_le_one)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2199
done
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2200
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2201
lemma real_inverse_le_1_iff: fixes x :: real
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2202
  shows "\<lbrakk> 0 \<le> x; x \<le> 1 \<rbrakk> \<Longrightarrow> 1 / x \<le> 1 \<longleftrightarrow> x = 1 \<or> x = 0"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2203
by auto
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2204
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2205
lemma spmf_scale_spmf': "r \<le> 1 \<Longrightarrow> spmf (scale_spmf r p) x = max 0 r * spmf p x"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2206
using real_inverse_le_1_iff[OF weight_spmf_nonneg weight_spmf_le_1, of p]
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2207
by(auto simp add: spmf_scale_spmf max_def min_def field_simps)(metis pmf_le_0_iff spmf_le_weight)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2208
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2209
lemma scale_spmf_neg: "r \<le> 0 \<Longrightarrow> scale_spmf r p = return_pmf None"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2210
by(rule spmf_eqI)(simp add: spmf_scale_spmf' max_def)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2211
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2212
lemma scale_spmf_return_None [simp]: "scale_spmf r (return_pmf None) = return_pmf None"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2213
by(rule spmf_eqI)(simp add: spmf_scale_spmf)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2214
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2215
lemma scale_spmf_conv_bind_bernoulli:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2216
  assumes "r \<le> 1"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2217
  shows "scale_spmf r p = bind_pmf (bernoulli_pmf r) (\<lambda>b. if b then p else return_pmf None)" (is "?lhs = ?rhs")
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2218
proof(rule spmf_eqI)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2219
  fix x
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2220
  have "ennreal (spmf ?lhs x) = ennreal (spmf ?rhs x)" using assms
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2221
    unfolding spmf_scale_spmf ennreal_pmf_bind nn_integral_measure_pmf UNIV_bool bernoulli_pmf.rep_eq
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2222
    apply(auto simp add: nn_integral_count_space_finite max_def min_def field_simps real_inverse_le_1_iff[OF weight_spmf_nonneg weight_spmf_le_1] weight_spmf_lt_0 not_le ennreal_mult[symmetric])
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2223
    apply (metis pmf_le_0_iff spmf_le_weight)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2224
    apply (metis pmf_le_0_iff spmf_le_weight)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2225
    apply (meson le_divide_eq_1_pos measure_spmf.subprob_measure_le_1 not_less order_trans weight_spmf_le_0)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2226
    by (meson divide_le_0_1_iff less_imp_le order_trans weight_spmf_le_0)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2227
  thus "spmf ?lhs x = spmf ?rhs x" by simp
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2228
qed
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2229
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2230
lemma nn_integral_spmf: "(\<integral>\<^sup>+ x. spmf p x \<partial>count_space A) = emeasure (measure_spmf p) A"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2231
apply(simp add: measure_spmf_def emeasure_distr emeasure_restrict_space space_restrict_space nn_integral_pmf[symmetric])
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2232
apply(rule nn_integral_bij_count_space[where g=Some])
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2233
apply(auto simp add: bij_betw_def)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2234
done
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2235
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2236
lemma measure_spmf_scale_spmf: "measure_spmf (scale_spmf r p) = scale_measure (min (inverse (weight_spmf p)) r) (measure_spmf p)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2237
apply(rule measure_eqI)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2238
 apply simp
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2239
apply(simp add: nn_integral_spmf[symmetric] spmf_scale_spmf)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2240
apply(subst nn_integral_cmult[symmetric])
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2241
apply(auto simp add: max_def min_def ennreal_mult[symmetric] not_le ennreal_lt_0)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2242
done
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2243
63333
158ab2239496 Probability: show that measures form a complete lattice
hoelzl
parents: 63308
diff changeset
  2244
lemma measure_spmf_scale_spmf':
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2245
  "r \<le> 1 \<Longrightarrow> measure_spmf (scale_spmf r p) = scale_measure r (measure_spmf p)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2246
unfolding measure_spmf_scale_spmf
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2247
apply(cases "weight_spmf p > 0")
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2248
 apply(simp add: min.absorb2 field_simps weight_spmf_le_1 mult_le_one)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2249
apply(clarsimp simp add: weight_spmf_le_0 min_def scale_spmf_neg weight_spmf_eq_0 not_less)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2250
done
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2251
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2252
lemma scale_spmf_1 [simp]: "scale_spmf 1 p = p"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2253
apply(rule spmf_eqI)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2254
apply(simp add: spmf_scale_spmf max_def min_def order.strict_iff_order field_simps weight_spmf_nonneg)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2255
apply(metis antisym_conv divide_le_eq_1 less_imp_le pmf_nonneg spmf_le_weight weight_spmf_nonneg weight_spmf_le_1)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2256
done
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2257
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2258
lemma scale_spmf_0 [simp]: "scale_spmf 0 p = return_pmf None"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2259
by(rule spmf_eqI)(simp add: spmf_scale_spmf min_def max_def weight_spmf_le_0)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2260
63333
158ab2239496 Probability: show that measures form a complete lattice
hoelzl
parents: 63308
diff changeset
  2261
lemma bind_scale_spmf:
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2262
  assumes r: "r \<le> 1"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2263
  shows "bind_spmf (scale_spmf r p) f = bind_spmf p (\<lambda>x. scale_spmf r (f x))"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2264
  (is "?lhs = ?rhs")
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2265
proof(rule spmf_eqI)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2266
  fix x
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2267
  have "ennreal (spmf ?lhs x) = ennreal (spmf ?rhs x)" using r
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2268
    by(simp add: ennreal_spmf_bind measure_spmf_scale_spmf' nn_integral_scale_measure spmf_scale_spmf')
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2269
      (simp add: ennreal_mult ennreal_lt_0 nn_integral_cmult max_def min_def)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2270
  thus "spmf ?lhs x = spmf ?rhs x" by simp
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2271
qed
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2272
63333
158ab2239496 Probability: show that measures form a complete lattice
hoelzl
parents: 63308
diff changeset
  2273
lemma scale_bind_spmf:
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2274
  assumes "r \<le> 1"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2275
  shows "scale_spmf r (bind_spmf p f) = bind_spmf p (\<lambda>x. scale_spmf r (f x))"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2276
  (is "?lhs = ?rhs")
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2277
proof(rule spmf_eqI)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2278
  fix x
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2279
  have "ennreal (spmf ?lhs x) = ennreal (spmf ?rhs x)" using assms
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2280
    unfolding spmf_scale_spmf'[OF assms]
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2281
    by(simp add: ennreal_mult ennreal_spmf_bind spmf_scale_spmf' nn_integral_cmult max_def min_def)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2282
  thus "spmf ?lhs x = spmf ?rhs x" by simp
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2283
qed
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2284
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2285
lemma bind_spmf_const: "bind_spmf p (\<lambda>x. q) = scale_spmf (weight_spmf p) q" (is "?lhs = ?rhs")
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2286
proof(rule spmf_eqI)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2287
  fix x
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2288
  have "ennreal (spmf ?lhs x) = ennreal (spmf ?rhs x)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2289
    using measure_spmf.subprob_measure_le_1[of p "space (measure_spmf p)"]
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2290
    by(subst ennreal_spmf_bind)(simp add: spmf_scale_spmf' weight_spmf_le_1 ennreal_mult mult.commute max_def min_def measure_spmf.emeasure_eq_measure)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2291
  thus "spmf ?lhs x = spmf ?rhs x" by simp
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2292
qed
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2293
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2294
lemma map_scale_spmf: "map_spmf f (scale_spmf r p) = scale_spmf r (map_spmf f p)" (is "?lhs = ?rhs")
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2295
proof(rule spmf_eqI)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2296
  fix i
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2297
  show "spmf ?lhs i = spmf ?rhs i" unfolding spmf_scale_spmf
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2298
    by(subst (1 2) spmf_map)(auto simp add: measure_spmf_scale_spmf max_def min_def ennreal_lt_0)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2299
qed
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2300
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2301
lemma set_scale_spmf: "set_spmf (scale_spmf r p) = (if r > 0 then set_spmf p else {})"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2302
apply(auto simp add: in_set_spmf_iff_spmf spmf_scale_spmf)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2303
apply(simp add: max_def min_def not_le weight_spmf_lt_0 weight_spmf_eq_0 split: if_split_asm)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2304
done
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2305
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2306
lemma set_scale_spmf' [simp]: "0 < r \<Longrightarrow> set_spmf (scale_spmf r p) = set_spmf p"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2307
by(simp add: set_scale_spmf)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2308
63333
158ab2239496 Probability: show that measures form a complete lattice
hoelzl
parents: 63308
diff changeset
  2309
lemma rel_spmf_scaleI:
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2310
  assumes "r > 0 \<Longrightarrow> rel_spmf A p q"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2311
  shows "rel_spmf A (scale_spmf r p) (scale_spmf r q)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2312
proof(cases "r > 0")
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2313
  case True
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2314
  from assms[OF this] show ?thesis
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2315
    by(rule rel_spmfE)(auto simp add: map_scale_spmf[symmetric] spmf_rel_map True intro: rel_spmf_reflI)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2316
qed(simp add: not_less scale_spmf_neg)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2317
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2318
lemma weight_scale_spmf: "weight_spmf (scale_spmf r p) = min 1 (max 0 r * weight_spmf p)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2319
proof -
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2320
  have "ennreal (weight_spmf (scale_spmf r p)) = min 1 (max 0 r * ennreal (weight_spmf p))"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2321
    unfolding weight_spmf_eq_nn_integral_spmf
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2322
    apply(simp add: spmf_scale_spmf ennreal_mult zero_ereal_def[symmetric] nn_integral_cmult)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2323
    apply(auto simp add: weight_spmf_eq_nn_integral_spmf[symmetric] field_simps min_def max_def not_le weight_spmf_lt_0 ennreal_mult[symmetric])
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2324
    subgoal by(subst (asm) ennreal_mult[symmetric], meson divide_less_0_1_iff le_less_trans not_le weight_spmf_lt_0, simp+, meson not_le pos_divide_le_eq weight_spmf_le_0)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2325
    subgoal by(cases "r \<ge> 0")(simp_all add: ennreal_mult[symmetric] weight_spmf_nonneg ennreal_lt_0, meson le_less_trans not_le pos_divide_le_eq zero_less_divide_1_iff)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2326
    done
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2327
  thus ?thesis by(auto simp add: min_def max_def ennreal_mult[symmetric] split: if_split_asm)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2328
qed
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2329
63333
158ab2239496 Probability: show that measures form a complete lattice
hoelzl
parents: 63308
diff changeset
  2330
lemma weight_scale_spmf' [simp]:
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2331
  "\<lbrakk> 0 \<le> r; r \<le> 1 \<rbrakk> \<Longrightarrow> weight_spmf (scale_spmf r p) = r * weight_spmf p"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2332
by(simp add: weight_scale_spmf max_def min_def)(metis antisym_conv mult_left_le order_trans weight_spmf_le_1)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2333
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2334
lemma pmf_scale_spmf_None:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2335
  "pmf (scale_spmf k p) None = 1 - min 1 (max 0 k * (1 - pmf p None))"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2336
unfolding pmf_None_eq_weight_spmf by(simp add: weight_scale_spmf)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2337
63333
158ab2239496 Probability: show that measures form a complete lattice
hoelzl
parents: 63308
diff changeset
  2338
lemma scale_scale_spmf:
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2339
  "scale_spmf r (scale_spmf r' p) = scale_spmf (r * max 0 (min (inverse (weight_spmf p)) r')) p"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2340
  (is "?lhs = ?rhs")
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2341
proof(rule spmf_eqI)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2342
  fix i
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2343
  have "max 0 (min (1 / weight_spmf p) r') *
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2344
    max 0 (min (1 / min 1 (weight_spmf p * max 0 r')) r) =
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2345
    max 0 (min (1 / weight_spmf p) (r * max 0 (min (1 / weight_spmf p) r')))"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2346
  proof(cases "weight_spmf p > 0")
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2347
    case False
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2348
    thus ?thesis by(simp add: not_less weight_spmf_le_0)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2349
  next
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2350
    case True
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2351
    thus ?thesis by(simp add: field_simps max_def min.absorb_iff2[symmetric])(auto simp add: min_def field_simps zero_le_mult_iff)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2352
  qed
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2353
  then show "spmf ?lhs i = spmf ?rhs i"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2354
    by(simp add: spmf_scale_spmf field_simps weight_scale_spmf)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2355
qed
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2356
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2357
lemma scale_scale_spmf' [simp]:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2358
  "\<lbrakk> 0 \<le> r; r \<le> 1; 0 \<le> r'; r' \<le> 1 \<rbrakk>
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2359
  \<Longrightarrow> scale_spmf r (scale_spmf r' p) = scale_spmf (r * r') p"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2360
apply(cases "weight_spmf p > 0")
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2361
apply(auto simp add: scale_scale_spmf min_def max_def field_simps not_le weight_spmf_lt_0 weight_spmf_eq_0 not_less weight_spmf_le_0)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2362
apply(subgoal_tac "1 = r'")
64240
eabf80376aab more standardized names
haftmann
parents: 63886
diff changeset
  2363
 apply (metis (no_types) div_by_1 eq_iff measure_spmf.subprob_measure_le_1 mult.commute mult_cancel_right1)
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2364
apply(meson eq_iff le_divide_eq_1_pos measure_spmf.subprob_measure_le_1 mult_imp_div_pos_le order.trans)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2365
done
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2366
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2367
lemma scale_spmf_eq_same: "scale_spmf r p = p \<longleftrightarrow> weight_spmf p = 0 \<or> r = 1 \<or> r \<ge> 1 \<and> weight_spmf p = 1"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2368
  (is "?lhs \<longleftrightarrow> ?rhs")
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2369
proof
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2370
  assume ?lhs
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2371
  hence "weight_spmf (scale_spmf r p) = weight_spmf p" by simp
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2372
  hence *: "min 1 (max 0 r * weight_spmf p) = weight_spmf p" by(simp add: weight_scale_spmf)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2373
  hence **: "weight_spmf p = 0 \<or> r \<ge> 1" by(auto simp add: min_def max_def split: if_split_asm)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2374
  show ?rhs
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2375
  proof(cases "weight_spmf p = 0")
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2376
    case False
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2377
    with ** have "r \<ge> 1" by simp
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2378
    with * False have "r = 1 \<or> weight_spmf p = 1" by(simp add: max_def min_def not_le split: if_split_asm)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2379
    with \<open>r \<ge> 1\<close> show ?thesis by simp
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2380
  qed simp
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2381
qed(auto intro!: spmf_eqI simp add: spmf_scale_spmf, metis pmf_le_0_iff spmf_le_weight)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2382
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2383
lemma map_const_spmf_of_set:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2384
  "\<lbrakk> finite A; A \<noteq> {} \<rbrakk> \<Longrightarrow> map_spmf (\<lambda>_. c) (spmf_of_set A) = return_spmf c"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2385
by(simp add: map_spmf_conv_bind_spmf bind_spmf_const)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2386
63308
d49580620ecb isabelle update_cartouches -c -t;
wenzelm
parents: 63243
diff changeset
  2387
subsection \<open>Conditional spmfs\<close>
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2388
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2389
lemma set_pmf_Int_Some: "set_pmf p \<inter> Some ` A = {} \<longleftrightarrow> set_spmf p \<inter> A = {}"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2390
by(auto simp add: in_set_spmf)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2391
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2392
lemma measure_spmf_zero_iff: "measure (measure_spmf p) A = 0 \<longleftrightarrow> set_spmf p \<inter> A = {}"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2393
unfolding measure_measure_spmf_conv_measure_pmf by(simp add: measure_pmf_zero_iff set_pmf_Int_Some)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2394
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2395
definition cond_spmf :: "'a spmf \<Rightarrow> 'a set \<Rightarrow> 'a spmf"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2396
where "cond_spmf p A = (if set_spmf p \<inter> A = {} then return_pmf None else cond_pmf p (Some ` A))"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2397
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2398
lemma set_cond_spmf [simp]: "set_spmf (cond_spmf p A) = set_spmf p \<inter> A"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2399
by(auto 4 4 simp add: cond_spmf_def in_set_spmf iff: set_cond_pmf[THEN set_eq_iff[THEN iffD1], THEN spec, rotated])
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2400
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2401
lemma cond_map_spmf [simp]: "cond_spmf (map_spmf f p) A = map_spmf f (cond_spmf p (f -` A))"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2402
proof -
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2403
  have "map_option f -` Some ` A = Some ` f -` A" by auto
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2404
  moreover have "set_pmf p \<inter> map_option f -` Some ` A \<noteq> {}" if "Some x \<in> set_pmf p" "f x \<in> A" for x
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2405
    using that by auto
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2406
  ultimately show ?thesis by(auto simp add: cond_spmf_def in_set_spmf cond_map_pmf)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2407
qed
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2408
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2409
lemma spmf_cond_spmf [simp]:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2410
  "spmf (cond_spmf p A) x = (if x \<in> A then spmf p x / measure (measure_spmf p) A else 0)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2411
by(auto simp add: cond_spmf_def pmf_cond set_pmf_Int_Some[symmetric] measure_measure_spmf_conv_measure_pmf measure_pmf_zero_iff)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2412
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2413
lemma bind_eq_return_pmf_None:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2414
  "bind_spmf p f = return_pmf None \<longleftrightarrow> (\<forall>x\<in>set_spmf p. f x = return_pmf None)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2415
by(auto simp add: bind_spmf_def bind_eq_return_pmf in_set_spmf split: option.splits)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2416
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2417
lemma return_pmf_None_eq_bind:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2418
  "return_pmf None = bind_spmf p f \<longleftrightarrow> (\<forall>x\<in>set_spmf p. f x = return_pmf None)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2419
using bind_eq_return_pmf_None[of p f] by auto
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2420
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2421
(* Conditional probabilities do not seem to interact nicely with bind. *)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2422
63308
d49580620ecb isabelle update_cartouches -c -t;
wenzelm
parents: 63243
diff changeset
  2423
subsection \<open>Product spmf\<close>
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2424
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2425
definition pair_spmf :: "'a spmf \<Rightarrow> 'b spmf \<Rightarrow> ('a \<times> 'b) spmf"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2426
where "pair_spmf p q = bind_pmf (pair_pmf p q) (\<lambda>xy. case xy of (Some x, Some y) \<Rightarrow> return_spmf (x, y) | _ \<Rightarrow> return_pmf None)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2427
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2428
lemma map_fst_pair_spmf [simp]: "map_spmf fst (pair_spmf p q) = scale_spmf (weight_spmf q) p"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2429
unfolding bind_spmf_const[symmetric]
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2430
apply(simp add: pair_spmf_def map_bind_pmf pair_pmf_def bind_assoc_pmf option.case_distrib)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2431
apply(subst bind_commute_pmf)
63566
e5abbdee461a more accurate cong del;
wenzelm
parents: 63540
diff changeset
  2432
apply(auto intro!: bind_pmf_cong[OF refl] simp add: bind_return_pmf bind_spmf_def bind_return_pmf' case_option_collapse option.case_distrib[where h="map_spmf _"] option.case_distrib[symmetric] case_option_id split: option.split cong del: option.case_cong_weak)
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2433
done
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2434
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2435
lemma map_snd_pair_spmf [simp]: "map_spmf snd (pair_spmf p q) = scale_spmf (weight_spmf p) q"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2436
unfolding bind_spmf_const[symmetric]
63566
e5abbdee461a more accurate cong del;
wenzelm
parents: 63540
diff changeset
  2437
  apply(simp add: pair_spmf_def map_bind_pmf pair_pmf_def bind_assoc_pmf option.case_distrib
e5abbdee461a more accurate cong del;
wenzelm
parents: 63540
diff changeset
  2438
    cong del: option.case_cong_weak)
e5abbdee461a more accurate cong del;
wenzelm
parents: 63540
diff changeset
  2439
apply(auto intro!: bind_pmf_cong[OF refl] simp add: bind_return_pmf bind_spmf_def bind_return_pmf' case_option_collapse option.case_distrib[where h="map_spmf _"] option.case_distrib[symmetric] case_option_id split: option.split cong del: option.case_cong_weak)
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2440
done
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2441
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2442
lemma set_pair_spmf [simp]: "set_spmf (pair_spmf p q) = set_spmf p \<times> set_spmf q"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2443
by(auto 4 3 simp add: pair_spmf_def set_spmf_bind_pmf bind_UNION in_set_spmf intro: rev_bexI split: option.splits)
63333
158ab2239496 Probability: show that measures form a complete lattice
hoelzl
parents: 63308
diff changeset
  2444
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2445
lemma spmf_pair [simp]: "spmf (pair_spmf p q) (x, y) = spmf p x * spmf q y" (is "?lhs = ?rhs")
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2446
proof -
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2447
  have "ennreal ?lhs = \<integral>\<^sup>+ a. \<integral>\<^sup>+ b. indicator {(x, y)} (a, b) \<partial>measure_spmf q \<partial>measure_spmf p"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2448
    unfolding measure_spmf_def pair_spmf_def ennreal_pmf_bind nn_integral_pair_pmf'
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2449
    by(auto simp add: zero_ereal_def[symmetric] nn_integral_distr nn_integral_restrict_space nn_integral_multc[symmetric] intro!: nn_integral_cong split: option.split split_indicator)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2450
  also have "\<dots> = \<integral>\<^sup>+ a. (\<integral>\<^sup>+ b. indicator {y} b \<partial>measure_spmf q) * indicator {x} a \<partial>measure_spmf p"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2451
    by(subst nn_integral_multc[symmetric])(auto intro!: nn_integral_cong split: split_indicator)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2452
  also have "\<dots> = ennreal ?rhs" by(simp add: emeasure_spmf_single max_def ennreal_mult mult.commute)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2453
  finally show ?thesis by simp
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2454
qed
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2455
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2456
lemma pair_map_spmf2: "pair_spmf p (map_spmf f q) = map_spmf (apsnd f) (pair_spmf p q)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2457
by(auto simp add: pair_spmf_def pair_map_pmf2 bind_map_pmf map_bind_pmf intro: bind_pmf_cong split: option.split)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2458
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2459
lemma pair_map_spmf1: "pair_spmf (map_spmf f p) q = map_spmf (apfst f) (pair_spmf p q)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2460
by(auto simp add: pair_spmf_def pair_map_pmf1 bind_map_pmf map_bind_pmf intro: bind_pmf_cong split: option.split)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2461
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2462
lemma pair_map_spmf: "pair_spmf (map_spmf f p) (map_spmf g q) = map_spmf (map_prod f g) (pair_spmf p q)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2463
unfolding pair_map_spmf2 pair_map_spmf1 spmf.map_comp by(simp add: apfst_def apsnd_def o_def prod.map_comp)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2464
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2465
lemma pair_spmf_alt_def: "pair_spmf p q = bind_spmf p (\<lambda>x. bind_spmf q (\<lambda>y. return_spmf (x, y)))"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2466
by(auto simp add: pair_spmf_def pair_pmf_def bind_spmf_def bind_assoc_pmf bind_return_pmf split: option.split intro: bind_pmf_cong)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2467
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2468
lemma weight_pair_spmf [simp]: "weight_spmf (pair_spmf p q) = weight_spmf p * weight_spmf q"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2469
unfolding pair_spmf_alt_def by(simp add: weight_bind_spmf o_def)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2470
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2471
lemma pair_scale_spmf1: (* FIXME: generalise to arbitrary r *)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2472
  "r \<le> 1 \<Longrightarrow> pair_spmf (scale_spmf r p) q = scale_spmf r (pair_spmf p q)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2473
by(simp add: pair_spmf_alt_def scale_bind_spmf bind_scale_spmf)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2474
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2475
lemma pair_scale_spmf2: (* FIXME: generalise to arbitrary r *)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2476
  "r \<le> 1 \<Longrightarrow> pair_spmf p (scale_spmf r q) = scale_spmf r (pair_spmf p q)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2477
by(simp add: pair_spmf_alt_def scale_bind_spmf bind_scale_spmf)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2478
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2479
lemma pair_spmf_return_None1 [simp]: "pair_spmf (return_pmf None) p = return_pmf None"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2480
by(rule spmf_eqI)(clarsimp)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2481
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2482
lemma pair_spmf_return_None2 [simp]: "pair_spmf p (return_pmf None) = return_pmf None"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2483
by(rule spmf_eqI)(clarsimp)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2484
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2485
lemma pair_spmf_return_spmf1: "pair_spmf (return_spmf x) q = map_spmf (Pair x) q"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2486
by(rule spmf_eqI)(auto split: split_indicator simp add: spmf_map_inj' inj_on_def intro: spmf_map_outside)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2487
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2488
lemma pair_spmf_return_spmf2: "pair_spmf p (return_spmf y) = map_spmf (\<lambda>x. (x, y)) p"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2489
by(rule spmf_eqI)(auto split: split_indicator simp add: inj_on_def intro!: spmf_map_outside spmf_map_inj'[symmetric])
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2490
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2491
lemma pair_spmf_return_spmf [simp]: "pair_spmf (return_spmf x) (return_spmf y) = return_spmf (x, y)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2492
by(simp add: pair_spmf_return_spmf1)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2493
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2494
lemma rel_pair_spmf_prod:
63333
158ab2239496 Probability: show that measures form a complete lattice
hoelzl
parents: 63308
diff changeset
  2495
  "rel_spmf (rel_prod A B) (pair_spmf p q) (pair_spmf p' q') \<longleftrightarrow>
158ab2239496 Probability: show that measures form a complete lattice
hoelzl
parents: 63308
diff changeset
  2496
   rel_spmf A (scale_spmf (weight_spmf q) p) (scale_spmf (weight_spmf q') p') \<and>
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2497
   rel_spmf B (scale_spmf (weight_spmf p) q) (scale_spmf (weight_spmf p') q')"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2498
  (is "?lhs \<longleftrightarrow> ?rhs" is "_ \<longleftrightarrow> ?A \<and> ?B" is "_ \<longleftrightarrow> rel_spmf _ ?p ?p' \<and> rel_spmf _ ?q ?q'")
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2499
proof(intro iffI conjI)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2500
  assume ?rhs
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2501
  then obtain pq pq' where p: "map_spmf fst pq = ?p" and p': "map_spmf snd pq = ?p'"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2502
    and q: "map_spmf fst pq' = ?q" and q': "map_spmf snd pq' = ?q'"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2503
    and *: "\<And>x x'. (x, x') \<in> set_spmf pq \<Longrightarrow> A x x'"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2504
    and **: "\<And>y y'. (y, y') \<in> set_spmf pq' \<Longrightarrow> B y y'" by(auto elim!: rel_spmfE)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2505
  let ?f = "\<lambda>((x, x'), (y, y')). ((x, y), (x', y'))"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2506
  let ?r = "1 / (weight_spmf p * weight_spmf q)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2507
  let ?pq = "scale_spmf ?r (map_spmf ?f (pair_spmf pq pq'))"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2508
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2509
  { fix p :: "'x spmf" and q :: "'y spmf"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2510
    assume "weight_spmf q \<noteq> 0"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2511
      and "weight_spmf p \<noteq> 0"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2512
      and "1 / (weight_spmf p * weight_spmf q) \<le> weight_spmf p * weight_spmf q"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2513
    hence "1 \<le> (weight_spmf p * weight_spmf q) * (weight_spmf p * weight_spmf q)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2514
      by(simp add: pos_divide_le_eq order.strict_iff_order weight_spmf_nonneg)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2515
    moreover have "(weight_spmf p * weight_spmf q) * (weight_spmf p * weight_spmf q) \<le> (1 * 1) * (1 * 1)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2516
      by(intro mult_mono)(simp_all add: weight_spmf_nonneg weight_spmf_le_1)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2517
    ultimately have "(weight_spmf p * weight_spmf q) * (weight_spmf p * weight_spmf q) = 1" by simp
63333
158ab2239496 Probability: show that measures form a complete lattice
hoelzl
parents: 63308
diff changeset
  2518
    hence *: "weight_spmf p * weight_spmf q = 1"
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2519
      by(metis antisym_conv less_le mult_less_cancel_left1 weight_pair_spmf weight_spmf_le_1 weight_spmf_nonneg)
63540
f8652d0534fa tuned proofs -- avoid unstructured calculation;
wenzelm
parents: 63343
diff changeset
  2520
    hence **: "weight_spmf p = 1" by(metis antisym_conv mult_left_le weight_spmf_le_1 weight_spmf_nonneg)
f8652d0534fa tuned proofs -- avoid unstructured calculation;
wenzelm
parents: 63343
diff changeset
  2521
    moreover from * ** have "weight_spmf q = 1" by simp
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2522
    moreover note calculation }
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2523
  note full = this
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2524
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2525
  show ?lhs
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2526
  proof
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2527
    have [simp]: "fst \<circ> ?f = map_prod fst fst" by(simp add: fun_eq_iff)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2528
    have "map_spmf fst ?pq = scale_spmf ?r (pair_spmf ?p ?q)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2529
      by(simp add: pair_map_spmf[symmetric] p q map_scale_spmf spmf.map_comp)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2530
    also have "\<dots> = pair_spmf p q" using full[of p q]
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2531
      by(simp add: pair_scale_spmf1 pair_scale_spmf2 weight_spmf_le_1 weight_spmf_nonneg)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2532
        (auto simp add: scale_scale_spmf max_def min_def field_simps weight_spmf_nonneg weight_spmf_eq_0)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2533
    finally show "map_spmf fst ?pq = \<dots>" .
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2534
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2535
    have [simp]: "snd \<circ> ?f = map_prod snd snd" by(simp add: fun_eq_iff)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2536
    from \<open>?rhs\<close> have eq: "weight_spmf p * weight_spmf q = weight_spmf p' * weight_spmf q'"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2537
      by(auto dest!: rel_spmf_weightD simp add: weight_spmf_le_1 weight_spmf_nonneg)
63333
158ab2239496 Probability: show that measures form a complete lattice
hoelzl
parents: 63308
diff changeset
  2538
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2539
    have "map_spmf snd ?pq = scale_spmf ?r (pair_spmf ?p' ?q')"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2540
      by(simp add: pair_map_spmf[symmetric] p' q' map_scale_spmf spmf.map_comp)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2541
    also have "\<dots> = pair_spmf p' q'" using full[of p' q'] eq
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2542
      by(simp add: pair_scale_spmf1 pair_scale_spmf2 weight_spmf_le_1 weight_spmf_nonneg)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2543
        (auto simp add: scale_scale_spmf max_def min_def field_simps weight_spmf_nonneg weight_spmf_eq_0)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2544
    finally show "map_spmf snd ?pq = \<dots>" .
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2545
  qed(auto simp add: set_scale_spmf split: if_split_asm dest: * ** )
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2546
next
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2547
  assume ?lhs
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2548
  then obtain pq where pq: "map_spmf fst pq = pair_spmf p q"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2549
    and pq': "map_spmf snd pq = pair_spmf p' q'"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2550
    and *: "\<And>x y x' y'. ((x, y), (x', y')) \<in> set_spmf pq \<Longrightarrow> A x x' \<and> B y y'"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2551
    by(auto elim: rel_spmfE)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2552
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2553
  show ?A
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2554
  proof
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2555
    let ?f = "(\<lambda>((x, y), (x', y')). (x, x'))"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2556
    let ?pq = "map_spmf ?f pq"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2557
    have [simp]: "fst \<circ> ?f = fst \<circ> fst" by(simp add: split_def o_def)
63333
158ab2239496 Probability: show that measures form a complete lattice
hoelzl
parents: 63308
diff changeset
  2558
    show "map_spmf fst ?pq = scale_spmf (weight_spmf q) p" using pq
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2559
      by(simp add: spmf.map_comp)(simp add: spmf.map_comp[symmetric])
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2560
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2561
    have [simp]: "snd \<circ> ?f = fst \<circ> snd" by(simp add: split_def o_def)
63333
158ab2239496 Probability: show that measures form a complete lattice
hoelzl
parents: 63308
diff changeset
  2562
    show "map_spmf snd ?pq = scale_spmf (weight_spmf q') p'" using pq'
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2563
      by(simp add: spmf.map_comp)(simp add: spmf.map_comp[symmetric])
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2564
  qed(auto dest: * )
63333
158ab2239496 Probability: show that measures form a complete lattice
hoelzl
parents: 63308
diff changeset
  2565
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2566
  show ?B
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2567
  proof
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2568
    let ?f = "(\<lambda>((x, y), (x', y')). (y, y'))"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2569
    let ?pq = "map_spmf ?f pq"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2570
    have [simp]: "fst \<circ> ?f = snd \<circ> fst" by(simp add: split_def o_def)
63333
158ab2239496 Probability: show that measures form a complete lattice
hoelzl
parents: 63308
diff changeset
  2571
    show "map_spmf fst ?pq = scale_spmf (weight_spmf p) q" using pq
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2572
      by(simp add: spmf.map_comp)(simp add: spmf.map_comp[symmetric])
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2573
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2574
    have [simp]: "snd \<circ> ?f = snd \<circ> snd" by(simp add: split_def o_def)
63333
158ab2239496 Probability: show that measures form a complete lattice
hoelzl
parents: 63308
diff changeset
  2575
    show "map_spmf snd ?pq = scale_spmf (weight_spmf p') q'" using pq'
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2576
      by(simp add: spmf.map_comp)(simp add: spmf.map_comp[symmetric])
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2577
  qed(auto dest: * )
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2578
qed
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2579
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2580
lemma pair_pair_spmf:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2581
  "pair_spmf (pair_spmf p q) r = map_spmf (\<lambda>(x, (y, z)). ((x, y), z)) (pair_spmf p (pair_spmf q r))"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2582
by(simp add: pair_spmf_alt_def map_spmf_conv_bind_spmf)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2583
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2584
lemma pair_commute_spmf:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2585
  "pair_spmf p q = map_spmf (\<lambda>(y, x). (x, y)) (pair_spmf q p)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2586
unfolding pair_spmf_alt_def by(subst bind_commute_spmf)(simp add: map_spmf_conv_bind_spmf)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2587
63308
d49580620ecb isabelle update_cartouches -c -t;
wenzelm
parents: 63243
diff changeset
  2588
subsection \<open>Assertions\<close>
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2589
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2590
definition assert_spmf :: "bool \<Rightarrow> unit spmf"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2591
where "assert_spmf b = (if b then return_spmf () else return_pmf None)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2592
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2593
lemma assert_spmf_simps [simp]:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2594
  "assert_spmf True = return_spmf ()"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2595
  "assert_spmf False = return_pmf None"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2596
by(simp_all add: assert_spmf_def)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2597
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2598
lemma in_set_assert_spmf [simp]: "x \<in> set_spmf (assert_spmf p) \<longleftrightarrow> p"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2599
by(cases p) simp_all
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2600
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2601
lemma set_spmf_assert_spmf_eq_empty [simp]: "set_spmf (assert_spmf b) = {} \<longleftrightarrow> \<not> b"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2602
by(cases b) simp_all
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2603
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2604
lemma lossless_assert_spmf [iff]: "lossless_spmf (assert_spmf b) \<longleftrightarrow> b"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2605
by(cases b) simp_all
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2606
63308
d49580620ecb isabelle update_cartouches -c -t;
wenzelm
parents: 63243
diff changeset
  2607
subsection \<open>Try\<close>
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2608
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2609
definition try_spmf :: "'a spmf \<Rightarrow> 'a spmf \<Rightarrow> 'a spmf" ("TRY _ ELSE _" [0,60] 59)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2610
where "try_spmf p q = bind_pmf p (\<lambda>x. case x of None \<Rightarrow> q | Some y \<Rightarrow> return_spmf y)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2611
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2612
lemma try_spmf_lossless [simp]:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2613
  assumes "lossless_spmf p"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2614
  shows "TRY p ELSE q = p"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2615
proof -
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2616
  have "TRY p ELSE q = bind_pmf p return_pmf" unfolding try_spmf_def using assms
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2617
    by(auto simp add: lossless_iff_set_pmf_None split: option.split intro: bind_pmf_cong)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2618
  thus ?thesis by(simp add: bind_return_pmf')
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2619
qed
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2620
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2621
lemma try_spmf_return_spmf1: "TRY return_spmf x ELSE q = return_spmf x"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2622
by(simp add: try_spmf_def bind_return_pmf)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2623
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2624
lemma try_spmf_return_None [simp]: "TRY return_pmf None ELSE q = q"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2625
by(simp add: try_spmf_def bind_return_pmf)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2626
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2627
lemma try_spmf_return_pmf_None2 [simp]: "TRY p ELSE return_pmf None = p"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2628
by(simp add: try_spmf_def option.case_distrib[symmetric] bind_return_pmf' case_option_id)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2629
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2630
lemma map_try_spmf: "map_spmf f (try_spmf p q) = try_spmf (map_spmf f p) (map_spmf f q)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2631
by(simp add: try_spmf_def map_bind_pmf bind_map_pmf option.case_distrib[where h="map_spmf f"] o_def cong del: option.case_cong_weak)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2632
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2633
lemma try_spmf_bind_pmf: "TRY (bind_pmf p f) ELSE q = bind_pmf p (\<lambda>x. TRY (f x) ELSE q)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2634
by(simp add: try_spmf_def bind_assoc_pmf)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2635
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2636
lemma try_spmf_bind_spmf_lossless:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2637
  "lossless_spmf p \<Longrightarrow> TRY (bind_spmf p f) ELSE q = bind_spmf p (\<lambda>x. TRY (f x) ELSE q)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2638
by(auto simp add: try_spmf_def bind_spmf_def bind_assoc_pmf bind_return_pmf lossless_iff_set_pmf_None intro!: bind_pmf_cong split: option.split)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2639
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2640
lemma try_spmf_bind_out:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2641
  "lossless_spmf p \<Longrightarrow> bind_spmf p (\<lambda>x. TRY (f x) ELSE q) = TRY (bind_spmf p f) ELSE q"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2642
by(simp add: try_spmf_bind_spmf_lossless)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2643
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2644
lemma lossless_try_spmf [simp]:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2645
  "lossless_spmf (TRY p ELSE q) \<longleftrightarrow> lossless_spmf p \<or> lossless_spmf q"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2646
by(auto simp add: try_spmf_def in_set_spmf lossless_iff_set_pmf_None split: option.splits)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2647
63343
fb5d8a50c641 bundle lifting_syntax;
wenzelm
parents: 63333
diff changeset
  2648
context includes lifting_syntax
fb5d8a50c641 bundle lifting_syntax;
wenzelm
parents: 63333
diff changeset
  2649
begin
fb5d8a50c641 bundle lifting_syntax;
wenzelm
parents: 63333
diff changeset
  2650
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2651
lemma try_spmf_parametric [transfer_rule]:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2652
  "(rel_spmf A ===> rel_spmf A ===> rel_spmf A) try_spmf try_spmf"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2653
unfolding try_spmf_def[abs_def] by transfer_prover
63343
fb5d8a50c641 bundle lifting_syntax;
wenzelm
parents: 63333
diff changeset
  2654
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2655
end
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2656
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2657
lemma try_spmf_cong:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2658
  "\<lbrakk> p = p'; \<not> lossless_spmf p' \<Longrightarrow> q = q' \<rbrakk> \<Longrightarrow> TRY p ELSE q = TRY p' ELSE q'"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2659
unfolding try_spmf_def
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2660
by(rule bind_pmf_cong)(auto split: option.split simp add: lossless_iff_set_pmf_None)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2661
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2662
lemma rel_spmf_try_spmf:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2663
  "\<lbrakk> rel_spmf R p p'; \<not> lossless_spmf p' \<Longrightarrow> rel_spmf R q q' \<rbrakk>
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2664
  \<Longrightarrow> rel_spmf R (TRY p ELSE q) (TRY p' ELSE q')"
63333
158ab2239496 Probability: show that measures form a complete lattice
hoelzl
parents: 63308
diff changeset
  2665
unfolding try_spmf_def
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2666
apply(rule rel_pmf_bindI[where R="\<lambda>x y. rel_option R x y \<and> x \<in> set_pmf p \<and> y \<in> set_pmf p'"])
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2667
 apply(erule pmf.rel_mono_strong; simp)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2668
apply(auto split: option.split simp add: lossless_iff_set_pmf_None)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2669
done
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2670
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2671
lemma spmf_try_spmf:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2672
  "spmf (TRY p ELSE q) x = spmf p x + pmf p None * spmf q x"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2673
proof -
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2674
  have "ennreal (spmf (TRY p ELSE q) x) = \<integral>\<^sup>+ y. ennreal (spmf q x) * indicator {None} y + indicator {Some x} y \<partial>measure_pmf p"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2675
    unfolding try_spmf_def ennreal_pmf_bind by(rule nn_integral_cong)(simp split: option.split split_indicator)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2676
  also have "\<dots> = (\<integral>\<^sup>+ y. ennreal (spmf q x) * indicator {None} y \<partial>measure_pmf p) + \<integral>\<^sup>+ y. indicator {Some x} y \<partial>measure_pmf p"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2677
    by(simp add: nn_integral_add)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2678
  also have "\<dots> = ennreal (spmf q x) * pmf p None + spmf p x" by(simp add: emeasure_pmf_single)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2679
  finally show ?thesis by(simp add: ennreal_mult[symmetric] ennreal_plus[symmetric] del: ennreal_plus)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2680
qed
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2681
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2682
lemma try_scale_spmf_same [simp]: "lossless_spmf p \<Longrightarrow> TRY scale_spmf k p ELSE p = p"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2683
by(rule spmf_eqI)(auto simp add: spmf_try_spmf spmf_scale_spmf pmf_scale_spmf_None lossless_iff_pmf_None weight_spmf_conv_pmf_None min_def max_def field_simps)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2684
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2685
lemma pmf_try_spmf_None [simp]: "pmf (TRY p ELSE q) None = pmf p None * pmf q None" (is "?lhs = ?rhs")
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2686
proof -
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2687
  have "?lhs = \<integral> x. pmf q None * indicator {None} x \<partial>measure_pmf p"
63886
685fb01256af move Henstock-Kurzweil integration after Lebesgue_Measure; replace content by abbreviation measure lborel
hoelzl
parents: 63626
diff changeset
  2688
    unfolding try_spmf_def pmf_bind by(rule Bochner_Integration.integral_cong)(simp_all split: option.split)
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2689
  also have "\<dots> = ?rhs" by(simp add: measure_pmf_single)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2690
  finally show ?thesis .
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2691
qed
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2692
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2693
lemma try_bind_spmf_lossless2:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2694
  "lossless_spmf q \<Longrightarrow> TRY (bind_spmf p f) ELSE q = TRY (p \<bind> (\<lambda>x. TRY (f x) ELSE q)) ELSE q"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2695
by(rule spmf_eqI)(simp add: spmf_try_spmf pmf_bind_spmf_None spmf_bind field_simps measure_spmf.integrable_const_bound[where B=1] pmf_le_1 lossless_iff_pmf_None)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2696
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2697
lemma try_bind_spmf_lossless2':
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2698
  fixes f :: "'a \<Rightarrow> 'b spmf" shows
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2699
  "\<lbrakk> NO_MATCH (\<lambda>x :: 'a. try_spmf (g x :: 'b spmf) (h x)) f; lossless_spmf q \<rbrakk>
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2700
  \<Longrightarrow> TRY (bind_spmf p f) ELSE q = TRY (p \<bind> (\<lambda>x :: 'a. TRY (f x) ELSE q)) ELSE q"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2701
by(rule try_bind_spmf_lossless2)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2702
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2703
lemma try_bind_assert_spmf:
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2704
  "TRY (assert_spmf b \<bind> f) ELSE q = (if b then TRY (f ()) ELSE q else q)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2705
by simp
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2706
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2707
subsection \<open>Miscellaneous\<close>
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2708
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2709
lemma assumes "rel_spmf (\<lambda>x y. bad1 x = bad2 y \<and> (\<not> bad2 y \<longrightarrow> A x \<longleftrightarrow> B y)) p q" (is "rel_spmf ?A _ _")
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2710
  shows fundamental_lemma_bad: "measure (measure_spmf p) {x. bad1 x} = measure (measure_spmf q) {y. bad2 y}" (is "?bad")
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2711
  and fundamental_lemma: "\<bar>measure (measure_spmf p) {x. A x} - measure (measure_spmf q) {y. B y}\<bar> \<le>
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2712
    measure (measure_spmf p) {x. bad1 x}" (is ?fundamental)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2713
proof -
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  2714
  have good: "rel_fun ?A (=) (\<lambda>x. A x \<and> \<not> bad1 x) (\<lambda>y. B y \<and> \<not> bad2 y)" by(auto simp add: rel_fun_def)
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2715
  from assms have 1: "measure (measure_spmf p) {x. A x \<and> \<not> bad1 x} = measure (measure_spmf q) {y. B y \<and> \<not> bad2 y}"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2716
    by(rule measure_spmf_parametric[THEN rel_funD, THEN rel_funD])(rule Collect_parametric[THEN rel_funD, OF good])
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2717
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66453
diff changeset
  2718
  have bad: "rel_fun ?A (=) bad1 bad2" by(simp add: rel_fun_def)
63243
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2719
  show 2: ?bad using assms
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2720
    by(rule measure_spmf_parametric[THEN rel_funD, THEN rel_funD])(rule Collect_parametric[THEN rel_funD, OF bad])
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2721
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2722
  let ?\<mu>p = "measure (measure_spmf p)" and ?\<mu>q = "measure (measure_spmf q)"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2723
  have "{x. A x \<and> bad1 x} \<union> {x. A x \<and> \<not> bad1 x} = {x. A x}"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2724
    and "{y. B y \<and> bad2 y} \<union> {y. B y \<and> \<not> bad2 y} = {y. B y}" by auto
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2725
  then have "\<bar>?\<mu>p {x. A x} - ?\<mu>q {x. B x}\<bar> = \<bar>?\<mu>p ({x. A x \<and> bad1 x} \<union> {x. A x \<and> \<not> bad1 x}) - ?\<mu>q ({y. B y \<and> bad2 y} \<union> {y. B y \<and> \<not> bad2 y})\<bar>"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2726
    by simp
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2727
  also have "\<dots> = \<bar>?\<mu>p {x. A x \<and> bad1 x} + ?\<mu>p {x. A x \<and> \<not> bad1 x} - ?\<mu>q {y. B y \<and> bad2 y} - ?\<mu>q {y. B y \<and> \<not> bad2 y}\<bar>"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2728
    by(subst (1 2) measure_Union)(auto)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2729
  also have "\<dots> = \<bar>?\<mu>p {x. A x \<and> bad1 x} - ?\<mu>q {y. B y \<and> bad2 y}\<bar>" using 1 by simp
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2730
  also have "\<dots> \<le> max (?\<mu>p {x. A x \<and> bad1 x}) (?\<mu>q {y. B y \<and> bad2 y})"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2731
    by(rule abs_leI)(auto simp add: max_def not_le, simp_all only: add_increasing measure_nonneg mult_2)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2732
  also have "\<dots> \<le> max (?\<mu>p {x. bad1 x}) (?\<mu>q {y. bad2 y})"
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2733
    by(rule max.mono; rule measure_spmf.finite_measure_mono; auto)
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2734
  also note 2[symmetric]
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2735
  finally show ?fundamental by simp
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2736
qed
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2737
1bc6816fd525 add theory of discrete subprobability distributions
Andreas Lochbihler
parents:
diff changeset
  2738
end