src/HOL/Probability/Lebesgue.thy
author hoelzl
Tue, 16 Mar 2010 16:27:28 +0100
changeset 35833 7b7ae5aa396d
parent 35748 5f35613d9a65
child 35977 30d42bfd0174
permissions -rw-r--r--
Added product measure space
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
35582
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
     1
header {*Lebesgue Integration*}
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
     2
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
     3
theory Lebesgue
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
     4
imports Measure Borel
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
     5
begin
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
     6
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
     7
text{*From the HOL4 Hurd/Coble Lebesgue integration, translated by Armin Heller and Johannes Hoelzl.*}
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
     8
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
     9
definition
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
    10
  "pos_part f = (\<lambda>x. max 0 (f x))"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
    11
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
    12
definition
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
    13
  "neg_part f = (\<lambda>x. - min 0 (f x))"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
    14
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
    15
definition
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
    16
  "nonneg f = (\<forall>x. 0 \<le> f x)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
    17
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
    18
lemma nonneg_pos_part[intro!]:
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
    19
  fixes f :: "'c \<Rightarrow> 'd\<Colon>{linorder,zero}"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
    20
  shows "nonneg (pos_part f)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
    21
  unfolding nonneg_def pos_part_def by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
    22
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
    23
lemma nonneg_neg_part[intro!]:
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
    24
  fixes f :: "'c \<Rightarrow> 'd\<Colon>{linorder,ordered_ab_group_add}"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
    25
  shows "nonneg (neg_part f)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
    26
  unfolding nonneg_def neg_part_def min_def by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
    27
35692
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
    28
lemma (in measure_space)
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
    29
  assumes "f \<in> borel_measurable M"
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
    30
  shows pos_part_borel_measurable: "pos_part f \<in> borel_measurable M"
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
    31
  and neg_part_borel_measurable: "neg_part f \<in> borel_measurable M"
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
    32
using assms
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
    33
proof -
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
    34
  { fix a :: real
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
    35
    { assume asm: "0 \<le> a"
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
    36
      from asm have pp: "\<And> w. (pos_part f w \<le> a) = (f w \<le> a)" unfolding pos_part_def by auto
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
    37
      have "{w | w. w \<in> space M \<and> f w \<le> a} \<in> sets M"
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
    38
        unfolding pos_part_def using assms borel_measurable_le_iff by auto
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
    39
      hence "{w . w \<in> space M \<and> pos_part f w \<le> a} \<in> sets M" using pp by auto }
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
    40
    moreover have "a < 0 \<Longrightarrow> {w \<in> space M. pos_part f w \<le> a} \<in> sets M"
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
    41
      unfolding pos_part_def using empty_sets by auto
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
    42
    ultimately have "{w . w \<in> space M \<and> pos_part f w \<le> a} \<in> sets M"
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
    43
      using le_less_linear by auto
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
    44
  } hence pos: "pos_part f \<in> borel_measurable M" using borel_measurable_le_iff by auto
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
    45
  { fix a :: real
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
    46
    { assume asm: "0 \<le> a"
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
    47
      from asm have pp: "\<And> w. (neg_part f w \<le> a) = (f w \<ge> - a)" unfolding neg_part_def by auto
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
    48
      have "{w | w. w \<in> space M \<and> f w \<ge> - a} \<in> sets M"
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
    49
        unfolding neg_part_def using assms borel_measurable_ge_iff by auto
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
    50
      hence "{w . w \<in> space M \<and> neg_part f w \<le> a} \<in> sets M" using pp by auto }
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
    51
    moreover have "a < 0 \<Longrightarrow> {w \<in> space M. neg_part f w \<le> a} = {}" unfolding neg_part_def by auto
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
    52
    moreover hence "a < 0 \<Longrightarrow> {w \<in> space M. neg_part f w \<le> a} \<in> sets M" by (simp only: empty_sets)
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
    53
    ultimately have "{w . w \<in> space M \<and> neg_part f w \<le> a} \<in> sets M"
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
    54
      using le_less_linear by auto
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
    55
  } hence neg: "neg_part f \<in> borel_measurable M" using borel_measurable_le_iff by auto
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
    56
  from pos neg show "pos_part f \<in> borel_measurable M" and "neg_part f \<in> borel_measurable M" by auto
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
    57
qed
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
    58
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
    59
lemma (in measure_space) pos_part_neg_part_borel_measurable_iff:
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
    60
  "f \<in> borel_measurable M \<longleftrightarrow>
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
    61
  pos_part f \<in> borel_measurable M \<and> neg_part f \<in> borel_measurable M"
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
    62
proof -
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
    63
  { fix x
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
    64
    have "f x = pos_part f x - neg_part f x"
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
    65
      unfolding pos_part_def neg_part_def unfolding max_def min_def
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
    66
      by auto }
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
    67
  hence "(\<lambda> x. f x) = (\<lambda> x. pos_part f x - neg_part f x)" by auto
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
    68
  hence "f = (\<lambda> x. pos_part f x - neg_part f x)" by blast
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
    69
  from pos_part_borel_measurable[of f] neg_part_borel_measurable[of f]
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
    70
    borel_measurable_diff_borel_measurable[of "pos_part f" "neg_part f"]
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
    71
    this
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
    72
  show ?thesis by auto
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
    73
qed
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
    74
35582
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
    75
context measure_space
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
    76
begin
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
    77
35692
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
    78
section "Simple discrete step function"
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
    79
35582
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
    80
definition
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
    81
 "pos_simple f =
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
    82
  { (s :: nat set, a, x).
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
    83
    finite s \<and> nonneg f \<and> nonneg x \<and> a ` s \<subseteq> sets M \<and>
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
    84
    (\<forall>t \<in> space M. (\<exists>!i\<in>s. t\<in>a i) \<and> (\<forall>i\<in>s. t \<in> a i \<longrightarrow> f t = x i)) }"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
    85
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
    86
definition
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
    87
  "pos_simple_integral \<equiv> \<lambda>(s, a, x). \<Sum> i \<in> s. x i * measure M (a i)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
    88
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
    89
definition
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
    90
  "psfis f = pos_simple_integral ` (pos_simple f)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
    91
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
    92
lemma pos_simpleE[consumes 1]:
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
    93
  assumes ps: "(s, a, x) \<in> pos_simple f"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
    94
  obtains "finite s" and "nonneg f" and "nonneg x"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
    95
    and "a ` s \<subseteq> sets M" and "(\<Union>i\<in>s. a i) = space M"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
    96
    and "disjoint_family_on a s"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
    97
    and "\<And>t. t \<in> space M \<Longrightarrow> (\<exists>!i. i \<in> s \<and> t \<in> a i)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
    98
    and "\<And>t i. \<lbrakk> t \<in> space M ; i \<in> s ; t \<in> a i \<rbrakk> \<Longrightarrow> f t = x i"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
    99
proof
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   100
  show "finite s" and "nonneg f" and "nonneg x"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   101
    and as_in_M: "a ` s \<subseteq> sets M"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   102
    and *: "\<And>t. t \<in> space M \<Longrightarrow> (\<exists>!i. i \<in> s \<and> t \<in> a i)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   103
    and **: "\<And>t i. \<lbrakk> t \<in> space M ; i \<in> s ; t \<in> a i \<rbrakk> \<Longrightarrow> f t = x i"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   104
    using ps unfolding pos_simple_def by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   105
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   106
  thus t: "(\<Union>i\<in>s. a i) = space M"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   107
  proof safe
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   108
    fix x assume "x \<in> space M"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   109
    from *[OF this] show "x \<in> (\<Union>i\<in>s. a i)" by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   110
  next
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   111
    fix t i assume "i \<in> s"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   112
    hence "a i \<in> sets M" using as_in_M by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   113
    moreover assume "t \<in> a i"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   114
    ultimately show "t \<in> space M" using sets_into_space by blast
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   115
  qed
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   116
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   117
  show "disjoint_family_on a s" unfolding disjoint_family_on_def
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   118
  proof safe
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   119
    fix i j and t assume "i \<in> s" "t \<in> a i" and "j \<in> s" "t \<in> a j" and "i \<noteq> j"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   120
    with t * show "t \<in> {}" by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   121
  qed
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   122
qed
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   123
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   124
lemma pos_simple_cong:
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   125
  assumes "nonneg f" and "nonneg g" and "\<And>t. t \<in> space M \<Longrightarrow> f t = g t"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   126
  shows "pos_simple f = pos_simple g"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   127
  unfolding pos_simple_def using assms by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   128
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   129
lemma psfis_cong:
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   130
  assumes "nonneg f" and "nonneg g" and "\<And>t. t \<in> space M \<Longrightarrow> f t = g t"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   131
  shows "psfis f = psfis g"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   132
  unfolding psfis_def using pos_simple_cong[OF assms] by simp
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   133
35692
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
   134
lemma psfis_0: "0 \<in> psfis (\<lambda>x. 0)"
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
   135
  unfolding psfis_def pos_simple_def pos_simple_integral_def
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
   136
  by (auto simp: nonneg_def
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
   137
      intro: image_eqI[where x="({0}, (\<lambda>i. space M), (\<lambda>i. 0))"])
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
   138
35582
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   139
lemma pos_simple_setsum_indicator_fn:
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   140
  assumes ps: "(s, a, x) \<in> pos_simple f"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   141
  and "t \<in> space M"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   142
  shows "(\<Sum>i\<in>s. x i * indicator_fn (a i) t) = f t"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   143
proof -
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   144
  from assms obtain i where *: "i \<in> s" "t \<in> a i"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   145
    and "finite s" and xi: "x i = f t" by (auto elim!: pos_simpleE)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   146
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   147
  have **: "(\<Sum>i\<in>s. x i * indicator_fn (a i) t) =
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   148
    (\<Sum>j\<in>s. if j \<in> {i} then x i else 0)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   149
    unfolding indicator_fn_def using assms *
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   150
    by (auto intro!: setsum_cong elim!: pos_simpleE)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   151
  show ?thesis unfolding ** setsum_cases[OF `finite s`] xi
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   152
    using `i \<in> s` by simp
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   153
qed
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   154
35692
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
   155
lemma pos_simple_common_partition:
35582
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   156
  assumes psf: "(s, a, x) \<in> pos_simple f"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   157
  assumes psg: "(s', b, y) \<in> pos_simple g"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   158
  obtains z z' c k where "(k, c, z) \<in> pos_simple f" "(k, c, z') \<in> pos_simple g"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   159
proof -
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   160
  (* definitions *)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   161
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   162
  def k == "{0 ..< card (s \<times> s')}"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   163
  have fs: "finite s" "finite s'" "finite k" unfolding k_def
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   164
    using psf psg unfolding pos_simple_def by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   165
  hence "finite (s \<times> s')" by simp
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   166
  then obtain p where p: "p ` k = s \<times> s'" "inj_on p k"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   167
    using ex_bij_betw_nat_finite[of "s \<times> s'"] unfolding bij_betw_def k_def by blast
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   168
  def c == "\<lambda> i. a (fst (p i)) \<inter> b (snd (p i))"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   169
  def z == "\<lambda> i. x (fst (p i))"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   170
  def z' == "\<lambda> i. y (snd (p i))"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   171
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   172
  have "finite k" unfolding k_def by simp
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   173
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   174
  have "nonneg z" and "nonneg z'"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   175
    using psf psg unfolding z_def z'_def pos_simple_def nonneg_def by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   176
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   177
  have ck_subset_M: "c ` k \<subseteq> sets M"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   178
  proof
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   179
    fix x assume "x \<in> c ` k"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   180
    then obtain j where "j \<in> k" and "x = c j" by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   181
    hence "p j \<in> s \<times> s'" using p(1) by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   182
    hence "a (fst (p j)) \<in> sets M" (is "?a \<in> _")
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   183
      and "b (snd (p j)) \<in> sets M" (is "?b \<in> _")
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   184
      using psf psg unfolding pos_simple_def by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   185
    thus "x \<in> sets M" unfolding `x = c j` c_def using Int by simp
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   186
  qed
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   187
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   188
  { fix t assume "t \<in> space M"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   189
    hence ex1s: "\<exists>!i\<in>s. t \<in> a i" and ex1s': "\<exists>!i\<in>s'. t \<in> b i"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   190
      using psf psg unfolding pos_simple_def by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   191
    then obtain j j' where j: "j \<in> s" "t \<in> a j" and j': "j' \<in> s'" "t \<in> b j'"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   192
      by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   193
    then obtain i :: nat where i: "(j,j') = p i" and "i \<in> k" using p by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   194
    have "\<exists>!i\<in>k. t \<in> c i"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   195
    proof (rule ex1I[of _ i])
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   196
      show "\<And>x. x \<in> k \<Longrightarrow> t \<in> c x \<Longrightarrow> x = i"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   197
      proof -
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   198
        fix l assume "l \<in> k" "t \<in> c l"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   199
        hence "p l \<in> s \<times> s'" and t_in: "t \<in> a (fst (p l))" "t \<in> b (snd (p l))"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   200
          using p unfolding c_def by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   201
        hence "fst (p l) \<in> s" and "snd (p l) \<in> s'" by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   202
        with t_in j j' ex1s ex1s' have "p l = (j, j')" by (cases "p l", auto)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   203
        thus "l = i"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   204
          using `(j, j') = p i` p(2)[THEN inj_onD] `l \<in> k` `i \<in> k` by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   205
      qed
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   206
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   207
      show "i \<in> k \<and> t \<in> c i"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   208
        using `i \<in> k` `t \<in> a j` `t \<in> b j'` c_def i[symmetric] by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   209
    qed auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   210
  } note ex1 = this
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   211
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   212
  show thesis
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   213
  proof (rule that)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   214
    { fix t i assume "t \<in> space M" and "i \<in> k"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   215
      hence "p i \<in> s \<times> s'" using p(1) by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   216
      hence "fst (p i) \<in> s" by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   217
      moreover
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   218
      assume "t \<in> c i"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   219
      hence "t \<in> a (fst (p i))" unfolding c_def by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   220
      ultimately have "f t = z i" using psf `t \<in> space M`
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   221
        unfolding z_def pos_simple_def by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   222
    }
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   223
    thus "(k, c, z) \<in> pos_simple f"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   224
      using psf `finite k` `nonneg z` ck_subset_M ex1
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   225
      unfolding pos_simple_def by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   226
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   227
    { fix t i assume "t \<in> space M" and "i \<in> k"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   228
      hence "p i \<in> s \<times> s'" using p(1) by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   229
      hence "snd (p i) \<in> s'" by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   230
      moreover
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   231
      assume "t \<in> c i"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   232
      hence "t \<in> b (snd (p i))" unfolding c_def by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   233
      ultimately have "g t = z' i" using psg `t \<in> space M`
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   234
        unfolding z'_def pos_simple_def by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   235
    }
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   236
    thus "(k, c, z') \<in> pos_simple g"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   237
      using psg `finite k` `nonneg z'` ck_subset_M ex1
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   238
      unfolding pos_simple_def by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   239
  qed
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   240
qed
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   241
35692
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
   242
lemma pos_simple_integral_equal:
35582
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   243
  assumes psx: "(s, a, x) \<in> pos_simple f"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   244
  assumes psy: "(s', b, y) \<in> pos_simple f"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   245
  shows "pos_simple_integral (s, a, x) = pos_simple_integral (s', b, y)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   246
  unfolding pos_simple_integral_def
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   247
proof simp
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   248
  have "(\<Sum>i\<in>s. x i * measure M (a i)) =
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   249
    (\<Sum>i\<in>s. (\<Sum>j \<in> s'. x i * measure M (a i \<inter> b j)))" (is "?left = _")
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   250
    using psy psx unfolding setsum_right_distrib[symmetric]
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   251
    by (auto intro!: setsum_cong measure_setsum_split elim!: pos_simpleE)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   252
  also have "... = (\<Sum>i\<in>s. (\<Sum>j \<in> s'. y j * measure M (a i \<inter> b j)))"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   253
  proof (rule setsum_cong, simp, rule setsum_cong, simp_all)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   254
    fix i j assume i: "i \<in> s" and j: "j \<in> s'"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   255
    hence "a i \<in> sets M" using psx by (auto elim!: pos_simpleE)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   256
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   257
    show "measure M (a i \<inter> b j) = 0 \<or> x i = y j"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   258
    proof (cases "a i \<inter> b j = {}")
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   259
      case True thus ?thesis using empty_measure by simp
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   260
    next
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   261
      case False then obtain t where t: "t \<in> a i" "t \<in> b j" by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   262
      hence "t \<in> space M" using `a i \<in> sets M` sets_into_space by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   263
      with psx psy t i j have "x i = f t" and "y j = f t"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   264
        unfolding pos_simple_def by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   265
      thus ?thesis by simp
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   266
    qed
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   267
  qed
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   268
  also have "... = (\<Sum>j\<in>s'. (\<Sum>i\<in>s. y j * measure M (a i \<inter> b j)))"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   269
    by (subst setsum_commute) simp
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   270
  also have "... = (\<Sum>i\<in>s'. y i * measure M (b i))" (is "?sum_sum = ?right")
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   271
  proof (rule setsum_cong)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   272
    fix j assume "j \<in> s'"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   273
    have "y j * measure M (b j) = (\<Sum>i\<in>s. y j * measure M (b j \<inter> a i))"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   274
      using psx psy `j \<in> s'` unfolding setsum_right_distrib[symmetric]
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   275
      by (auto intro!: measure_setsum_split elim!: pos_simpleE)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   276
    thus "(\<Sum>i\<in>s. y j * measure M (a i \<inter> b j)) = y j * measure M (b j)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   277
      by (auto intro!: setsum_cong arg_cong[where f="measure M"])
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   278
  qed simp
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   279
  finally show "?left = ?right" .
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   280
qed
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   281
35692
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
   282
lemma psfis_present:
35582
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   283
  assumes "A \<in> psfis f"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   284
  assumes "B \<in> psfis g"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   285
  obtains z z' c k where
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   286
  "A = pos_simple_integral (k, c, z)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   287
  "B = pos_simple_integral (k, c, z')"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   288
  "(k, c, z) \<in> pos_simple f"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   289
  "(k, c, z') \<in> pos_simple g"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   290
using assms
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   291
proof -
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   292
  from assms obtain s a x s' b y where
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   293
    ps: "(s, a, x) \<in> pos_simple f" "(s', b, y) \<in> pos_simple g" and
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   294
    A: "A = pos_simple_integral (s, a, x)" and
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   295
    B: "B = pos_simple_integral (s', b, y)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   296
    unfolding psfis_def pos_simple_integral_def by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   297
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   298
  guess z z' c k using pos_simple_common_partition[OF ps] . note part = this
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   299
  show thesis
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   300
  proof (rule that[of k c z z', OF _ _ part])
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   301
    show "A = pos_simple_integral (k, c, z)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   302
      unfolding A by (rule pos_simple_integral_equal[OF ps(1) part(1)])
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   303
    show "B = pos_simple_integral (k, c, z')"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   304
      unfolding B by (rule pos_simple_integral_equal[OF ps(2) part(2)])
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   305
  qed
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   306
qed
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   307
35692
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
   308
lemma pos_simple_integral_add:
35582
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   309
  assumes "(s, a, x) \<in> pos_simple f"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   310
  assumes "(s', b, y) \<in> pos_simple g"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   311
  obtains s'' c z where
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   312
    "(s'', c, z) \<in> pos_simple (\<lambda>x. f x + g x)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   313
    "(pos_simple_integral (s, a, x) +
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   314
      pos_simple_integral (s', b, y) =
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   315
      pos_simple_integral (s'', c, z))"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   316
using assms
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   317
proof -
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   318
  guess z z' c k
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   319
    by (rule pos_simple_common_partition[OF `(s, a, x) \<in> pos_simple f ` `(s', b, y) \<in> pos_simple g`])
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   320
  note kczz' = this
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   321
  have x: "pos_simple_integral (s, a, x) = pos_simple_integral (k, c, z)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   322
    by (rule pos_simple_integral_equal) (fact, fact)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   323
  have y: "pos_simple_integral (s', b, y) = pos_simple_integral (k, c, z')"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   324
    by (rule pos_simple_integral_equal) (fact, fact)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   325
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   326
  have "pos_simple_integral (k, c, (\<lambda> x. z x + z' x))
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   327
    = (\<Sum> x \<in> k. (z x + z' x) * measure M (c x))"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   328
    unfolding pos_simple_integral_def by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   329
  also have "\<dots> = (\<Sum> x \<in> k. z x * measure M (c x) + z' x * measure M (c x))" using real_add_mult_distrib by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   330
  also have "\<dots> = (\<Sum> x \<in> k. z x * measure M (c x)) + (\<Sum> x \<in> k. z' x * measure M (c x))" using setsum_addf by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   331
  also have "\<dots> = pos_simple_integral (k, c, z) + pos_simple_integral (k, c, z')" unfolding pos_simple_integral_def by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   332
  finally have ths: "pos_simple_integral (s, a, x) + pos_simple_integral (s', b, y) =
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   333
    pos_simple_integral (k, c, (\<lambda> x. z x + z' x))" using x y by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   334
  show ?thesis
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   335
    apply (rule that[of k c "(\<lambda> x. z x + z' x)", OF _ ths])
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   336
    using kczz' unfolding pos_simple_def nonneg_def by (auto intro!: add_nonneg_nonneg)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   337
qed
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   338
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   339
lemma psfis_add:
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   340
  assumes "a \<in> psfis f" "b \<in> psfis g"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   341
  shows "a + b \<in> psfis (\<lambda>x. f x + g x)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   342
using assms pos_simple_integral_add
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   343
unfolding psfis_def by auto blast
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   344
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   345
lemma pos_simple_integral_mono_on_mspace:
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   346
  assumes f: "(s, a, x) \<in> pos_simple f"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   347
  assumes g: "(s', b, y) \<in> pos_simple g"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   348
  assumes mono: "\<And> x. x \<in> space M \<Longrightarrow> f x \<le> g x"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   349
  shows "pos_simple_integral (s, a, x) \<le> pos_simple_integral (s', b, y)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   350
using assms
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   351
proof -
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   352
  guess z z' c k by (rule pos_simple_common_partition[OF f g])
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   353
  note kczz' = this
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   354
  (* w = z and w' = z'  except where c _ = {} or undef *)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   355
  def w == "\<lambda> i. if i \<notin> k \<or> c i = {} then 0 else z i"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   356
  def w' == "\<lambda> i. if i \<notin> k \<or> c i = {} then 0 else z' i"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   357
  { fix i
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   358
    have "w i \<le> w' i"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   359
    proof (cases "i \<notin> k \<or> c i = {}")
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   360
      case False hence "i \<in> k" "c i \<noteq> {}" by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   361
      then obtain v where v: "v \<in> c i" and "c i \<in> sets M"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   362
        using kczz'(1) unfolding pos_simple_def by blast
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   363
      hence "v \<in> space M" using sets_into_space by blast
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   364
      with mono[OF `v \<in> space M`] kczz' `i \<in> k` `v \<in> c i`
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   365
      have "z i \<le> z' i" unfolding pos_simple_def by simp
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   366
      thus ?thesis unfolding w_def w'_def using False by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   367
    next
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   368
      case True thus ?thesis unfolding w_def w'_def by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   369
   qed
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   370
  } note w_mn = this
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   371
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   372
  (* some technical stuff for the calculation*)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   373
  have "\<And> i. i \<in> k \<Longrightarrow> c i \<in> sets M" using kczz' unfolding pos_simple_def by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   374
  hence "\<And> i. i \<in> k \<Longrightarrow> measure M (c i) \<ge> 0" using positive by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   375
  hence w_mono: "\<And> i. i \<in> k \<Longrightarrow> w i * measure M (c i) \<le> w' i * measure M (c i)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   376
    using mult_right_mono w_mn by blast
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   377
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   378
  { fix i have "\<lbrakk>i \<in> k ; z i \<noteq> w i\<rbrakk> \<Longrightarrow> measure M (c i) = 0"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   379
      unfolding w_def by (cases "c i = {}") auto }
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   380
  hence zw: "\<And> i. i \<in> k \<Longrightarrow> z i * measure M (c i) = w i * measure M (c i)" by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   381
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   382
  { fix i have "i \<in> k \<Longrightarrow> z i * measure M (c i) = w i * measure M (c i)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   383
      unfolding w_def by (cases "c i = {}") simp_all }
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   384
  note zw = this
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   385
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   386
  { fix i have "i \<in> k \<Longrightarrow> z' i * measure M (c i) = w' i * measure M (c i)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   387
      unfolding w'_def by (cases "c i = {}") simp_all }
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   388
  note z'w' = this
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   389
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   390
  (* the calculation *)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   391
  have "pos_simple_integral (s, a, x) = pos_simple_integral (k, c, z)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   392
    using f kczz'(1) by (rule pos_simple_integral_equal)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   393
  also have "\<dots> = (\<Sum> i \<in> k. z i * measure M (c i))"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   394
    unfolding pos_simple_integral_def by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   395
  also have "\<dots> = (\<Sum> i \<in> k. w i * measure M (c i))"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   396
    using setsum_cong2[of k, OF zw] by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   397
  also have "\<dots> \<le> (\<Sum> i \<in> k. w' i * measure M (c i))"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   398
    using setsum_mono[OF w_mono, of k] by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   399
  also have "\<dots> = (\<Sum> i \<in> k. z' i * measure M (c i))"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   400
    using setsum_cong2[of k, OF z'w'] by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   401
  also have "\<dots> = pos_simple_integral (k, c, z')"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   402
    unfolding pos_simple_integral_def by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   403
  also have "\<dots> = pos_simple_integral (s', b, y)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   404
    using kczz'(2) g by (rule pos_simple_integral_equal)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   405
  finally show "pos_simple_integral (s, a, x) \<le> pos_simple_integral (s', b, y)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   406
    by simp
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   407
qed
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   408
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   409
lemma pos_simple_integral_mono:
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   410
  assumes a: "(s, a, x) \<in> pos_simple f" "(s', b, y) \<in> pos_simple g"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   411
  assumes "\<And> z. f z \<le> g z"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   412
  shows "pos_simple_integral (s, a, x) \<le> pos_simple_integral (s', b, y)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   413
using assms pos_simple_integral_mono_on_mspace by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   414
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   415
lemma psfis_mono:
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   416
  assumes "a \<in> psfis f" "b \<in> psfis g"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   417
  assumes "\<And> x. x \<in> space M \<Longrightarrow> f x \<le> g x"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   418
  shows "a \<le> b"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   419
using assms pos_simple_integral_mono_on_mspace unfolding psfis_def by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   420
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   421
lemma pos_simple_fn_integral_unique:
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   422
  assumes "(s, a, x) \<in> pos_simple f" "(s', b, y) \<in> pos_simple f"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   423
  shows "pos_simple_integral (s, a, x) = pos_simple_integral (s', b, y)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   424
using assms real_le_antisym real_le_refl pos_simple_integral_mono by metis
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   425
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   426
lemma psfis_unique:
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   427
  assumes "a \<in> psfis f" "b \<in> psfis f"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   428
  shows "a = b"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   429
using assms real_le_antisym real_le_refl psfis_mono by metis
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   430
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   431
lemma pos_simple_integral_indicator:
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   432
  assumes "A \<in> sets M"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   433
  obtains s a x where
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   434
  "(s, a, x) \<in> pos_simple (indicator_fn A)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   435
  "measure M A = pos_simple_integral (s, a, x)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   436
using assms
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   437
proof -
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   438
  def s == "{0, 1} :: nat set"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   439
  def a == "\<lambda> i :: nat. if i = 0 then A else space M - A"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   440
  def x == "\<lambda> i :: nat. if i = 0 then 1 else (0 :: real)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   441
  have eq: "pos_simple_integral (s, a, x) = measure M A"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   442
    unfolding s_def a_def x_def pos_simple_integral_def by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   443
  have "(s, a, x) \<in> pos_simple (indicator_fn A)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   444
    unfolding pos_simple_def indicator_fn_def s_def a_def x_def nonneg_def
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   445
    using assms sets_into_space by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   446
   from that[OF this] eq show thesis by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   447
qed
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   448
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   449
lemma psfis_indicator:
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   450
  assumes "A \<in> sets M"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   451
  shows "measure M A \<in> psfis (indicator_fn A)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   452
using pos_simple_integral_indicator[OF assms]
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   453
  unfolding psfis_def image_def by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   454
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   455
lemma pos_simple_integral_mult:
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   456
  assumes f: "(s, a, x) \<in> pos_simple f"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   457
  assumes "0 \<le> z"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   458
  obtains s' b y where
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   459
  "(s', b, y) \<in> pos_simple (\<lambda>x. z * f x)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   460
  "pos_simple_integral (s', b, y) = z * pos_simple_integral (s, a, x)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   461
  using assms that[of s a "\<lambda>i. z * x i"]
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   462
  by (simp add: pos_simple_def pos_simple_integral_def setsum_right_distrib algebra_simps nonneg_def mult_nonneg_nonneg)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   463
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   464
lemma psfis_mult:
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   465
  assumes "r \<in> psfis f"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   466
  assumes "0 \<le> z"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   467
  shows "z * r \<in> psfis (\<lambda>x. z * f x)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   468
using assms
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   469
proof -
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   470
  from assms obtain s a x
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   471
    where sax: "(s, a, x) \<in> pos_simple f"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   472
    and r: "r = pos_simple_integral (s, a, x)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   473
    unfolding psfis_def image_def by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   474
  obtain s' b y where
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   475
    "(s', b, y) \<in> pos_simple (\<lambda>x. z * f x)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   476
    "z * pos_simple_integral (s, a, x) = pos_simple_integral (s', b, y)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   477
    using pos_simple_integral_mult[OF sax `0 \<le> z`, of thesis] by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   478
  thus ?thesis using r unfolding psfis_def image_def by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   479
qed
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   480
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   481
lemma psfis_setsum_image:
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   482
  assumes "finite P"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   483
  assumes "\<And>i. i \<in> P \<Longrightarrow> a i \<in> psfis (f i)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   484
  shows "(setsum a P) \<in> psfis (\<lambda>t. \<Sum>i \<in> P. f i t)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   485
using assms
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   486
proof (induct P)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   487
  case empty
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   488
  let ?s = "{0 :: nat}"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   489
  let ?a = "\<lambda> i. if i = (0 :: nat) then space M else {}"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   490
  let ?x = "\<lambda> (i :: nat). (0 :: real)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   491
  have "(?s, ?a, ?x) \<in> pos_simple (\<lambda> t. (0 :: real))"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   492
    unfolding pos_simple_def image_def nonneg_def by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   493
  moreover have "(\<Sum> i \<in> ?s. ?x i * measure M (?a i)) = 0" by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   494
  ultimately have "0 \<in> psfis (\<lambda> t. 0)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   495
    unfolding psfis_def image_def pos_simple_integral_def nonneg_def
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   496
    by (auto intro!:bexI[of _ "(?s, ?a, ?x)"])
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   497
  thus ?case by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   498
next
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   499
  case (insert x P) note asms = this
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   500
  have "finite P" by fact
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   501
  have "x \<notin> P" by fact
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   502
  have "(\<And>i. i \<in> P \<Longrightarrow> a i \<in> psfis (f i)) \<Longrightarrow>
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   503
    setsum a P \<in> psfis (\<lambda>t. \<Sum>i\<in>P. f i t)" by fact
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   504
  have "setsum a (insert x P) = a x + setsum a P" using `finite P` `x \<notin> P` by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   505
  also have "\<dots> \<in> psfis (\<lambda> t. f x t + (\<Sum> i \<in> P. f i t))"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   506
    using asms psfis_add by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   507
  also have "\<dots> = psfis (\<lambda> t. \<Sum> i \<in> insert x P. f i t)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   508
    using `x \<notin> P` `finite P` by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   509
  finally show ?case by simp
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   510
qed
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   511
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   512
lemma psfis_intro:
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   513
  assumes "a ` P \<subseteq> sets M" and "nonneg x" and "finite P"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   514
  shows "(\<Sum>i\<in>P. x i * measure M (a i)) \<in> psfis (\<lambda>t. \<Sum>i\<in>P. x i * indicator_fn (a i) t)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   515
using assms psfis_mult psfis_indicator
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   516
unfolding image_def nonneg_def
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   517
by (auto intro!:psfis_setsum_image)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   518
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   519
lemma psfis_nonneg: "a \<in> psfis f \<Longrightarrow> nonneg f"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   520
unfolding psfis_def pos_simple_def by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   521
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   522
lemma pos_psfis: "r \<in> psfis f \<Longrightarrow> 0 \<le> r"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   523
unfolding psfis_def pos_simple_integral_def image_def pos_simple_def nonneg_def
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   524
using positive[unfolded positive_def] by (auto intro!:setsum_nonneg mult_nonneg_nonneg)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   525
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   526
lemma psfis_borel_measurable:
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   527
  assumes "a \<in> psfis f"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   528
  shows "f \<in> borel_measurable M"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   529
using assms
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   530
proof -
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   531
  from assms obtain s a' x where sa'x: "(s, a', x) \<in> pos_simple f" and sa'xa: "pos_simple_integral (s, a', x) = a"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   532
    and fs: "finite s"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   533
    unfolding psfis_def pos_simple_integral_def image_def
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   534
    by (auto elim:pos_simpleE)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   535
  { fix w assume "w \<in> space M"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   536
    hence "(f w \<le> a) = ((\<Sum> i \<in> s. x i * indicator_fn (a' i) w) \<le> a)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   537
      using pos_simple_setsum_indicator_fn[OF sa'x, of w] by simp
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   538
  } hence "\<And> w. (w \<in> space M \<and> f w \<le> a) = (w \<in> space M \<and> (\<Sum> i \<in> s. x i * indicator_fn (a' i) w) \<le> a)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   539
    by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   540
  { fix i assume "i \<in> s"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   541
    hence "indicator_fn (a' i) \<in> borel_measurable M"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   542
      using borel_measurable_indicator using sa'x[unfolded pos_simple_def] by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   543
    hence "(\<lambda> w. x i * indicator_fn (a' i) w) \<in> borel_measurable M"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   544
      using affine_borel_measurable[of "\<lambda> w. indicator_fn (a' i) w" 0 "x i"]
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   545
        real_mult_commute by auto }
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   546
  from borel_measurable_setsum_borel_measurable[OF fs this] affine_borel_measurable
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   547
  have "(\<lambda> w. (\<Sum> i \<in> s. x i * indicator_fn (a' i) w)) \<in> borel_measurable M" by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   548
  from borel_measurable_cong[OF pos_simple_setsum_indicator_fn[OF sa'x]] this
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   549
  show ?thesis by simp
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   550
qed
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   551
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   552
lemma psfis_mono_conv_mono:
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   553
  assumes mono: "mono_convergent u f (space M)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   554
  and ps_u: "\<And>n. x n \<in> psfis (u n)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   555
  and "x ----> y"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   556
  and "r \<in> psfis s"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   557
  and f_upper_bound: "\<And>t. t \<in> space M \<Longrightarrow> s t \<le> f t"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   558
  shows "r <= y"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   559
proof (rule field_le_mult_one_interval)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   560
  fix z :: real assume "0 < z" and "z < 1"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   561
  hence "0 \<le> z" by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   562
  let "?B' n" = "{w \<in> space M. z * s w <= u n w}"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   563
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   564
  have "incseq x" unfolding incseq_def
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   565
  proof safe
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   566
    fix m n :: nat assume "m \<le> n"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   567
    show "x m \<le> x n"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   568
    proof (rule psfis_mono[OF `x m \<in> psfis (u m)` `x n \<in> psfis (u n)`])
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   569
      fix t assume "t \<in> space M"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   570
      with mono_convergentD[OF mono this] `m \<le> n` show "u m t \<le> u n t"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   571
        unfolding incseq_def by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   572
    qed
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   573
  qed
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   574
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   575
  from `r \<in> psfis s`
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   576
  obtain s' a x' where r: "r = pos_simple_integral (s', a, x')"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   577
    and ps_s: "(s', a, x') \<in> pos_simple s"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   578
    unfolding psfis_def by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   579
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   580
  { fix t i assume "i \<in> s'" "t \<in> a i"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   581
    hence "t \<in> space M" using ps_s by (auto elim!: pos_simpleE) }
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   582
  note t_in_space = this
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   583
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   584
  { fix n
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   585
    from psfis_borel_measurable[OF `r \<in> psfis s`]
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   586
       psfis_borel_measurable[OF ps_u]
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   587
    have "?B' n \<in> sets M"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   588
      by (auto intro!:
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   589
        borel_measurable_leq_borel_measurable
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   590
        borel_measurable_times_borel_measurable
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   591
        borel_measurable_const) }
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   592
  note B'_in_M = this
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   593
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   594
  { fix n have "(\<lambda>i. a i \<inter> ?B' n) ` s' \<subseteq> sets M" using B'_in_M ps_s
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   595
      by (auto intro!: Int elim!: pos_simpleE) }
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   596
  note B'_inter_a_in_M = this
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   597
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   598
  let "?sum n" = "(\<Sum>i\<in>s'. x' i * measure M (a i \<inter> ?B' n))"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   599
  { fix n
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   600
    have "z * ?sum n \<le> x n"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   601
    proof (rule psfis_mono[OF _ ps_u])
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   602
      have *: "\<And>i t. indicator_fn (?B' n) t * (x' i * indicator_fn (a i) t) =
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   603
        x' i * indicator_fn (a i \<inter> ?B' n) t" unfolding indicator_fn_def by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   604
      have ps': "?sum n \<in> psfis (\<lambda>t. indicator_fn (?B' n) t * (\<Sum>i\<in>s'. x' i * indicator_fn (a i) t))"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   605
        unfolding setsum_right_distrib * using B'_in_M ps_s
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   606
        by (auto intro!: psfis_intro Int elim!: pos_simpleE)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   607
      also have "... = psfis (\<lambda>t. indicator_fn (?B' n) t * s t)" (is "psfis ?l = psfis ?r")
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   608
      proof (rule psfis_cong)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   609
        show "nonneg ?l" using psfis_nonneg[OF ps'] .
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   610
        show "nonneg ?r" using psfis_nonneg[OF `r \<in> psfis s`] unfolding nonneg_def indicator_fn_def by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   611
        fix t assume "t \<in> space M"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   612
        show "?l t = ?r t" unfolding pos_simple_setsum_indicator_fn[OF ps_s `t \<in> space M`] ..
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   613
      qed
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   614
      finally show "z * ?sum n \<in> psfis (\<lambda>t. z * ?r t)" using psfis_mult[OF _ `0 \<le> z`] by simp
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   615
    next
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   616
      fix t assume "t \<in> space M"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   617
      show "z * (indicator_fn (?B' n) t * s t) \<le> u n t"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   618
         using psfis_nonneg[OF ps_u] unfolding nonneg_def indicator_fn_def by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   619
    qed }
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   620
  hence *: "\<exists>N. \<forall>n\<ge>N. z * ?sum n \<le> x n" by (auto intro!: exI[of _ 0])
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   621
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   622
  show "z * r \<le> y" unfolding r pos_simple_integral_def
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   623
  proof (rule LIMSEQ_le[OF mult_right.LIMSEQ `x ----> y` *],
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   624
         simp, rule LIMSEQ_setsum, rule mult_right.LIMSEQ)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   625
    fix i assume "i \<in> s'"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   626
    from psfis_nonneg[OF `r \<in> psfis s`, unfolded nonneg_def]
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   627
    have "\<And>t. 0 \<le> s t" by simp
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   628
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   629
    have *: "(\<Union>j. a i \<inter> ?B' j) = a i"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   630
    proof (safe, simp, safe)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   631
      fix t assume "t \<in> a i"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   632
      thus "t \<in> space M" using t_in_space[OF `i \<in> s'`] by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   633
      show "\<exists>j. z * s t \<le> u j t"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   634
      proof (cases "s t = 0")
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   635
        case True thus ?thesis
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   636
          using psfis_nonneg[OF ps_u] unfolding nonneg_def by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   637
      next
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   638
        case False with `0 \<le> s t`
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   639
        have "0 < s t" by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   640
        hence "z * s t < 1 * s t" using `0 < z` `z < 1`
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   641
          by (auto intro!: mult_strict_right_mono simp del: mult_1_left)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   642
        also have "... \<le> f t" using f_upper_bound `t \<in> space M` by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   643
        finally obtain b where "\<And>j. b \<le> j \<Longrightarrow> z * s t < u j t" using `t \<in> space M`
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   644
          using mono_conv_outgrow[of "\<lambda>n. u n t" "f t" "z * s t"]
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   645
          using mono_convergentD[OF mono] by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   646
        from this[of b] show ?thesis by (auto intro!: exI[of _ b])
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   647
      qed
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   648
    qed
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   649
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   650
    show "(\<lambda>n. measure M (a i \<inter> ?B' n)) ----> measure M (a i)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   651
    proof (safe intro!:
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   652
        monotone_convergence[of "\<lambda>n. a i \<inter> ?B' n", unfolded comp_def *])
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   653
      fix n show "a i \<inter> ?B' n \<in> sets M"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   654
        using B'_inter_a_in_M[of n] `i \<in> s'` by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   655
    next
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   656
      fix j t assume "t \<in> space M" and "z * s t \<le> u j t"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   657
      thus "z * s t \<le> u (Suc j) t"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   658
        using mono_convergentD(1)[OF mono, unfolded incseq_def,
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   659
          rule_format, of t j "Suc j"]
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   660
        by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   661
    qed
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   662
  qed
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   663
qed
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   664
35692
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
   665
section "Continuous posititve integration"
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
   666
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
   667
definition
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
   668
  "nnfis f = { y. \<exists>u x. mono_convergent u f (space M) \<and>
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
   669
                        (\<forall>n. x n \<in> psfis (u n)) \<and> x ----> y }"
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
   670
35582
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   671
lemma psfis_nnfis:
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   672
  "a \<in> psfis f \<Longrightarrow> a \<in> nnfis f"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   673
  unfolding nnfis_def mono_convergent_def incseq_def
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   674
  by (auto intro!: exI[of _ "\<lambda>n. f"] exI[of _ "\<lambda>n. a"] LIMSEQ_const)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   675
35748
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
   676
lemma nnfis_0: "0 \<in> nnfis (\<lambda> x. 0)"
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
   677
  by (rule psfis_nnfis[OF psfis_0])
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
   678
35582
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   679
lemma nnfis_times:
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   680
  assumes "a \<in> nnfis f" and "0 \<le> z"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   681
  shows "z * a \<in> nnfis (\<lambda>t. z * f t)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   682
proof -
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   683
  obtain u x where "mono_convergent u f (space M)" and
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   684
    "\<And>n. x n \<in> psfis (u n)" "x ----> a"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   685
    using `a \<in> nnfis f` unfolding nnfis_def by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   686
  with `0 \<le> z`show ?thesis unfolding nnfis_def mono_convergent_def incseq_def
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   687
    by (auto intro!: exI[of _ "\<lambda>n w. z * u n w"] exI[of _ "\<lambda>n. z * x n"]
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   688
      LIMSEQ_mult LIMSEQ_const psfis_mult mult_mono1)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   689
qed
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   690
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   691
lemma nnfis_add:
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   692
  assumes "a \<in> nnfis f" and "b \<in> nnfis g"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   693
  shows "a + b \<in> nnfis (\<lambda>t. f t + g t)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   694
proof -
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   695
  obtain u x w y
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   696
    where "mono_convergent u f (space M)" and
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   697
    "\<And>n. x n \<in> psfis (u n)" "x ----> a" and
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   698
    "mono_convergent w g (space M)" and
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   699
    "\<And>n. y n \<in> psfis (w n)" "y ----> b"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   700
    using `a \<in> nnfis f` `b \<in> nnfis g` unfolding nnfis_def by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   701
  thus ?thesis unfolding nnfis_def mono_convergent_def incseq_def
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   702
    by (auto intro!: exI[of _ "\<lambda>n a. u n a + w n a"] exI[of _ "\<lambda>n. x n + y n"]
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   703
      LIMSEQ_add LIMSEQ_const psfis_add add_mono)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   704
qed
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   705
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   706
lemma nnfis_mono:
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   707
  assumes nnfis: "a \<in> nnfis f" "b \<in> nnfis g"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   708
  and mono: "\<And>t. t \<in> space M \<Longrightarrow> f t \<le> g t"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   709
  shows "a \<le> b"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   710
proof -
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   711
  obtain u x w y where
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   712
    mc: "mono_convergent u f (space M)" "mono_convergent w g (space M)" and
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   713
    psfis: "\<And>n. x n \<in> psfis (u n)" "\<And>n. y n \<in> psfis (w n)" and
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   714
    limseq: "x ----> a" "y ----> b" using nnfis unfolding nnfis_def by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   715
  show ?thesis
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   716
  proof (rule LIMSEQ_le_const2[OF limseq(1)], rule exI[of _ 0], safe)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   717
    fix n
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   718
    show "x n \<le> b"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   719
    proof (rule psfis_mono_conv_mono[OF mc(2) psfis(2) limseq(2) psfis(1)])
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   720
      fix t assume "t \<in> space M"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   721
      from mono_convergent_le[OF mc(1) this] mono[OF this]
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   722
      show "u n t \<le> g t" by (rule order_trans)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   723
    qed
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   724
  qed
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   725
qed
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   726
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   727
lemma nnfis_unique:
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   728
  assumes a: "a \<in> nnfis f" and b: "b \<in> nnfis f"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   729
  shows "a = b"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   730
  using nnfis_mono[OF a b] nnfis_mono[OF b a]
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   731
  by (auto intro!: real_le_antisym[of a b])
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   732
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   733
lemma psfis_equiv:
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   734
  assumes "a \<in> psfis f" and "nonneg g"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   735
  and "\<And>t. t \<in> space M \<Longrightarrow> f t = g t"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   736
  shows "a \<in> psfis g"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   737
  using assms unfolding psfis_def pos_simple_def by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   738
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   739
lemma psfis_mon_upclose:
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   740
  assumes "\<And>m. a m \<in> psfis (u m)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   741
  shows "\<exists>c. c \<in> psfis (mon_upclose n u)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   742
proof (induct n)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   743
  case 0 thus ?case unfolding mon_upclose.simps using assms ..
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   744
next
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   745
  case (Suc n)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   746
  then obtain sn an xn where ps: "(sn, an, xn) \<in> pos_simple (mon_upclose n u)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   747
    unfolding psfis_def by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   748
  obtain ss as xs where ps': "(ss, as, xs) \<in> pos_simple (u (Suc n))"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   749
    using assms[of "Suc n"] unfolding psfis_def by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   750
  from pos_simple_common_partition[OF ps ps'] guess x x' a s .
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   751
  hence "(s, a, upclose x x') \<in> pos_simple (mon_upclose (Suc n) u)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   752
    by (simp add: upclose_def pos_simple_def nonneg_def max_def)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   753
  thus ?case unfolding psfis_def by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   754
qed
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   755
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   756
text {* Beppo-Levi monotone convergence theorem *}
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   757
lemma nnfis_mon_conv:
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   758
  assumes mc: "mono_convergent f h (space M)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   759
  and nnfis: "\<And>n. x n \<in> nnfis (f n)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   760
  and "x ----> z"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   761
  shows "z \<in> nnfis h"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   762
proof -
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   763
  have "\<forall>n. \<exists>u y. mono_convergent u (f n) (space M) \<and> (\<forall>m. y m \<in> psfis (u m)) \<and>
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   764
    y ----> x n"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   765
    using nnfis unfolding nnfis_def by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   766
  from choice[OF this] guess u ..
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   767
  from choice[OF this] guess y ..
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   768
  hence mc_u: "\<And>n. mono_convergent (u n) (f n) (space M)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   769
    and psfis: "\<And>n m. y n m \<in> psfis (u n m)" and "\<And>n. y n ----> x n"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   770
    by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   771
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   772
  let "?upclose n" = "mon_upclose n (\<lambda>m. u m n)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   773
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   774
  have "\<exists>c. \<forall>n. c n \<in> psfis (?upclose n)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   775
    by (safe intro!: choice psfis_mon_upclose) (rule psfis)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   776
  then guess c .. note c = this[rule_format]
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   777
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   778
  show ?thesis unfolding nnfis_def
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   779
  proof (safe intro!: exI)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   780
    show mc_upclose: "mono_convergent ?upclose h (space M)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   781
      by (rule mon_upclose_mono_convergent[OF mc_u mc])
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   782
    show psfis_upclose: "\<And>n. c n \<in> psfis (?upclose n)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   783
      using c .
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   784
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   785
    { fix n m :: nat assume "n \<le> m"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   786
      hence "c n \<le> c m"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   787
        using psfis_mono[OF c c]
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   788
        using mono_convergentD(1)[OF mc_upclose, unfolded incseq_def]
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   789
        by auto }
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   790
    hence "incseq c" unfolding incseq_def by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   791
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   792
    { fix n
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   793
      have c_nnfis: "c n \<in> nnfis (?upclose n)" using c by (rule psfis_nnfis)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   794
      from nnfis_mono[OF c_nnfis nnfis]
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   795
        mon_upclose_le_mono_convergent[OF mc_u]
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   796
        mono_convergentD(1)[OF mc]
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   797
      have "c n \<le> x n" by fast }
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   798
    note c_less_x = this
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   799
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   800
    { fix n
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   801
      note c_less_x[of n]
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   802
      also have "x n \<le> z"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   803
      proof (rule incseq_le)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   804
        show "x ----> z" by fact
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   805
        from mono_convergentD(1)[OF mc]
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   806
        show "incseq x" unfolding incseq_def
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   807
          by (auto intro!: nnfis_mono[OF nnfis nnfis])
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   808
      qed
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   809
      finally have "c n \<le> z" . }
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   810
    note c_less_z = this
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   811
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   812
    have "convergent c"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   813
    proof (rule Bseq_mono_convergent[unfolded incseq_def[symmetric]])
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   814
      show "Bseq c"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   815
        using pos_psfis[OF c] c_less_z
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   816
        by (auto intro!: BseqI'[of _ z])
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   817
      show "incseq c" by fact
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   818
    qed
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   819
    then obtain l where l: "c ----> l" unfolding convergent_def by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   820
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   821
    have "l \<le> z" using c_less_x l
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   822
      by (auto intro!: LIMSEQ_le[OF _ `x ----> z`])
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   823
    moreover have "z \<le> l"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   824
    proof (rule LIMSEQ_le_const2[OF `x ----> z`], safe intro!: exI[of _ 0])
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   825
      fix n
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   826
      have "l \<in> nnfis h"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   827
        unfolding nnfis_def using l mc_upclose psfis_upclose by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   828
      from nnfis this mono_convergent_le[OF mc]
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   829
      show "x n \<le> l" by (rule nnfis_mono)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   830
    qed
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   831
    ultimately have "l = z" by (rule real_le_antisym)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   832
    thus "c ----> z" using `c ----> l` by simp
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   833
  qed
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   834
qed
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   835
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   836
lemma nnfis_pos_on_mspace:
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   837
  assumes "a \<in> nnfis f" and "x \<in>space M"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   838
  shows "0 \<le> f x"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   839
using assms
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   840
proof -
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   841
  from assms[unfolded nnfis_def] guess u y by auto note uy = this
35748
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
   842
  hence "\<And> n. 0 \<le> u n x"
35582
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   843
    unfolding nnfis_def psfis_def pos_simple_def nonneg_def mono_convergent_def
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   844
    by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   845
  thus "0 \<le> f x" using uy[rule_format]
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   846
    unfolding nnfis_def psfis_def pos_simple_def nonneg_def mono_convergent_def
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   847
    using incseq_le[of "\<lambda> n. u n x" "f x"] real_le_trans
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   848
    by fast
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   849
qed
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   850
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   851
lemma nnfis_borel_measurable:
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   852
  assumes "a \<in> nnfis f"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   853
  shows "f \<in> borel_measurable M"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   854
using assms unfolding nnfis_def
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   855
apply auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   856
apply (rule mono_convergent_borel_measurable)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   857
using psfis_borel_measurable
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   858
by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   859
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   860
lemma borel_measurable_mon_conv_psfis:
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   861
  assumes f_borel: "f \<in> borel_measurable M"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   862
  and nonneg: "\<And>t. t \<in> space M \<Longrightarrow> 0 \<le> f t"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   863
  shows"\<exists>u x. mono_convergent u f (space M) \<and> (\<forall>n. x n \<in> psfis (u n))"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   864
proof (safe intro!: exI)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   865
  let "?I n" = "{0<..<n * 2^n}"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   866
  let "?A n i" = "{w \<in> space M. real (i :: nat) / 2^(n::nat) \<le> f w \<and> f w < real (i + 1) / 2^n}"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   867
  let "?u n t" = "\<Sum>i\<in>?I n. real i / 2^n * indicator_fn (?A n i) t"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   868
  let "?x n" = "\<Sum>i\<in>?I n. real i / 2^n * measure M (?A n i)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   869
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   870
  let "?w n t" = "if f t < real n then real (natfloor (f t * 2^n)) / 2^n else 0"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   871
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   872
  { fix t n assume t: "t \<in> space M"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   873
    have "?u n t = ?w n t" (is "_ = (if _ then real ?i / _ else _)")
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   874
    proof (cases "f t < real n")
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   875
      case True
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   876
      with nonneg t
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   877
      have i: "?i < n * 2^n"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   878
        by (auto simp: real_of_nat_power[symmetric]
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   879
                 intro!: less_natfloor mult_nonneg_nonneg)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   880
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   881
      hence t_in_A: "t \<in> ?A n ?i"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   882
        unfolding divide_le_eq less_divide_eq
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   883
        using nonneg t True
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   884
        by (auto intro!: real_natfloor_le
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   885
          real_natfloor_gt_diff_one[unfolded diff_less_eq]
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   886
          simp: real_of_nat_Suc zero_le_mult_iff)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   887
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   888
      hence *: "real ?i / 2^n \<le> f t"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   889
        "f t < real (?i + 1) / 2^n" by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   890
      { fix j assume "t \<in> ?A n j"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   891
        hence "real j / 2^n \<le> f t"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   892
          and "f t < real (j + 1) / 2^n" by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   893
        with * have "j \<in> {?i}" unfolding divide_le_eq less_divide_eq
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   894
          by auto }
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   895
      hence *: "\<And>j. t \<in> ?A n j \<longleftrightarrow> j \<in> {?i}" using t_in_A by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   896
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   897
      have "?u n t = real ?i / 2^n"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   898
        unfolding indicator_fn_def if_distrib *
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   899
          setsum_cases[OF finite_greaterThanLessThan]
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   900
        using i by (cases "?i = 0") simp_all
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   901
      thus ?thesis using True by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   902
    next
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   903
      case False
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   904
      have "?u n t = (\<Sum>i \<in> {0 <..< n*2^n}. 0)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   905
      proof (rule setsum_cong)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   906
        fix i assume "i \<in> {0 <..< n*2^n}"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   907
        hence "i + 1 \<le> n * 2^n" by simp
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   908
        hence "real (i + 1) \<le> real n * 2^n"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   909
          unfolding real_of_nat_le_iff[symmetric]
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   910
          by (auto simp: real_of_nat_power[symmetric])
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   911
        also have "... \<le> f t * 2^n"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   912
          using False by (auto intro!: mult_nonneg_nonneg)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   913
        finally have "t \<notin> ?A n i"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   914
          by (auto simp: divide_le_eq less_divide_eq)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   915
        thus "real i / 2^n * indicator_fn (?A n i) t = 0"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   916
          unfolding indicator_fn_def by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   917
      qed simp
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   918
      thus ?thesis using False by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   919
    qed }
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   920
  note u_at_t = this
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   921
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   922
  show "mono_convergent ?u f (space M)" unfolding mono_convergent_def
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   923
  proof safe
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   924
    fix t assume t: "t \<in> space M"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   925
    { fix m n :: nat assume "m \<le> n"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   926
      hence *: "(2::real)^n = 2^m * 2^(n - m)" unfolding class_semiring.mul_pwr by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   927
      have "real (natfloor (f t * 2^m) * natfloor (2^(n-m))) \<le> real (natfloor (f t * 2 ^ n))"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   928
        apply (subst *)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   929
        apply (subst class_semiring.mul_a)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   930
        apply (subst real_of_nat_le_iff)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   931
        apply (rule le_mult_natfloor)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   932
        using nonneg[OF t] by (auto intro!: mult_nonneg_nonneg)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   933
      hence "real (natfloor (f t * 2^m)) * 2^n \<le> real (natfloor (f t * 2^n)) * 2^m"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   934
        apply (subst *)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   935
        apply (subst (3) class_semiring.mul_c)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   936
        apply (subst class_semiring.mul_a)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   937
        by (auto intro: mult_right_mono simp: natfloor_power real_of_nat_power[symmetric]) }
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   938
    thus "incseq (\<lambda>n. ?u n t)" unfolding u_at_t[OF t] unfolding incseq_def
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   939
      by (auto simp add: le_divide_eq divide_le_eq less_divide_eq)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   940
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   941
    show "(\<lambda>i. ?u i t) ----> f t" unfolding u_at_t[OF t]
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   942
    proof (rule LIMSEQ_I, safe intro!: exI)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   943
      fix r :: real and n :: nat
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   944
      let ?N = "natfloor (1/r) + 1"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   945
      assume "0 < r" and N: "max ?N (natfloor (f t) + 1) \<le> n"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   946
      hence "?N \<le> n" by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   947
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   948
      have "1 / r < real (natfloor (1/r) + 1)" using real_natfloor_add_one_gt
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   949
        by (simp add: real_of_nat_Suc)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   950
      also have "... < 2^?N" by (rule two_realpow_gt)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   951
      finally have less_r: "1 / 2^?N < r" using `0 < r`
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   952
        by (auto simp: less_divide_eq divide_less_eq algebra_simps)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   953
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   954
      have "f t < real (natfloor (f t) + 1)" using real_natfloor_add_one_gt[of "f t"] by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   955
      also have "... \<le> real n" unfolding real_of_nat_le_iff using N by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   956
      finally have "f t < real n" .
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   957
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   958
      have "real (natfloor (f t * 2^n)) \<le> f t * 2^n"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   959
        using nonneg[OF t] by (auto intro!: real_natfloor_le mult_nonneg_nonneg)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   960
      hence less: "real (natfloor (f t * 2^n)) / 2^n \<le> f t" unfolding divide_le_eq by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   961
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   962
      have "f t * 2 ^ n - 1 < real (natfloor (f t * 2^n))" using real_natfloor_gt_diff_one .
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   963
      hence "f t - real (natfloor (f t * 2^n)) / 2^n < 1 / 2^n"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   964
        by (auto simp: less_divide_eq divide_less_eq algebra_simps)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   965
      also have "... \<le> 1 / 2^?N" using `?N \<le> n`
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   966
        by (auto intro!: divide_left_mono mult_pos_pos simp del: power_Suc)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   967
      also have "... < r" using less_r .
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   968
      finally show "norm (?w n t - f t) < r" using `f t < real n` less by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   969
    qed
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   970
  qed
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   971
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   972
  fix n
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   973
  show "?x n \<in> psfis (?u n)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   974
  proof (rule psfis_intro)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   975
    show "?A n ` ?I n \<subseteq> sets M"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   976
    proof safe
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   977
      fix i :: nat
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   978
      from Int[OF
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   979
        f_borel[unfolded borel_measurable_less_iff, rule_format, of "real (i+1) / 2^n"]
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   980
        f_borel[unfolded borel_measurable_ge_iff, rule_format, of "real i / 2^n"]]
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   981
      show "?A n i \<in> sets M"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   982
        by (metis Collect_conj_eq Int_commute Int_left_absorb Int_left_commute)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   983
    qed
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   984
    show "nonneg (\<lambda>i :: nat. real i / 2 ^ n)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   985
      unfolding nonneg_def by (auto intro!: divide_nonneg_pos)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   986
  qed auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   987
qed
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   988
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   989
lemma nnfis_dom_conv:
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   990
  assumes borel: "f \<in> borel_measurable M"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   991
  and nnfis: "b \<in> nnfis g"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   992
  and ord: "\<And>t. t \<in> space M \<Longrightarrow> f t \<le> g t"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   993
  and nonneg: "\<And>t. t \<in> space M \<Longrightarrow> 0 \<le> f t"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   994
  shows "\<exists>a. a \<in> nnfis f \<and> a \<le> b"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   995
proof -
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   996
  obtain u x where mc_f: "mono_convergent u f (space M)" and
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   997
    psfis: "\<And>n. x n \<in> psfis (u n)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   998
    using borel_measurable_mon_conv_psfis[OF borel nonneg] by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
   999
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1000
  { fix n
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1001
    { fix t assume t: "t \<in> space M"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1002
      note mono_convergent_le[OF mc_f this, of n]
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1003
      also note ord[OF t]
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1004
      finally have "u n t \<le> g t" . }
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1005
    from nnfis_mono[OF psfis_nnfis[OF psfis] nnfis this]
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1006
    have "x n \<le> b" by simp }
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1007
  note x_less_b = this
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1008
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1009
  have "convergent x"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1010
  proof (safe intro!: Bseq_mono_convergent)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1011
    from x_less_b pos_psfis[OF psfis]
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1012
    show "Bseq x" by (auto intro!: BseqI'[of _ b])
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1013
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1014
    fix n m :: nat assume *: "n \<le> m"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1015
    show "x n \<le> x m"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1016
    proof (rule psfis_mono[OF `x n \<in> psfis (u n)` `x m \<in> psfis (u m)`])
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1017
      fix t assume "t \<in> space M"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1018
      from mc_f[THEN mono_convergentD(1), unfolded incseq_def, OF this]
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1019
      show "u n t \<le> u m t" using * by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1020
    qed
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1021
  qed
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1022
  then obtain a where "x ----> a" unfolding convergent_def by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1023
  with LIMSEQ_le_const2[OF `x ----> a`] x_less_b mc_f psfis
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1024
  show ?thesis unfolding nnfis_def by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1025
qed
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1026
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1027
lemma the_nnfis[simp]: "a \<in> nnfis f \<Longrightarrow> (THE a. a \<in> nnfis f) = a"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1028
  by (auto intro: the_equality nnfis_unique)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1029
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1030
lemma nnfis_cong:
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1031
  assumes cong: "\<And>x. x \<in> space M \<Longrightarrow> f x = g x"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1032
  shows "nnfis f = nnfis g"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1033
proof -
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1034
  { fix f g :: "'a \<Rightarrow> real" assume cong: "\<And>x. x \<in> space M \<Longrightarrow> f x = g x"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1035
    fix x assume "x \<in> nnfis f"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1036
    then guess u y unfolding nnfis_def by safe note x = this
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1037
    hence "mono_convergent u g (space M)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1038
      unfolding mono_convergent_def using cong by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1039
    with x(2,3) have "x \<in> nnfis g" unfolding nnfis_def by auto }
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1040
  from this[OF cong] this[OF cong[symmetric]]
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1041
  show ?thesis by safe
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1042
qed
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1043
35692
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
  1044
section "Lebesgue Integral"
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
  1045
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
  1046
definition
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
  1047
  "integrable f \<longleftrightarrow> (\<exists>x. x \<in> nnfis (pos_part f)) \<and> (\<exists>y. y \<in> nnfis (neg_part f))"
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
  1048
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
  1049
definition
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
  1050
  "integral f = (THE i :: real. i \<in> nnfis (pos_part f)) - (THE j. j \<in> nnfis (neg_part f))"
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
  1051
35582
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1052
lemma integral_cong:
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1053
  assumes cong: "\<And>x. x \<in> space M \<Longrightarrow> f x = g x"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1054
  shows "integral f = integral g"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1055
proof -
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1056
  have "nnfis (pos_part f) = nnfis (pos_part g)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1057
    using cong by (auto simp: pos_part_def intro!: nnfis_cong)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1058
  moreover
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1059
  have "nnfis (neg_part f) = nnfis (neg_part g)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1060
    using cong by (auto simp: neg_part_def intro!: nnfis_cong)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1061
  ultimately show ?thesis
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1062
    unfolding integral_def by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1063
qed
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1064
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1065
lemma nnfis_integral:
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1066
  assumes "a \<in> nnfis f"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1067
  shows "integrable f" and "integral f = a"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1068
proof -
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1069
  have a: "a \<in> nnfis (pos_part f)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1070
    using assms nnfis_pos_on_mspace[OF assms]
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1071
    by (auto intro!: nnfis_mon_conv[of "\<lambda>i. f" _ "\<lambda>i. a"]
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1072
      LIMSEQ_const simp: mono_convergent_def pos_part_def incseq_def max_def)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1073
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1074
  have "\<And>t. t \<in> space M \<Longrightarrow> neg_part f t = 0"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1075
    unfolding neg_part_def min_def
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1076
    using nnfis_pos_on_mspace[OF assms] by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1077
  hence 0: "0 \<in> nnfis (neg_part f)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1078
    by (auto simp: nnfis_def mono_convergent_def psfis_0 incseq_def
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1079
          intro!: LIMSEQ_const exI[of _ "\<lambda> x n. 0"] exI[of _ "\<lambda> n. 0"])
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1080
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1081
  from 0 a show "integrable f" "integral f = a"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1082
    unfolding integrable_def integral_def by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1083
qed
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1084
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1085
lemma nnfis_minus_nnfis_integral:
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1086
  assumes "a \<in> nnfis f" and "b \<in> nnfis g"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1087
  shows "integrable (\<lambda>t. f t - g t)" and "integral (\<lambda>t. f t - g t) = a - b"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1088
proof -
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1089
  have borel: "(\<lambda>t. f t - g t) \<in> borel_measurable M" using assms
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1090
    by (blast intro:
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1091
      borel_measurable_diff_borel_measurable nnfis_borel_measurable)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1092
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1093
  have "\<exists>x. x \<in> nnfis (pos_part (\<lambda>t. f t - g t)) \<and> x \<le> a + b"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1094
    (is "\<exists>x. x \<in> nnfis ?pp \<and> _")
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1095
  proof (rule nnfis_dom_conv)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1096
    show "?pp \<in> borel_measurable M"
35692
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
  1097
      using borel by (rule pos_part_borel_measurable neg_part_borel_measurable)
35582
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1098
    show "a + b \<in> nnfis (\<lambda>t. f t + g t)" using assms by (rule nnfis_add)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1099
    fix t assume "t \<in> space M"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1100
    with assms nnfis_add assms[THEN nnfis_pos_on_mspace[OF _ this]]
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1101
    show "?pp t \<le> f t + g t" unfolding pos_part_def by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1102
    show "0 \<le> ?pp t" using nonneg_pos_part[of "\<lambda>t. f t - g t"]
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1103
      unfolding nonneg_def by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1104
  qed
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1105
  then obtain x where x: "x \<in> nnfis ?pp" by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1106
  moreover
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1107
  have "\<exists>x. x \<in> nnfis (neg_part (\<lambda>t. f t - g t)) \<and> x \<le> a + b"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1108
    (is "\<exists>x. x \<in> nnfis ?np \<and> _")
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1109
  proof (rule nnfis_dom_conv)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1110
    show "?np \<in> borel_measurable M"
35692
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
  1111
      using borel by (rule pos_part_borel_measurable neg_part_borel_measurable)
35582
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1112
    show "a + b \<in> nnfis (\<lambda>t. f t + g t)" using assms by (rule nnfis_add)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1113
    fix t assume "t \<in> space M"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1114
    with assms nnfis_add assms[THEN nnfis_pos_on_mspace[OF _ this]]
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1115
    show "?np t \<le> f t + g t" unfolding neg_part_def by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1116
    show "0 \<le> ?np t" using nonneg_neg_part[of "\<lambda>t. f t - g t"]
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1117
      unfolding nonneg_def by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1118
  qed
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1119
  then obtain y where y: "y \<in> nnfis ?np" by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1120
  ultimately show "integrable (\<lambda>t. f t - g t)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1121
    unfolding integrable_def by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1122
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1123
  from x and y
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1124
  have "a + y \<in> nnfis (\<lambda>t. f t + ?np t)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1125
    and "b + x \<in> nnfis (\<lambda>t. g t + ?pp t)" using assms by (auto intro: nnfis_add)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1126
  moreover
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1127
  have "\<And>t. f t + ?np t = g t + ?pp t"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1128
    unfolding pos_part_def neg_part_def by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1129
  ultimately have "a - b = x - y"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1130
    using nnfis_unique by (auto simp: algebra_simps)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1131
  thus "integral (\<lambda>t. f t - g t) = a - b"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1132
    unfolding integral_def
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1133
    using the_nnfis[OF x] the_nnfis[OF y] by simp
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1134
qed
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1135
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1136
lemma integral_borel_measurable:
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1137
  "integrable f \<Longrightarrow> f \<in> borel_measurable M"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1138
  unfolding integrable_def
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1139
  by (subst pos_part_neg_part_borel_measurable_iff)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1140
   (auto intro: nnfis_borel_measurable)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1141
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1142
lemma integral_indicator_fn:
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1143
  assumes "a \<in> sets M"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1144
  shows "integral (indicator_fn a) = measure M a"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1145
  and "integrable (indicator_fn a)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1146
  using psfis_indicator[OF assms, THEN psfis_nnfis]
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1147
  by (auto intro!: nnfis_integral)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1148
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1149
lemma integral_add:
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1150
  assumes "integrable f" and "integrable g"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1151
  shows "integrable (\<lambda>t. f t + g t)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1152
  and "integral (\<lambda>t. f t + g t) = integral f + integral g"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1153
proof -
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1154
  { fix t
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1155
    have "pos_part f t + pos_part g t - (neg_part f t + neg_part g t) =
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1156
      f t + g t"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1157
      unfolding pos_part_def neg_part_def by auto }
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1158
  note part_sum = this
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1159
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1160
  from assms obtain a b c d where
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1161
    a: "a \<in> nnfis (pos_part f)" and b: "b \<in> nnfis (neg_part f)" and
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1162
    c: "c \<in> nnfis (pos_part g)" and d: "d \<in> nnfis (neg_part g)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1163
    unfolding integrable_def by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1164
  note sums = nnfis_add[OF a c] nnfis_add[OF b d]
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1165
  note int = nnfis_minus_nnfis_integral[OF sums, unfolded part_sum]
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1166
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1167
  show "integrable (\<lambda>t. f t + g t)" using int(1) .
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1168
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1169
  show "integral (\<lambda>t. f t + g t) = integral f + integral g"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1170
    using int(2) sums a b c d by (simp add: the_nnfis integral_def)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1171
qed
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1172
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1173
lemma integral_mono:
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1174
  assumes "integrable f" and "integrable g"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1175
  and mono: "\<And>t. t \<in> space M \<Longrightarrow> f t \<le> g t"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1176
  shows "integral f \<le> integral g"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1177
proof -
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1178
  from assms obtain a b c d where
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1179
    a: "a \<in> nnfis (pos_part f)" and b: "b \<in> nnfis (neg_part f)" and
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1180
    c: "c \<in> nnfis (pos_part g)" and d: "d \<in> nnfis (neg_part g)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1181
    unfolding integrable_def by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1182
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1183
  have "a \<le> c"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1184
  proof (rule nnfis_mono[OF a c])
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1185
    fix t assume "t \<in> space M"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1186
    from mono[OF this] show "pos_part f t \<le> pos_part g t"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1187
      unfolding pos_part_def by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1188
  qed
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1189
  moreover have "d \<le> b"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1190
  proof (rule nnfis_mono[OF d b])
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1191
    fix t assume "t \<in> space M"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1192
    from mono[OF this] show "neg_part g t \<le> neg_part f t"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1193
      unfolding neg_part_def by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1194
  qed
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1195
  ultimately have "a - b \<le> c - d" by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1196
  thus ?thesis unfolding integral_def
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1197
    using a b c d by (simp add: the_nnfis)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1198
qed
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1199
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1200
lemma integral_uminus:
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1201
  assumes "integrable f"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1202
  shows "integrable (\<lambda>t. - f t)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1203
  and "integral (\<lambda>t. - f t) = - integral f"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1204
proof -
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1205
  have "pos_part f = neg_part (\<lambda>t.-f t)" and "neg_part f = pos_part (\<lambda>t.-f t)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1206
    unfolding pos_part_def neg_part_def by (auto intro!: ext)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1207
  with assms show "integrable (\<lambda>t.-f t)" and "integral (\<lambda>t.-f t) = -integral f"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1208
    unfolding integrable_def integral_def by simp_all
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1209
qed
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1210
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1211
lemma integral_times_const:
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1212
  assumes "integrable f"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1213
  shows "integrable (\<lambda>t. a * f t)" (is "?P a")
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1214
  and "integral (\<lambda>t. a * f t) = a * integral f" (is "?I a")
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1215
proof -
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1216
  { fix a :: real assume "0 \<le> a"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1217
    hence "pos_part (\<lambda>t. a * f t) = (\<lambda>t. a * pos_part f t)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1218
      and "neg_part (\<lambda>t. a * f t) = (\<lambda>t. a * neg_part f t)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1219
      unfolding pos_part_def neg_part_def max_def min_def
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1220
      by (auto intro!: ext simp: zero_le_mult_iff)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1221
    moreover
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1222
    obtain x y where x: "x \<in> nnfis (pos_part f)" and y: "y \<in> nnfis (neg_part f)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1223
      using assms unfolding integrable_def by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1224
    ultimately
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1225
    have "a * x \<in> nnfis (pos_part (\<lambda>t. a * f t))" and
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1226
      "a * y \<in> nnfis (neg_part (\<lambda>t. a * f t))"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1227
      using nnfis_times[OF _ `0 \<le> a`] by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1228
    with x y have "?P a \<and> ?I a"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1229
      unfolding integrable_def integral_def by (auto simp: algebra_simps) }
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1230
  note int = this
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1231
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1232
  have "?P a \<and> ?I a"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1233
  proof (cases "0 \<le> a")
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1234
    case True from int[OF this] show ?thesis .
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1235
  next
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1236
    case False with int[of "- a"] integral_uminus[of "\<lambda>t. - a * f t"]
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1237
    show ?thesis by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1238
  qed
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1239
  thus "integrable (\<lambda>t. a * f t)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1240
    and "integral (\<lambda>t. a * f t) = a * integral f" by simp_all
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1241
qed
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1242
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1243
lemma integral_cmul_indicator:
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1244
  assumes "s \<in> sets M"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1245
  shows "integral (\<lambda>x. c * indicator_fn s x) = c * (measure M s)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1246
  and "integrable (\<lambda>x. c * indicator_fn s x)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1247
using assms integral_times_const integral_indicator_fn by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1248
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1249
lemma integral_zero:
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1250
  shows "integral (\<lambda>x. 0) = 0"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1251
  and "integrable (\<lambda>x. 0)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1252
  using integral_cmul_indicator[OF empty_sets, of 0]
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1253
  unfolding indicator_fn_def by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1254
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1255
lemma integral_setsum:
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1256
  assumes "finite S"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1257
  assumes "\<And>n. n \<in> S \<Longrightarrow> integrable (f n)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1258
  shows "integral (\<lambda>x. \<Sum> i \<in> S. f i x) = (\<Sum> i \<in> S. integral (f i))" (is "?int S")
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1259
    and "integrable (\<lambda>x. \<Sum> i \<in> S. f i x)" (is "?I s")
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1260
proof -
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1261
  from assms have "?int S \<and> ?I S"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1262
  proof (induct S)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1263
    case empty thus ?case by (simp add: integral_zero)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1264
  next
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1265
    case (insert i S)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1266
    thus ?case
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1267
      apply simp
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1268
      apply (subst integral_add)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1269
      using assms apply auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1270
      apply (subst integral_add)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1271
      using assms by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1272
  qed
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1273
  thus "?int S" and "?I S" by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1274
qed
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1275
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1276
lemma markov_ineq:
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1277
  assumes "integrable f" "0 < a" "integrable (\<lambda>x. \<bar>f x\<bar>^n)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1278
  shows "measure M (f -` {a ..} \<inter> space M) \<le> integral (\<lambda>x. \<bar>f x\<bar>^n) / a^n"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1279
using assms
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1280
proof -
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1281
  from assms have "0 < a ^ n" using real_root_pow_pos by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1282
  from assms have "f \<in> borel_measurable M"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1283
    using integral_borel_measurable[OF `integrable f`] by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1284
  hence w: "{w . w \<in> space M \<and> a \<le> f w} \<in> sets M"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1285
    using borel_measurable_ge_iff by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1286
  have i: "integrable (indicator_fn {w . w \<in> space M \<and> a \<le> f w})"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1287
    using integral_indicator_fn[OF w] by simp
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1288
  have v1: "\<And> t. a ^ n * (indicator_fn {w . w \<in> space M \<and> a \<le> f w}) t 
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1289
            \<le> (f t) ^ n * (indicator_fn {w . w \<in> space M \<and> a \<le> f w}) t"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1290
    unfolding indicator_fn_def
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1291
    using `0 < a` power_mono[of a] assms by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1292
  have v2: "\<And> t. (f t) ^ n * (indicator_fn {w . w \<in> space M \<and> a \<le> f w}) t \<le> \<bar>f t\<bar> ^ n"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1293
    unfolding indicator_fn_def 
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1294
    using power_mono[of a _ n] abs_ge_self `a > 0` 
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1295
    by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1296
  have "{w \<in> space M. a \<le> f w} \<inter> space M = {w . a \<le> f w} \<inter> space M"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1297
    using Collect_eq by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1298
  from Int_absorb2[OF sets_into_space[OF w]] `0 < a ^ n` sets_into_space[OF w] w this
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1299
  have "(a ^ n) * (measure M ((f -` {y . a \<le> y}) \<inter> space M)) =
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1300
        (a ^ n) * measure M {w . w \<in> space M \<and> a \<le> f w}"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1301
    unfolding vimage_Collect_eq[of f] by simp
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1302
  also have "\<dots> = integral (\<lambda> t. a ^ n * (indicator_fn {w . w \<in> space M \<and> a \<le> f w}) t)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1303
    using integral_cmul_indicator[OF w] i by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1304
  also have "\<dots> \<le> integral (\<lambda> t. \<bar> f t \<bar> ^ n)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1305
    apply (rule integral_mono)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1306
    using integral_cmul_indicator[OF w]
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1307
      `integrable (\<lambda> x. \<bar>f x\<bar> ^ n)` real_le_trans[OF v1 v2] by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1308
  finally show "measure M (f -` {a ..} \<inter> space M) \<le> integral (\<lambda>x. \<bar>f x\<bar>^n) / a^n"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1309
    unfolding atLeast_def
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1310
    by (auto intro!: mult_imp_le_div_pos[OF `0 < a ^ n`], simp add: real_mult_commute)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1311
qed
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1312
35748
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1313
section "Lebesgue integration on countable spaces"
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1314
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1315
lemma nnfis_on_countable:
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1316
  assumes borel: "f \<in> borel_measurable M"
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1317
  and bij: "bij_betw enum S (f ` space M - {0})"
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1318
  and enum_zero: "enum ` (-S) \<subseteq> {0}"
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1319
  and nn_enum: "\<And>n. 0 \<le> enum n"
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1320
  and sums: "(\<lambda>r. enum r * measure M (f -` {enum r} \<inter> space M)) sums x" (is "?sum sums x")
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1321
  shows "x \<in> nnfis f"
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1322
proof -
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1323
  have inj_enum: "inj_on enum S"
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1324
    and range_enum: "enum ` S = f ` space M - {0}"
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1325
    using bij by (auto simp: bij_betw_def)
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1326
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1327
  let "?x n z" = "\<Sum>i = 0..<n. enum i * indicator_fn (f -` {enum i} \<inter> space M) z"
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1328
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1329
  show ?thesis
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1330
  proof (rule nnfis_mon_conv)
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1331
    show "(\<lambda>n. \<Sum>i = 0..<n. ?sum i) ----> x" using sums unfolding sums_def .
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1332
  next
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1333
    fix n
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1334
    show "(\<Sum>i = 0..<n. ?sum i) \<in> nnfis (?x n)"
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1335
    proof (induct n)
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1336
      case 0 thus ?case by (simp add: nnfis_0)
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1337
    next
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1338
      case (Suc n) thus ?case using nn_enum
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1339
        by (auto intro!: nnfis_add nnfis_times psfis_nnfis[OF psfis_indicator] borel_measurable_vimage[OF borel])
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1340
    qed
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1341
  next
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1342
    show "mono_convergent ?x f (space M)"
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1343
    proof (rule mono_convergentI)
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1344
      fix x
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1345
      show "incseq (\<lambda>n. ?x n x)"
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1346
        by (rule incseq_SucI, auto simp: indicator_fn_def nn_enum)
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1347
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1348
      have fin: "\<And>n. finite (enum ` ({0..<n} \<inter> S))" by auto
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1349
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1350
      assume "x \<in> space M"
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1351
      hence "f x \<in> enum ` S \<or> f x = 0" using range_enum by auto
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1352
      thus "(\<lambda>n. ?x n x) ----> f x"
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1353
      proof (rule disjE)
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1354
        assume "f x \<in> enum ` S"
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1355
        then obtain i where "i \<in> S" and "f x = enum i" by auto
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1356
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1357
        { fix n
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1358
          have sum_ranges:
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1359
            "i < n \<Longrightarrow> enum`({0..<n} \<inter> S) \<inter> {z. enum i = z \<and> x\<in>space M} = {enum i}"
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1360
            "\<not> i < n \<Longrightarrow> enum`({0..<n} \<inter> S) \<inter> {z. enum i = z \<and> x\<in>space M} = {}"
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1361
            using `x \<in> space M` `i \<in> S` inj_enum[THEN inj_on_iff] by auto
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1362
          have "?x n x =
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1363
            (\<Sum>i \<in> {0..<n} \<inter> S. enum i * indicator_fn (f -` {enum i} \<inter> space M) x)"
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1364
            using enum_zero by (auto intro!: setsum_mono_zero_cong_right)
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1365
          also have "... =
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1366
            (\<Sum>z \<in> enum`({0..<n} \<inter> S). z * indicator_fn (f -` {z} \<inter> space M) x)"
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1367
            using inj_enum[THEN subset_inj_on] by (auto simp: setsum_reindex)
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1368
          also have "... = (if i < n then f x else 0)"
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1369
            unfolding indicator_fn_def if_distrib[where x=1 and y=0]
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1370
              setsum_cases[OF fin]
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1371
            using sum_ranges `f x = enum i`
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1372
            by auto
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1373
          finally have "?x n x = (if i < n then f x else 0)" . }
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1374
        note sum_equals_if = this
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1375
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1376
        show ?thesis unfolding sum_equals_if
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1377
          by (rule LIMSEQ_offset[where k="i + 1"]) (auto intro!: LIMSEQ_const)
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1378
      next
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1379
        assume "f x = 0"
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1380
        { fix n have "?x n x = 0"
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1381
            unfolding indicator_fn_def if_distrib[where x=1 and y=0]
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1382
              setsum_cases[OF finite_atLeastLessThan]
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1383
            using `f x = 0` `x \<in> space M`
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1384
            by (auto split: split_if) }
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1385
        thus ?thesis using `f x = 0` by (auto intro!: LIMSEQ_const)
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1386
      qed
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1387
    qed
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1388
  qed
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1389
qed
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1390
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1391
lemma integral_on_countable:
35833
7b7ae5aa396d Added product measure space
hoelzl
parents: 35748
diff changeset
  1392
  fixes enum :: "nat \<Rightarrow> real"
35748
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1393
  assumes borel: "f \<in> borel_measurable M"
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1394
  and bij: "bij_betw enum S (f ` space M)"
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1395
  and enum_zero: "enum ` (-S) \<subseteq> {0}"
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1396
  and abs_summable: "summable (\<lambda>r. \<bar>enum r * measure M (f -` {enum r} \<inter> space M)\<bar>)"
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1397
  shows "integrable f"
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1398
  and "integral f = (\<Sum>r. enum r * measure M (f -` {enum r} \<inter> space M))" (is "_ = suminf (?sum f enum)")
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1399
proof -
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1400
  { fix f enum
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1401
    assume borel: "f \<in> borel_measurable M"
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1402
      and bij: "bij_betw enum S (f ` space M)"
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1403
      and enum_zero: "enum ` (-S) \<subseteq> {0}"
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1404
      and abs_summable: "summable (\<lambda>r. \<bar>enum r * measure M (f -` {enum r} \<inter> space M)\<bar>)"
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1405
    have inj_enum: "inj_on enum S" and range_enum: "f ` space M = enum ` S"
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1406
      using bij unfolding bij_betw_def by auto
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1407
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1408
    have [simp, intro]: "\<And>X. 0 \<le> measure M (f -` {X} \<inter> space M)"
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1409
      by (rule positive, rule borel_measurable_vimage[OF borel])
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1410
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1411
    have "(\<Sum>r. ?sum (pos_part f) (pos_part enum) r) \<in> nnfis (pos_part f) \<and>
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1412
          summable (\<lambda>r. ?sum (pos_part f) (pos_part enum) r)"
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1413
    proof (rule conjI, rule nnfis_on_countable)
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1414
      have pos_f_image: "pos_part f ` space M - {0} = f ` space M \<inter> {0<..}"
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1415
        unfolding pos_part_def max_def by auto
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1416
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1417
      show "bij_betw (pos_part enum) {x \<in> S. 0 < enum x} (pos_part f ` space M - {0})"
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1418
        unfolding bij_betw_def pos_f_image
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1419
        unfolding pos_part_def max_def range_enum
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1420
        by (auto intro!: inj_onI simp: inj_enum[THEN inj_on_eq_iff])
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1421
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1422
      show "\<And>n. 0 \<le> pos_part enum n" unfolding pos_part_def max_def by auto
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1423
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1424
      show "pos_part f \<in> borel_measurable M"
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1425
        by (rule pos_part_borel_measurable[OF borel])
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1426
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1427
      show "pos_part enum ` (- {x \<in> S. 0 < enum x}) \<subseteq> {0}"
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1428
        unfolding pos_part_def max_def using enum_zero by auto
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1429
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1430
      show "summable (\<lambda>r. ?sum (pos_part f) (pos_part enum) r)"
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1431
      proof (rule summable_comparison_test[OF _ abs_summable], safe intro!: exI[of _ 0])
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1432
        fix n :: nat
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1433
        have "pos_part enum n \<noteq> 0 \<Longrightarrow> (pos_part f -` {enum n} \<inter> space M) =
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1434
          (if 0 < enum n then (f -` {enum n} \<inter> space M) else {})"
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1435
          unfolding pos_part_def max_def by (auto split: split_if_asm)
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1436
        thus "norm (?sum (pos_part f) (pos_part enum) n) \<le> \<bar>?sum f enum n \<bar>"
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1437
          by (cases "pos_part enum n = 0",
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1438
            auto simp: pos_part_def max_def abs_mult not_le split: split_if_asm intro!: mult_nonpos_nonneg)
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1439
      qed
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1440
      thus "(\<lambda>r. ?sum (pos_part f) (pos_part enum) r) sums (\<Sum>r. ?sum (pos_part f) (pos_part enum) r)"
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1441
        by (rule summable_sums)
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1442
    qed }
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1443
  note pos = this
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1444
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1445
  note pos_part = pos[OF assms(1-4)]
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1446
  moreover
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1447
  have neg_part_to_pos_part:
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1448
    "\<And>f :: _ \<Rightarrow> real. neg_part f = pos_part (uminus \<circ> f)"
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1449
    by (auto simp: pos_part_def neg_part_def min_def max_def expand_fun_eq)
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1450
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1451
  have neg_part: "(\<Sum>r. ?sum (neg_part f) (neg_part enum) r) \<in> nnfis (neg_part f) \<and>
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1452
    summable (\<lambda>r. ?sum (neg_part f) (neg_part enum) r)"
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1453
    unfolding neg_part_to_pos_part
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1454
  proof (rule pos)
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1455
    show "uminus \<circ> f \<in> borel_measurable M" unfolding comp_def
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1456
      by (rule borel_measurable_uminus_borel_measurable[OF borel])
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1457
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1458
    show "bij_betw (uminus \<circ> enum) S ((uminus \<circ> f) ` space M)"
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1459
      using bij unfolding bij_betw_def
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1460
      by (auto intro!: comp_inj_on simp: image_compose)
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1461
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1462
    show "(uminus \<circ> enum) ` (- S) \<subseteq> {0}"
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1463
      using enum_zero by auto
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1464
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1465
    have minus_image: "\<And>r. (uminus \<circ> f) -` {(uminus \<circ> enum) r} \<inter> space M = f -` {enum r} \<inter> space M"
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1466
      by auto
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1467
    show "summable (\<lambda>r. \<bar>(uminus \<circ> enum) r * measure_space.measure M ((uminus \<circ> f) -` {(uminus \<circ> enum) r} \<inter> space M)\<bar>)"
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1468
      unfolding minus_image using abs_summable by simp
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1469
  qed
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1470
  ultimately show "integrable f" unfolding integrable_def by auto
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1471
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1472
  { fix r
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1473
    have "?sum (pos_part f) (pos_part enum) r - ?sum (neg_part f) (neg_part enum) r = ?sum f enum r"
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1474
    proof (cases rule: linorder_cases)
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1475
      assume "0 < enum r"
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1476
      hence "pos_part f -` {enum r} \<inter> space M = f -` {enum r} \<inter> space M"
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1477
        unfolding pos_part_def max_def by (auto split: split_if_asm)
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1478
      with `0 < enum r` show ?thesis unfolding pos_part_def neg_part_def min_def max_def expand_fun_eq
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1479
        by auto
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1480
    next
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1481
      assume "enum r < 0"
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1482
      hence "neg_part f -` {- enum r} \<inter> space M = f -` {enum r} \<inter> space M"
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1483
        unfolding neg_part_def min_def by (auto split: split_if_asm)
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1484
      with `enum r < 0` show ?thesis unfolding pos_part_def neg_part_def min_def max_def expand_fun_eq
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1485
        by auto
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1486
    qed (simp add: neg_part_def pos_part_def) }
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1487
  note sum_diff_eq_sum = this
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1488
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1489
  have "(\<Sum>r. ?sum (pos_part f) (pos_part enum) r) - (\<Sum>r. ?sum (neg_part f) (neg_part enum) r)
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1490
    = (\<Sum>r. ?sum (pos_part f) (pos_part enum) r - ?sum (neg_part f) (neg_part enum) r)"
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1491
    using neg_part pos_part by (auto intro: suminf_diff)
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1492
  also have "... = (\<Sum>r. ?sum f enum r)" unfolding sum_diff_eq_sum ..
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1493
  finally show "integral f = suminf (?sum f enum)"
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1494
    unfolding integral_def using pos_part neg_part
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1495
    by (auto dest: the_nnfis)
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1496
qed
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1497
35692
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
  1498
section "Lebesgue integration on finite space"
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
  1499
35582
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1500
lemma integral_finite_on_sets:
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1501
  assumes "f \<in> borel_measurable M" and "finite (space M)" and "a \<in> sets M"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1502
  shows "integral (\<lambda>x. f x * indicator_fn a x) =
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1503
    (\<Sum> r \<in> f`a. r * measure M (f -` {r} \<inter> a))" (is "integral ?f = _")
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1504
proof -
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1505
  { fix x assume "x \<in> a"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1506
    with assms have "f -` {f x} \<inter> space M \<in> sets M"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1507
      by (subst Int_commute)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1508
         (auto simp: vimage_def Int_def
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1509
               intro!: borel_measurable_const
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1510
                      borel_measurable_eq_borel_measurable)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1511
    from Int[OF this assms(3)]
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1512
         sets_into_space[OF assms(3), THEN Int_absorb1]
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1513
    have "f -` {f x} \<inter> a \<in> sets M" by (simp add: Int_assoc) }
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1514
  note vimage_f = this
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1515
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1516
  have "finite a"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1517
    using assms(2,3) sets_into_space
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1518
    by (auto intro: finite_subset)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1519
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1520
  have "integral (\<lambda>x. f x * indicator_fn a x) =
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1521
    integral (\<lambda>x. \<Sum>i\<in>f ` a. i * indicator_fn (f -` {i} \<inter> a) x)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1522
    (is "_ = integral (\<lambda>x. setsum (?f x) _)")
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1523
    unfolding indicator_fn_def if_distrib
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1524
    using `finite a` by (auto simp: setsum_cases intro!: integral_cong)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1525
  also have "\<dots> = (\<Sum>i\<in>f`a. integral (\<lambda>x. ?f x i))"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1526
  proof (rule integral_setsum, safe)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1527
    fix n x assume "x \<in> a"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1528
    thus "integrable (\<lambda>y. ?f y (f x))"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1529
      using integral_indicator_fn(2)[OF vimage_f]
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1530
      by (auto intro!: integral_times_const)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1531
  qed (simp add: `finite a`)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1532
  also have "\<dots> = (\<Sum>i\<in>f`a. i * measure M (f -` {i} \<inter> a))"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1533
    using integral_cmul_indicator[OF vimage_f]
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1534
    by (auto intro!: setsum_cong)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1535
  finally show ?thesis .
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1536
qed
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1537
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1538
lemma integral_finite:
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1539
  assumes "f \<in> borel_measurable M" and "finite (space M)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1540
  shows "integral f = (\<Sum> r \<in> f ` space M. r * measure M (f -` {r} \<inter> space M))"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1541
  using integral_finite_on_sets[OF assms top]
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1542
    integral_cong[of "\<lambda>x. f x * indicator_fn (space M) x" f]
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1543
  by (auto simp add: indicator_fn_def)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1544
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1545
lemma integral_finite_singleton:
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1546
  assumes fin: "finite (space M)" and "Pow (space M) = sets M"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1547
  shows "integral f = (\<Sum>x \<in> space M. f x * measure M {x})"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1548
proof -
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1549
  have "f \<in> borel_measurable M"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1550
    unfolding borel_measurable_le_iff
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1551
    using assms by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1552
  { fix r let ?x = "f -` {r} \<inter> space M"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1553
    have "?x \<subseteq> space M" by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1554
    with assms have "measure M ?x = (\<Sum>i \<in> ?x. measure M {i})"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1555
      by (auto intro!: measure_real_sum_image) }
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1556
  note measure_eq_setsum = this
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1557
  show ?thesis
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1558
    unfolding integral_finite[OF `f \<in> borel_measurable M` fin]
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1559
      measure_eq_setsum setsum_right_distrib
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1560
    apply (subst setsum_Sigma)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1561
    apply (simp add: assms)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1562
    apply (simp add: assms)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1563
  proof (rule setsum_reindex_cong[symmetric])
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1564
    fix a assume "a \<in> Sigma (f ` space M) (\<lambda>x. f -` {x} \<inter> space M)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1565
    thus "(\<lambda>(x, y). x * measure M {y}) a = f (snd a) * measure_space.measure M {snd a}"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1566
      by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1567
  qed (auto intro!: image_eqI inj_onI)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1568
qed
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1569
35692
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
  1570
section "Radon–Nikodym derivative"
35582
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1571
35692
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
  1572
definition
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
  1573
  "RN_deriv v \<equiv> SOME f. measure_space (M\<lparr>measure := v\<rparr>) \<and>
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
  1574
    f \<in> borel_measurable M \<and>
f1315bbf1bc9 Moved theorems in Lebesgue to the right places
hoelzl
parents: 35582
diff changeset
  1575
    (\<forall>a \<in> sets M. (integral (\<lambda>x. f x * indicator_fn a x) = v a))"
35582
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1576
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1577
lemma RN_deriv_finite_singleton:
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1578
  fixes v :: "'a set \<Rightarrow> real"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1579
  assumes finite: "finite (space M)" and Pow: "Pow (space M) = sets M"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1580
  and ms_v: "measure_space (M\<lparr>measure := v\<rparr>)"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1581
  and eq_0: "\<And>x. measure M {x} = 0 \<Longrightarrow> v {x} = 0"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1582
  and "x \<in> space M" and "measure M {x} \<noteq> 0"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1583
  shows "RN_deriv v x = v {x} / (measure M {x})" (is "_ = ?v x")
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1584
  unfolding RN_deriv_def
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1585
proof (rule someI2_ex[where Q = "\<lambda>f. f x = ?v x"], rule exI[where x = ?v], safe)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1586
  show "(\<lambda>a. v {a} / measure_space.measure M {a}) \<in> borel_measurable M"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1587
    unfolding borel_measurable_le_iff using Pow by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1588
next
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1589
  fix a assume "a \<in> sets M"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1590
  hence "a \<subseteq> space M" and "finite a"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1591
    using sets_into_space finite by (auto intro: finite_subset)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1592
  have *: "\<And>x a. (if measure M {x} = 0 then 0 else v {x} * indicator_fn a x) =
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1593
    v {x} * indicator_fn a x" using eq_0 by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1594
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1595
  from measure_space.measure_real_sum_image[OF ms_v, of a]
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1596
    Pow `a \<in> sets M` sets_into_space `finite a`
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1597
  have "v a = (\<Sum>x\<in>a. v {x})" by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1598
  thus "integral (\<lambda>x. v {x} / measure_space.measure M {x} * indicator_fn a x) = v a"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1599
    apply (simp add: eq_0 integral_finite_singleton[OF finite Pow])
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1600
    apply (unfold divide_1)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1601
    by (simp add: * indicator_fn_def if_distrib setsum_cases finite `a \<subseteq> space M` Int_absorb1)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1602
next
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1603
  fix w assume "w \<in> borel_measurable M"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1604
  assume int_eq_v: "\<forall>a\<in>sets M. integral (\<lambda>x. w x * indicator_fn a x) = v a"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1605
  have "{x} \<in> sets M" using Pow `x \<in> space M` by auto
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1606
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1607
  have "w x * measure M {x} =
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1608
    (\<Sum>y\<in>space M. w y * indicator_fn {x} y * measure M {y})"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1609
    apply (subst (3) mult_commute)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1610
    unfolding indicator_fn_def if_distrib setsum_cases[OF finite]
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1611
    using `x \<in> space M` by simp
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1612
  also have "... = v {x}"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1613
    using int_eq_v[rule_format, OF `{x} \<in> sets M`]
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1614
    by (simp add: integral_finite_singleton[OF finite Pow])
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1615
  finally show "w x = v {x} / measure M {x}"
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1616
    using `measure M {x} \<noteq> 0` by (simp add: eq_divide_eq)
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1617
qed fact
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1618
35748
5f35613d9a65 Equality of integral and infinite sum.
hoelzl
parents: 35692
diff changeset
  1619
end
35582
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1620
b16d99a72dc9 Add Lebesgue integral and probability space.
hoelzl
parents:
diff changeset
  1621
end