src/HOL/Analysis/Radon_Nikodym.thy
author haftmann
Wed, 09 Oct 2019 14:51:54 +0000
changeset 70817 dd675800469d
parent 70136 f03a01a18c6e
child 74362 0135a0c77b64
permissions -rw-r--r--
dedicated fact collections for algebraic simplification rules potentially splitting goals
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
63627
6ddb43c6b711 rename HOL-Multivariate_Analysis to HOL-Analysis.
hoelzl
parents: 63626
diff changeset
     1
(*  Title:      HOL/Analysis/Radon_Nikodym.thy
42067
66c8281349ec standardized headers
hoelzl
parents: 41981
diff changeset
     2
    Author:     Johannes Hölzl, TU München
66c8281349ec standardized headers
hoelzl
parents: 41981
diff changeset
     3
*)
66c8281349ec standardized headers
hoelzl
parents: 41981
diff changeset
     4
69730
0c3dcb3a17f6 tagged 5 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
     5
section \<open>Radon-Nikod{\'y}m Derivative\<close>
42067
66c8281349ec standardized headers
hoelzl
parents: 41981
diff changeset
     6
38656
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
     7
theory Radon_Nikodym
56993
e5366291d6aa introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents: 56537
diff changeset
     8
imports Bochner_Integration
38656
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
     9
begin
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
    10
70136
f03a01a18c6e modernized tags: default scope excludes proof;
wenzelm
parents: 69745
diff changeset
    11
definition\<^marker>\<open>tag important\<close> diff_measure :: "'a measure \<Rightarrow> 'a measure \<Rightarrow> 'a measure"
63329
6b26c378ab35 Probability: tuned headers; cleanup Radon_Nikodym
hoelzl
parents: 63040
diff changeset
    12
where
6b26c378ab35 Probability: tuned headers; cleanup Radon_Nikodym
hoelzl
parents: 63040
diff changeset
    13
  "diff_measure M N = measure_of (space M) (sets M) (\<lambda>A. emeasure M A - emeasure N A)"
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
    14
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 61169
diff changeset
    15
lemma
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
    16
  shows space_diff_measure[simp]: "space (diff_measure M N) = space M"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
    17
    and sets_diff_measure[simp]: "sets (diff_measure M N) = sets M"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
    18
  by (auto simp: diff_measure_def)
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
    19
69730
0c3dcb3a17f6 tagged 5 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
    20
lemma emeasure_diff_measure:
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
    21
  assumes fin: "finite_measure M" "finite_measure N" and sets_eq: "sets M = sets N"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
    22
  assumes pos: "\<And>A. A \<in> sets M \<Longrightarrow> emeasure N A \<le> emeasure M A" and A: "A \<in> sets M"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
    23
  shows "emeasure (diff_measure M N) A = emeasure M A - emeasure N A" (is "_ = ?\<mu> A")
69730
0c3dcb3a17f6 tagged 5 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
    24
  unfolding diff_measure_def
0c3dcb3a17f6 tagged 5 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
    25
proof (rule emeasure_measure_of_sigma)
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
    26
  show "sigma_algebra (space M) (sets M)" ..
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
    27
  show "positive (sets M) ?\<mu>"
62975
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
    28
    using pos by (simp add: positive_def)
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
    29
  show "countably_additive (sets M) ?\<mu>"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
    30
  proof (rule countably_additiveI)
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
    31
    fix A :: "nat \<Rightarrow> _"  assume A: "range A \<subseteq> sets M" and "disjoint_family A"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
    32
    then have suminf:
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
    33
      "(\<Sum>i. emeasure M (A i)) = emeasure M (\<Union>i. A i)"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
    34
      "(\<Sum>i. emeasure N (A i)) = emeasure N (\<Union>i. A i)"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
    35
      by (simp_all add: suminf_emeasure sets_eq)
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
    36
    with A have "(\<Sum>i. emeasure M (A i) - emeasure N (A i)) =
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
    37
      (\<Sum>i. emeasure M (A i)) - (\<Sum>i. emeasure N (A i))"
62975
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
    38
      using fin pos[of "A _"]
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
    39
      by (intro ennreal_suminf_minus)
63329
6b26c378ab35 Probability: tuned headers; cleanup Radon_Nikodym
hoelzl
parents: 63040
diff changeset
    40
         (auto simp: sets_eq finite_measure.emeasure_eq_measure suminf_emeasure)
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
    41
    then show "(\<Sum>i. emeasure M (A i) - emeasure N (A i)) =
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
    42
      emeasure M (\<Union>i. A i) - emeasure N (\<Union>i. A i) "
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
    43
      by (simp add: suminf)
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
    44
  qed
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
    45
qed fact
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
    46
64911
f0e07600de47 isabelle update_cartouches -c -t;
wenzelm
parents: 64283
diff changeset
    47
text \<open>An equivalent characterization of sigma-finite spaces is the existence of integrable
64283
979cdfdf7a79 HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents: 63627
diff changeset
    48
positive functions (or, still equivalently, the existence of a probability measure which is in
64911
f0e07600de47 isabelle update_cartouches -c -t;
wenzelm
parents: 64283
diff changeset
    49
the same measure class as the original measure).\<close>
64283
979cdfdf7a79 HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents: 63627
diff changeset
    50
69730
0c3dcb3a17f6 tagged 5 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
    51
proposition (in sigma_finite_measure) obtain_positive_integrable_function:
64283
979cdfdf7a79 HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents: 63627
diff changeset
    52
  obtains f::"'a \<Rightarrow> real" where
979cdfdf7a79 HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents: 63627
diff changeset
    53
    "f \<in> borel_measurable M"
979cdfdf7a79 HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents: 63627
diff changeset
    54
    "\<And>x. f x > 0"
979cdfdf7a79 HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents: 63627
diff changeset
    55
    "\<And>x. f x \<le> 1"
979cdfdf7a79 HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents: 63627
diff changeset
    56
    "integrable M f"
979cdfdf7a79 HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents: 63627
diff changeset
    57
proof -
979cdfdf7a79 HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents: 63627
diff changeset
    58
  obtain A :: "nat \<Rightarrow> 'a set" where "range A \<subseteq> sets M" "(\<Union>i. A i) = space M" "\<And>i. emeasure M (A i) \<noteq> \<infinity>"
979cdfdf7a79 HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents: 63627
diff changeset
    59
    using sigma_finite by auto
979cdfdf7a79 HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents: 63627
diff changeset
    60
  then have [measurable]:"A n \<in> sets M" for n by auto
979cdfdf7a79 HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents: 63627
diff changeset
    61
  define g where "g = (\<lambda>x. (\<Sum>n. (1/2)^(Suc n) * indicator (A n) x / (1+ measure M (A n))))"
979cdfdf7a79 HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents: 63627
diff changeset
    62
  have [measurable]: "g \<in> borel_measurable M" unfolding g_def by auto
979cdfdf7a79 HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents: 63627
diff changeset
    63
  have *: "summable (\<lambda>n. (1/2)^(Suc n) * indicator (A n) x / (1+ measure M (A n)))" for x
979cdfdf7a79 HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents: 63627
diff changeset
    64
    apply (rule summable_comparison_test'[of "\<lambda>n. (1/2)^(Suc n)" 0])
979cdfdf7a79 HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents: 63627
diff changeset
    65
    using power_half_series summable_def by (auto simp add: indicator_def divide_simps)
979cdfdf7a79 HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents: 63627
diff changeset
    66
  have "g x \<le> (\<Sum>n. (1/2)^(Suc n))" for x unfolding g_def
979cdfdf7a79 HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents: 63627
diff changeset
    67
    apply (rule suminf_le) using * power_half_series summable_def by (auto simp add: indicator_def divide_simps)
979cdfdf7a79 HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents: 63627
diff changeset
    68
  then have g_le_1: "g x \<le> 1" for x using power_half_series sums_unique by fastforce
979cdfdf7a79 HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents: 63627
diff changeset
    69
979cdfdf7a79 HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents: 63627
diff changeset
    70
  have g_pos: "g x > 0" if "x \<in> space M" for x
979cdfdf7a79 HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents: 63627
diff changeset
    71
  unfolding g_def proof (subst suminf_pos_iff[OF *[of x]], auto)
64911
f0e07600de47 isabelle update_cartouches -c -t;
wenzelm
parents: 64283
diff changeset
    72
    obtain i where "x \<in> A i" using \<open>(\<Union>i. A i) = space M\<close> \<open>x \<in> space M\<close> by auto
64283
979cdfdf7a79 HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents: 63627
diff changeset
    73
    then have "0 < (1 / 2) ^ Suc i * indicator (A i) x / (1 + Sigma_Algebra.measure M (A i))"
979cdfdf7a79 HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents: 63627
diff changeset
    74
      unfolding indicator_def apply (auto simp add: divide_simps) using measure_nonneg[of M "A i"]
979cdfdf7a79 HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents: 63627
diff changeset
    75
      by (auto, meson add_nonneg_nonneg linorder_not_le mult_nonneg_nonneg zero_le_numeral zero_le_one zero_le_power)
979cdfdf7a79 HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents: 63627
diff changeset
    76
    then show "\<exists>i. 0 < (1 / 2) ^ i * indicator (A i) x / (2 + 2 * Sigma_Algebra.measure M (A i))"
979cdfdf7a79 HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents: 63627
diff changeset
    77
      by auto
979cdfdf7a79 HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents: 63627
diff changeset
    78
  qed
979cdfdf7a79 HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents: 63627
diff changeset
    79
979cdfdf7a79 HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents: 63627
diff changeset
    80
  have "integrable M g"
979cdfdf7a79 HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents: 63627
diff changeset
    81
  unfolding g_def proof (rule integrable_suminf)
979cdfdf7a79 HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents: 63627
diff changeset
    82
    fix n
979cdfdf7a79 HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents: 63627
diff changeset
    83
    show "integrable M (\<lambda>x. (1 / 2) ^ Suc n * indicator (A n) x / (1 + Sigma_Algebra.measure M (A n)))"
64911
f0e07600de47 isabelle update_cartouches -c -t;
wenzelm
parents: 64283
diff changeset
    84
      using \<open>emeasure M (A n) \<noteq> \<infinity>\<close>
64283
979cdfdf7a79 HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents: 63627
diff changeset
    85
      by (auto intro!: integrable_mult_right integrable_divide_zero integrable_real_indicator simp add: top.not_eq_extremum)
979cdfdf7a79 HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents: 63627
diff changeset
    86
  next
979cdfdf7a79 HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents: 63627
diff changeset
    87
    show "AE x in M. summable (\<lambda>n. norm ((1 / 2) ^ Suc n * indicator (A n) x / (1 + Sigma_Algebra.measure M (A n))))"
979cdfdf7a79 HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents: 63627
diff changeset
    88
      using * by auto
979cdfdf7a79 HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents: 63627
diff changeset
    89
    show "summable (\<lambda>n. (\<integral>x. norm ((1 / 2) ^ Suc n * indicator (A n) x / (1 + Sigma_Algebra.measure M (A n))) \<partial>M))"
979cdfdf7a79 HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents: 63627
diff changeset
    90
      apply (rule summable_comparison_test'[of "\<lambda>n. (1/2)^(Suc n)" 0], auto)
979cdfdf7a79 HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents: 63627
diff changeset
    91
      using power_half_series summable_def apply auto[1]
70817
dd675800469d dedicated fact collections for algebraic simplification rules potentially splitting goals
haftmann
parents: 70136
diff changeset
    92
      apply (auto simp add: field_split_simps) using measure_nonneg[of M] not_less by fastforce
64283
979cdfdf7a79 HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents: 63627
diff changeset
    93
  qed
979cdfdf7a79 HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents: 63627
diff changeset
    94
979cdfdf7a79 HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents: 63627
diff changeset
    95
  define f where "f = (\<lambda>x. if x \<in> space M then g x else 1)"
979cdfdf7a79 HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents: 63627
diff changeset
    96
  have "f x > 0" for x unfolding f_def using g_pos by auto
979cdfdf7a79 HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents: 63627
diff changeset
    97
  moreover have "f x \<le> 1" for x unfolding f_def using g_le_1 by auto
979cdfdf7a79 HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents: 63627
diff changeset
    98
  moreover have [measurable]: "f \<in> borel_measurable M" unfolding f_def by auto
979cdfdf7a79 HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents: 63627
diff changeset
    99
  moreover have "integrable M f"
64911
f0e07600de47 isabelle update_cartouches -c -t;
wenzelm
parents: 64283
diff changeset
   100
    apply (subst integrable_cong[of _ _ _ g]) unfolding f_def using \<open>integrable M g\<close> by auto
64283
979cdfdf7a79 HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents: 63627
diff changeset
   101
  ultimately show "(\<And>f. f \<in> borel_measurable M \<Longrightarrow> (\<And>x. 0 < f x) \<Longrightarrow> (\<And>x. f x \<le> 1) \<Longrightarrow> integrable M f \<Longrightarrow> thesis) \<Longrightarrow> thesis"
979cdfdf7a79 HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents: 63627
diff changeset
   102
    by (meson that)
979cdfdf7a79 HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents: 63627
diff changeset
   103
qed
979cdfdf7a79 HOL-Probability: move conditional expectation from AFP/Ergodic_Theory
hoelzl
parents: 63627
diff changeset
   104
69730
0c3dcb3a17f6 tagged 5 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
   105
lemma (in sigma_finite_measure) Ex_finite_integrable_function:
62975
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   106
  "\<exists>h\<in>borel_measurable M. integral\<^sup>N M h \<noteq> \<infinity> \<and> (\<forall>x\<in>space M. 0 < h x \<and> h x < \<infinity>)"
69730
0c3dcb3a17f6 tagged 5 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
   107
proof -
38656
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   108
  obtain A :: "nat \<Rightarrow> 'a set" where
50003
8c213922ed49 use measurability prover
hoelzl
parents: 49785
diff changeset
   109
    range[measurable]: "range A \<subseteq> sets M" and
38656
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   110
    space: "(\<Union>i. A i) = space M" and
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   111
    measure: "\<And>i. emeasure M (A i) \<noteq> \<infinity>" and
38656
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   112
    disjoint: "disjoint_family A"
62343
24106dc44def prefer abbreviations for compound operators INFIMUM and SUPREMUM
haftmann
parents: 62083
diff changeset
   113
    using sigma_finite_disjoint by blast
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   114
  let ?B = "\<lambda>i. 2^Suc i * emeasure M (A i)"
63329
6b26c378ab35 Probability: tuned headers; cleanup Radon_Nikodym
hoelzl
parents: 63040
diff changeset
   115
  have [measurable]: "\<And>i. A i \<in> sets M"
6b26c378ab35 Probability: tuned headers; cleanup Radon_Nikodym
hoelzl
parents: 63040
diff changeset
   116
    using range by fastforce+
38656
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   117
  have "\<forall>i. \<exists>x. 0 < x \<and> x < inverse (?B i)"
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   118
  proof
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   119
    fix i show "\<exists>x. 0 < x \<and> x < inverse (?B i)"
62975
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   120
      using measure[of i]
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   121
      by (auto intro!: dense simp: ennreal_inverse_positive ennreal_mult_eq_top_iff power_eq_top_ennreal)
38656
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   122
  qed
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   123
  from choice[OF this] obtain n where n: "\<And>i. 0 < n i"
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   124
    "\<And>i. n i < inverse (2^Suc i * emeasure M (A i))" by auto
41981
cdf7693bbe08 reworked Probability theory: measures are not type restricted to positive extended reals
hoelzl
parents: 41832
diff changeset
   125
  { fix i have "0 \<le> n i" using n(1)[of i] by auto } note pos = this
46731
5302e932d1e5 avoid undeclared variables in let bindings;
wenzelm
parents: 45777
diff changeset
   126
  let ?h = "\<lambda>x. \<Sum>i. n i * indicator (A i) x"
38656
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   127
  show ?thesis
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   128
  proof (safe intro!: bexI[of _ ?h] del: notI)
63329
6b26c378ab35 Probability: tuned headers; cleanup Radon_Nikodym
hoelzl
parents: 63040
diff changeset
   129
    have "integral\<^sup>N M ?h = (\<Sum>i. n i * emeasure M (A i))" using pos
56996
891e992e510f renamed positive_integral to nn_integral
hoelzl
parents: 56994
diff changeset
   130
      by (simp add: nn_integral_suminf nn_integral_cmult_indicator)
62975
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   131
    also have "\<dots> \<le> (\<Sum>i. ennreal ((1/2)^Suc i))"
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   132
    proof (intro suminf_le allI)
41981
cdf7693bbe08 reworked Probability theory: measures are not type restricted to positive extended reals
hoelzl
parents: 41832
diff changeset
   133
      fix N
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   134
      have "n N * emeasure M (A N) \<le> inverse (2^Suc N * emeasure M (A N)) * emeasure M (A N)"
62975
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   135
        using n[of N] by (intro mult_right_mono) auto
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   136
      also have "\<dots> = (1/2)^Suc N * (inverse (emeasure M (A N)) * emeasure M (A N))"
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   137
        using measure[of N]
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   138
        by (simp add: ennreal_inverse_power divide_ennreal_def ennreal_inverse_mult
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   139
                      power_eq_top_ennreal less_top[symmetric] mult_ac
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   140
                 del: power_Suc)
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   141
      also have "\<dots> \<le> inverse (ennreal 2) ^ Suc N"
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   142
        using measure[of N]
63329
6b26c378ab35 Probability: tuned headers; cleanup Radon_Nikodym
hoelzl
parents: 63040
diff changeset
   143
        by (cases "emeasure M (A N)"; cases "emeasure M (A N) = 0")
6b26c378ab35 Probability: tuned headers; cleanup Radon_Nikodym
hoelzl
parents: 63040
diff changeset
   144
           (auto simp: inverse_ennreal ennreal_mult[symmetric] divide_ennreal_def simp del: power_Suc)
62975
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   145
      also have "\<dots> = ennreal (inverse 2 ^ Suc N)"
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   146
        by (subst ennreal_power[symmetric], simp) (simp add: inverse_ennreal)
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   147
      finally show "n N * emeasure M (A N) \<le> ennreal ((1/2)^Suc N)"
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   148
        by simp
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   149
    qed auto
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   150
    also have "\<dots> < top"
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   151
      unfolding less_top[symmetric]
63329
6b26c378ab35 Probability: tuned headers; cleanup Radon_Nikodym
hoelzl
parents: 63040
diff changeset
   152
      by (rule ennreal_suminf_neq_top)
6b26c378ab35 Probability: tuned headers; cleanup Radon_Nikodym
hoelzl
parents: 63040
diff changeset
   153
         (auto simp: summable_geometric summable_Suc_iff simp del: power_Suc)
62975
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   154
    finally show "integral\<^sup>N M ?h \<noteq> \<infinity>"
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   155
      by (auto simp: top_unique)
38656
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   156
  next
41981
cdf7693bbe08 reworked Probability theory: measures are not type restricted to positive extended reals
hoelzl
parents: 41832
diff changeset
   157
    { fix x assume "x \<in> space M"
cdf7693bbe08 reworked Probability theory: measures are not type restricted to positive extended reals
hoelzl
parents: 41832
diff changeset
   158
      then obtain i where "x \<in> A i" using space[symmetric] by auto
cdf7693bbe08 reworked Probability theory: measures are not type restricted to positive extended reals
hoelzl
parents: 41832
diff changeset
   159
      with disjoint n have "?h x = n i"
cdf7693bbe08 reworked Probability theory: measures are not type restricted to positive extended reals
hoelzl
parents: 41832
diff changeset
   160
        by (auto intro!: suminf_cmult_indicator intro: less_imp_le)
62975
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   161
      then show "0 < ?h x" and "?h x < \<infinity>" using n[of i] by (auto simp: less_top[symmetric]) }
41981
cdf7693bbe08 reworked Probability theory: measures are not type restricted to positive extended reals
hoelzl
parents: 41832
diff changeset
   162
    note pos = this
50003
8c213922ed49 use measurability prover
hoelzl
parents: 49785
diff changeset
   163
  qed measurable
38656
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   164
qed
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   165
69683
8b3458ca0762 subsection is always %important
immler
parents: 69517
diff changeset
   166
subsection "Absolutely continuous"
40871
688f6ff859e1 Generalized simple_functionD and less_SUP_iff.
hoelzl
parents: 40859
diff changeset
   167
70136
f03a01a18c6e modernized tags: default scope excludes proof;
wenzelm
parents: 69745
diff changeset
   168
definition\<^marker>\<open>tag important\<close> absolutely_continuous :: "'a measure \<Rightarrow> 'a measure \<Rightarrow> bool" where
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   169
  "absolutely_continuous M N \<longleftrightarrow> null_sets M \<subseteq> null_sets N"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   170
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   171
lemma absolutely_continuousI_count_space: "absolutely_continuous (count_space A) M"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   172
  unfolding absolutely_continuous_def by (auto simp: null_sets_count_space)
38656
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   173
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   174
lemma absolutely_continuousI_density:
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   175
  "f \<in> borel_measurable M \<Longrightarrow> absolutely_continuous M (density M f)"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   176
  by (force simp add: absolutely_continuous_def null_sets_density_iff dest: AE_not_in)
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   177
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   178
lemma absolutely_continuousI_point_measure_finite:
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   179
  "(\<And>x. \<lbrakk> x \<in> A ; f x \<le> 0 \<rbrakk> \<Longrightarrow> g x \<le> 0) \<Longrightarrow> absolutely_continuous (point_measure A f) (point_measure A g)"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   180
  unfolding absolutely_continuous_def by (force simp: null_sets_point_measure_iff)
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   181
63330
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   182
lemma absolutely_continuousD:
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   183
  "absolutely_continuous M N \<Longrightarrow> A \<in> sets M \<Longrightarrow> emeasure M A = 0 \<Longrightarrow> emeasure N A = 0"
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   184
  by (auto simp: absolutely_continuous_def null_sets_def)
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   185
69730
0c3dcb3a17f6 tagged 5 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
   186
lemma absolutely_continuous_AE:
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   187
  assumes sets_eq: "sets M' = sets M"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   188
    and "absolutely_continuous M M'" "AE x in M. P x"
41981
cdf7693bbe08 reworked Probability theory: measures are not type restricted to positive extended reals
hoelzl
parents: 41832
diff changeset
   189
   shows "AE x in M'. P x"
69730
0c3dcb3a17f6 tagged 5 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
   190
proof -
61808
fc1556774cfe isabelle update_cartouches -c -t;
wenzelm
parents: 61610
diff changeset
   191
  from \<open>AE x in M. P x\<close> obtain N where N: "N \<in> null_sets M" "{x\<in>space M. \<not> P x} \<subseteq> N"
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   192
    unfolding eventually_ae_filter by auto
41981
cdf7693bbe08 reworked Probability theory: measures are not type restricted to positive extended reals
hoelzl
parents: 41832
diff changeset
   193
  show "AE x in M'. P x"
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   194
  proof (rule AE_I')
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   195
    show "{x\<in>space M'. \<not> P x} \<subseteq> N" using sets_eq_imp_space_eq[OF sets_eq] N(2) by simp
61808
fc1556774cfe isabelle update_cartouches -c -t;
wenzelm
parents: 61610
diff changeset
   196
    from \<open>absolutely_continuous M M'\<close> show "N \<in> null_sets M'"
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   197
      using N unfolding absolutely_continuous_def sets_eq null_sets_def by auto
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   198
  qed
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   199
qed
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   200
69683
8b3458ca0762 subsection is always %important
immler
parents: 69517
diff changeset
   201
subsection "Existence of the Radon-Nikodym derivative"
40871
688f6ff859e1 Generalized simple_functionD and less_SUP_iff.
hoelzl
parents: 40859
diff changeset
   202
69730
0c3dcb3a17f6 tagged 5 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
   203
proposition
69173
38beaaebe736 tagged 8 theories for the Analysis manual.
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 64911
diff changeset
   204
 (in finite_measure) Radon_Nikodym_finite_measure:
63330
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   205
  assumes "finite_measure N" and sets_eq[simp]: "sets N = sets M"
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   206
  assumes "absolutely_continuous M N"
63329
6b26c378ab35 Probability: tuned headers; cleanup Radon_Nikodym
hoelzl
parents: 63040
diff changeset
   207
  shows "\<exists>f \<in> borel_measurable M. density M f = N"
69730
0c3dcb3a17f6 tagged 5 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
   208
proof -
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   209
  interpret N: finite_measure N by fact
63329
6b26c378ab35 Probability: tuned headers; cleanup Radon_Nikodym
hoelzl
parents: 63040
diff changeset
   210
  define G where "G = {g \<in> borel_measurable M. \<forall>A\<in>sets M. (\<integral>\<^sup>+x. g x * indicator A x \<partial>M) \<le> N A}"
63330
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   211
  have [measurable_dest]: "f \<in> G \<Longrightarrow> f \<in> borel_measurable M"
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   212
    and G_D: "\<And>A. f \<in> G \<Longrightarrow> A \<in> sets M \<Longrightarrow> (\<integral>\<^sup>+x. f x * indicator A x \<partial>M) \<le> N A" for f
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   213
    by (auto simp: G_def)
50003
8c213922ed49 use measurability prover
hoelzl
parents: 49785
diff changeset
   214
  note this[measurable_dest]
38656
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   215
  have "(\<lambda>x. 0) \<in> G" unfolding G_def by auto
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   216
  hence "G \<noteq> {}" by auto
63329
6b26c378ab35 Probability: tuned headers; cleanup Radon_Nikodym
hoelzl
parents: 63040
diff changeset
   217
  { fix f g assume f[measurable]: "f \<in> G" and g[measurable]: "g \<in> G"
38656
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   218
    have "(\<lambda>x. max (g x) (f x)) \<in> G" (is "?max \<in> G") unfolding G_def
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   219
    proof safe
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   220
      let ?A = "{x \<in> space M. f x \<le> g x}"
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   221
      have "?A \<in> sets M" using f g unfolding G_def by auto
63329
6b26c378ab35 Probability: tuned headers; cleanup Radon_Nikodym
hoelzl
parents: 63040
diff changeset
   222
      fix A assume [measurable]: "A \<in> sets M"
38656
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   223
      have union: "((?A \<inter> A) \<union> ((space M - ?A) \<inter> A)) = A"
61808
fc1556774cfe isabelle update_cartouches -c -t;
wenzelm
parents: 61610
diff changeset
   224
        using sets.sets_into_space[OF \<open>A \<in> sets M\<close>] by auto
38656
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   225
      have "\<And>x. x \<in> space M \<Longrightarrow> max (g x) (f x) * indicator A x =
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   226
        g x * indicator (?A \<inter> A) x + f x * indicator ((space M - ?A) \<inter> A) x"
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   227
        by (auto simp: indicator_def max_def)
53015
a1119cf551e8 standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents: 52141
diff changeset
   228
      hence "(\<integral>\<^sup>+x. max (g x) (f x) * indicator A x \<partial>M) =
a1119cf551e8 standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents: 52141
diff changeset
   229
        (\<integral>\<^sup>+x. g x * indicator (?A \<inter> A) x \<partial>M) +
a1119cf551e8 standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents: 52141
diff changeset
   230
        (\<integral>\<^sup>+x. f x * indicator ((space M - ?A) \<inter> A) x \<partial>M)"
56996
891e992e510f renamed positive_integral to nn_integral
hoelzl
parents: 56994
diff changeset
   231
        by (auto cong: nn_integral_cong intro!: nn_integral_add)
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   232
      also have "\<dots> \<le> N (?A \<inter> A) + N ((space M - ?A) \<inter> A)"
63329
6b26c378ab35 Probability: tuned headers; cleanup Radon_Nikodym
hoelzl
parents: 63040
diff changeset
   233
        using f g unfolding G_def by (auto intro!: add_mono)
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   234
      also have "\<dots> = N A"
63330
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   235
        using union by (subst plus_emeasure) auto
53015
a1119cf551e8 standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents: 52141
diff changeset
   236
      finally show "(\<integral>\<^sup>+x. max (g x) (f x) * indicator A x \<partial>M) \<le> N A" .
63329
6b26c378ab35 Probability: tuned headers; cleanup Radon_Nikodym
hoelzl
parents: 63040
diff changeset
   237
    qed auto }
38656
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   238
  note max_in_G = this
41981
cdf7693bbe08 reworked Probability theory: measures are not type restricted to positive extended reals
hoelzl
parents: 41832
diff changeset
   239
  { fix f assume  "incseq f" and f: "\<And>i. f i \<in> G"
50003
8c213922ed49 use measurability prover
hoelzl
parents: 49785
diff changeset
   240
    then have [measurable]: "\<And>i. f i \<in> borel_measurable M" by (auto simp: G_def)
41981
cdf7693bbe08 reworked Probability theory: measures are not type restricted to positive extended reals
hoelzl
parents: 41832
diff changeset
   241
    have "(\<lambda>x. SUP i. f i x) \<in> G" unfolding G_def
38656
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   242
    proof safe
50003
8c213922ed49 use measurability prover
hoelzl
parents: 49785
diff changeset
   243
      show "(\<lambda>x. SUP i. f i x) \<in> borel_measurable M" by measurable
41981
cdf7693bbe08 reworked Probability theory: measures are not type restricted to positive extended reals
hoelzl
parents: 41832
diff changeset
   244
    next
38656
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   245
      fix A assume "A \<in> sets M"
53015
a1119cf551e8 standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents: 52141
diff changeset
   246
      have "(\<integral>\<^sup>+x. (SUP i. f i x) * indicator A x \<partial>M) =
a1119cf551e8 standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents: 52141
diff changeset
   247
        (\<integral>\<^sup>+x. (SUP i. f i x * indicator A x) \<partial>M)"
56996
891e992e510f renamed positive_integral to nn_integral
hoelzl
parents: 56994
diff changeset
   248
        by (intro nn_integral_cong) (simp split: split_indicator)
53015
a1119cf551e8 standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents: 52141
diff changeset
   249
      also have "\<dots> = (SUP i. (\<integral>\<^sup>+x. f i x * indicator A x \<partial>M))"
61808
fc1556774cfe isabelle update_cartouches -c -t;
wenzelm
parents: 61610
diff changeset
   250
        using \<open>incseq f\<close> f \<open>A \<in> sets M\<close>
56996
891e992e510f renamed positive_integral to nn_integral
hoelzl
parents: 56994
diff changeset
   251
        by (intro nn_integral_monotone_convergence_SUP)
41981
cdf7693bbe08 reworked Probability theory: measures are not type restricted to positive extended reals
hoelzl
parents: 41832
diff changeset
   252
           (auto simp: G_def incseq_Suc_iff le_fun_def split: split_indicator)
53015
a1119cf551e8 standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents: 52141
diff changeset
   253
      finally show "(\<integral>\<^sup>+x. (SUP i. f i x) * indicator A x \<partial>M) \<le> N A"
63330
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   254
        using f \<open>A \<in> sets M\<close> by (auto intro!: SUP_least simp: G_D)
38656
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   255
    qed }
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   256
  note SUP_in_G = this
69260
0a9688695a1b removed relics of ASCII syntax for indexed big operators
haftmann
parents: 69173
diff changeset
   257
  let ?y = "SUP g \<in> G. integral\<^sup>N M g"
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   258
  have y_le: "?y \<le> N (space M)" unfolding G_def
44928
7ef6505bde7f renamed Complete_Lattices lemmas, removed legacy names
hoelzl
parents: 44918
diff changeset
   259
  proof (safe intro!: SUP_least)
53015
a1119cf551e8 standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents: 52141
diff changeset
   260
    fix g assume "\<forall>A\<in>sets M. (\<integral>\<^sup>+x. g x * indicator A x \<partial>M) \<le> N A"
56996
891e992e510f renamed positive_integral to nn_integral
hoelzl
parents: 56994
diff changeset
   261
    from this[THEN bspec, OF sets.top] show "integral\<^sup>N M g \<le> N (space M)"
891e992e510f renamed positive_integral to nn_integral
hoelzl
parents: 56994
diff changeset
   262
      by (simp cong: nn_integral_cong)
38656
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   263
  qed
62975
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   264
  from ennreal_SUP_countable_SUP [OF \<open>G \<noteq> {}\<close>, of "integral\<^sup>N M"] guess ys .. note ys = this
56996
891e992e510f renamed positive_integral to nn_integral
hoelzl
parents: 56994
diff changeset
   265
  then have "\<forall>n. \<exists>g. g\<in>G \<and> integral\<^sup>N M g = ys n"
38656
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   266
  proof safe
56996
891e992e510f renamed positive_integral to nn_integral
hoelzl
parents: 56994
diff changeset
   267
    fix n assume "range ys \<subseteq> integral\<^sup>N M ` G"
891e992e510f renamed positive_integral to nn_integral
hoelzl
parents: 56994
diff changeset
   268
    hence "ys n \<in> integral\<^sup>N M ` G" by auto
891e992e510f renamed positive_integral to nn_integral
hoelzl
parents: 56994
diff changeset
   269
    thus "\<exists>g. g\<in>G \<and> integral\<^sup>N M g = ys n" by auto
38656
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   270
  qed
56996
891e992e510f renamed positive_integral to nn_integral
hoelzl
parents: 56994
diff changeset
   271
  from choice[OF this] obtain gs where "\<And>i. gs i \<in> G" "\<And>n. integral\<^sup>N M (gs n) = ys n" by auto
891e992e510f renamed positive_integral to nn_integral
hoelzl
parents: 56994
diff changeset
   272
  hence y_eq: "?y = (SUP i. integral\<^sup>N M (gs i))" using ys by auto
46731
5302e932d1e5 avoid undeclared variables in let bindings;
wenzelm
parents: 45777
diff changeset
   273
  let ?g = "\<lambda>i x. Max ((\<lambda>n. gs n x) ` {..i})"
63040
eb4ddd18d635 eliminated old 'def';
wenzelm
parents: 62975
diff changeset
   274
  define f where [abs_def]: "f x = (SUP i. ?g i x)" for x
46731
5302e932d1e5 avoid undeclared variables in let bindings;
wenzelm
parents: 45777
diff changeset
   275
  let ?F = "\<lambda>A x. f x * indicator A x"
41981
cdf7693bbe08 reworked Probability theory: measures are not type restricted to positive extended reals
hoelzl
parents: 41832
diff changeset
   276
  have gs_not_empty: "\<And>i x. (\<lambda>n. gs n x) ` {..i} \<noteq> {}" by auto
38656
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   277
  { fix i have "?g i \<in> G"
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   278
    proof (induct i)
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   279
      case 0 thus ?case by simp fact
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   280
    next
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   281
      case (Suc i)
61808
fc1556774cfe isabelle update_cartouches -c -t;
wenzelm
parents: 61610
diff changeset
   282
      with Suc gs_not_empty \<open>gs (Suc i) \<in> G\<close> show ?case
38656
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   283
        by (auto simp add: atMost_Suc intro!: max_in_G)
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   284
    qed }
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   285
  note g_in_G = this
41981
cdf7693bbe08 reworked Probability theory: measures are not type restricted to positive extended reals
hoelzl
parents: 41832
diff changeset
   286
  have "incseq ?g" using gs_not_empty
cdf7693bbe08 reworked Probability theory: measures are not type restricted to positive extended reals
hoelzl
parents: 41832
diff changeset
   287
    by (auto intro!: incseq_SucI le_funI simp add: atMost_Suc)
63330
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   288
50003
8c213922ed49 use measurability prover
hoelzl
parents: 49785
diff changeset
   289
  from SUP_in_G[OF this g_in_G] have [measurable]: "f \<in> G" unfolding f_def .
63330
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   290
  then have [measurable]: "f \<in> borel_measurable M" unfolding G_def by auto
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   291
56996
891e992e510f renamed positive_integral to nn_integral
hoelzl
parents: 56994
diff changeset
   292
  have "integral\<^sup>N M f = (SUP i. integral\<^sup>N M (?g i))" unfolding f_def
63330
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   293
    using g_in_G \<open>incseq ?g\<close> by (auto intro!: nn_integral_monotone_convergence_SUP simp: G_def)
38656
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   294
  also have "\<dots> = ?y"
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   295
  proof (rule antisym)
56996
891e992e510f renamed positive_integral to nn_integral
hoelzl
parents: 56994
diff changeset
   296
    show "(SUP i. integral\<^sup>N M (?g i)) \<le> ?y"
56166
9a241bc276cd normalising simp rules for compound operators
haftmann
parents: 55642
diff changeset
   297
      using g_in_G by (auto intro: SUP_mono)
56996
891e992e510f renamed positive_integral to nn_integral
hoelzl
parents: 56994
diff changeset
   298
    show "?y \<le> (SUP i. integral\<^sup>N M (?g i))" unfolding y_eq
891e992e510f renamed positive_integral to nn_integral
hoelzl
parents: 56994
diff changeset
   299
      by (auto intro!: SUP_mono nn_integral_mono Max_ge)
38656
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   300
  qed
56996
891e992e510f renamed positive_integral to nn_integral
hoelzl
parents: 56994
diff changeset
   301
  finally have int_f_eq_y: "integral\<^sup>N M f = ?y" .
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   302
63330
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   303
  have upper_bound: "\<forall>A\<in>sets M. N A \<le> density M f A"
38656
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   304
  proof (rule ccontr)
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   305
    assume "\<not> ?thesis"
63330
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   306
    then obtain A where A[measurable]: "A \<in> sets M" and f_less_N: "density M f A < N A"
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   307
      by (auto simp: not_le)
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   308
    then have pos_A: "0 < M A"
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   309
      using \<open>absolutely_continuous M N\<close>[THEN absolutely_continuousD, OF A]
62975
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   310
      by (auto simp: zero_less_iff_neq_zero)
63330
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   311
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   312
    define b where "b = (N A - density M f A) / M A / 2"
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   313
    with f_less_N pos_A have "0 < b" "b \<noteq> top"
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   314
      by (auto intro!: diff_gr0_ennreal simp: zero_less_iff_neq_zero diff_eq_0_iff_ennreal ennreal_divide_eq_top_iff)
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   315
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   316
    let ?f = "\<lambda>x. f x + b"
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   317
    have "nn_integral M f \<noteq> top"
64911
f0e07600de47 isabelle update_cartouches -c -t;
wenzelm
parents: 64283
diff changeset
   318
      using \<open>f \<in> G\<close>[THEN G_D, of "space M"] by (auto simp: top_unique cong: nn_integral_cong)
63330
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   319
    with \<open>b \<noteq> top\<close> interpret Mf: finite_measure "density M ?f"
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   320
      by (intro finite_measureI)
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   321
         (auto simp: field_simps mult_indicator_subset ennreal_mult_eq_top_iff
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   322
                     emeasure_density nn_integral_cmult_indicator nn_integral_add
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   323
               cong: nn_integral_cong)
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   324
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   325
    from unsigned_Hahn_decomposition[of "density M ?f" N A]
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   326
    obtain Y where [measurable]: "Y \<in> sets M" and [simp]: "Y \<subseteq> A"
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   327
       and Y1: "\<And>C. C \<in> sets M \<Longrightarrow> C \<subseteq> Y \<Longrightarrow> density M ?f C \<le> N C"
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   328
       and Y2: "\<And>C. C \<in> sets M \<Longrightarrow> C \<subseteq> A \<Longrightarrow> C \<inter> Y = {} \<Longrightarrow> N C \<le> density M ?f C"
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   329
       by auto
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   330
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   331
    let ?f' = "\<lambda>x. f x + b * indicator Y x"
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   332
    have "M Y \<noteq> 0"
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   333
    proof
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   334
      assume "M Y = 0"
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   335
      then have "N Y = 0"
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   336
        using \<open>absolutely_continuous M N\<close>[THEN absolutely_continuousD, of Y] by auto
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   337
      then have "N A = N (A - Y)"
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   338
        by (subst emeasure_Diff) auto
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   339
      also have "\<dots> \<le> density M ?f (A - Y)"
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   340
        by (rule Y2) auto
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   341
      also have "\<dots> \<le> density M ?f A - density M ?f Y"
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   342
        by (subst emeasure_Diff) auto
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   343
      also have "\<dots> \<le> density M ?f A - 0"
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   344
        by (intro ennreal_minus_mono) auto
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   345
      also have "density M ?f A = b * M A + density M f A"
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   346
        by (simp add: emeasure_density field_simps mult_indicator_subset nn_integral_add nn_integral_cmult_indicator)
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   347
      also have "\<dots> < N A"
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   348
        using f_less_N pos_A
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   349
        by (cases "density M f A"; cases "M A"; cases "N A")
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   350
           (auto simp: b_def ennreal_less_iff ennreal_minus divide_ennreal ennreal_numeral[symmetric]
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   351
                       ennreal_plus[symmetric] ennreal_mult[symmetric] field_simps
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   352
                    simp del: ennreal_numeral ennreal_plus)
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   353
      finally show False
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   354
        by simp
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   355
    qed
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   356
    then have "nn_integral M f < nn_integral M ?f'"
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   357
      using \<open>0 < b\<close> \<open>nn_integral M f \<noteq> top\<close>
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   358
      by (simp add: nn_integral_add nn_integral_cmult_indicator ennreal_zero_less_mult_iff zero_less_iff_neq_zero)
38656
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   359
    moreover
63330
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   360
    have "?f' \<in> G"
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   361
      unfolding G_def
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   362
    proof safe
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   363
      fix X assume [measurable]: "X \<in> sets M"
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   364
      have "(\<integral>\<^sup>+ x. ?f' x * indicator X x \<partial>M) = density M f (X - Y) + density M ?f (X \<inter> Y)"
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   365
        by (auto simp add: emeasure_density nn_integral_add[symmetric] split: split_indicator intro!: nn_integral_cong)
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   366
      also have "\<dots> \<le> N (X - Y) + N (X \<inter> Y)"
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   367
        using G_D[OF \<open>f \<in> G\<close>] by (intro add_mono Y1) (auto simp: emeasure_density)
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   368
      also have "\<dots> = N X"
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   369
        by (subst plus_emeasure) (auto intro!: arg_cong2[where f=emeasure])
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   370
      finally show "(\<integral>\<^sup>+ x. ?f' x * indicator X x \<partial>M) \<le> N X" .
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   371
    qed simp
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   372
    then have "nn_integral M ?f' \<le> ?y"
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   373
      by (rule SUP_upper)
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   374
    ultimately show False
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   375
      by (simp add: int_f_eq_y)
38656
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   376
  qed
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   377
  show ?thesis
63330
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   378
  proof (intro bexI[of _ f] measure_eqI conjI antisym)
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   379
    fix A assume "A \<in> sets (density M f)" then show "emeasure (density M f) A \<le> emeasure N A"
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   380
      by (auto simp: emeasure_density intro!: G_D[OF \<open>f \<in> G\<close>])
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   381
  next
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   382
    fix A assume A: "A \<in> sets (density M f)" then show "emeasure N A \<le> emeasure (density M f) A"
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   383
      using upper_bound by auto
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   384
  qed auto
38656
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   385
qed
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   386
69730
0c3dcb3a17f6 tagged 5 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
   387
lemma (in finite_measure) split_space_into_finite_sets_and_rest:
63330
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   388
  assumes ac: "absolutely_continuous M N" and sets_eq[simp]: "sets N = sets M"
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   389
  shows "\<exists>B::nat\<Rightarrow>'a set. disjoint_family B \<and> range B \<subseteq> sets M \<and> (\<forall>i. N (B i) \<noteq> \<infinity>) \<and>
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   390
    (\<forall>A\<in>sets M. A \<inter> (\<Union>i. B i) = {} \<longrightarrow> (emeasure M A = 0 \<and> N A = 0) \<or> (emeasure M A > 0 \<and> N A = \<infinity>))"
69730
0c3dcb3a17f6 tagged 5 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
   391
proof -
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   392
  let ?Q = "{Q\<in>sets M. N Q \<noteq> \<infinity>}"
69260
0a9688695a1b removed relics of ASCII syntax for indexed big operators
haftmann
parents: 69173
diff changeset
   393
  let ?a = "SUP Q\<in>?Q. emeasure M Q"
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   394
  have "{} \<in> ?Q" by auto
38656
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   395
  then have Q_not_empty: "?Q \<noteq> {}" by blast
50244
de72bbe42190 qualified interpretation of sigma_algebra, to avoid name clashes
immler
parents: 50021
diff changeset
   396
  have "?a \<le> emeasure M (space M)" using sets.sets_into_space
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   397
    by (auto intro!: SUP_least emeasure_mono)
62975
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   398
  then have "?a \<noteq> \<infinity>"
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   399
    using finite_emeasure_space
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   400
    by (auto simp: less_top[symmetric] top_unique simp del: SUP_eq_top_iff Sup_eq_top_iff)
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   401
  from ennreal_SUP_countable_SUP [OF Q_not_empty, of "emeasure M"]
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   402
  obtain Q'' where "range Q'' \<subseteq> emeasure M ` ?Q" and a: "?a = (SUP i::nat. Q'' i)"
38656
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   403
    by auto
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   404
  then have "\<forall>i. \<exists>Q'. Q'' i = emeasure M Q' \<and> Q' \<in> ?Q" by auto
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   405
  from choice[OF this] obtain Q' where Q': "\<And>i. Q'' i = emeasure M (Q' i)" "\<And>i. Q' i \<in> ?Q"
38656
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   406
    by auto
69260
0a9688695a1b removed relics of ASCII syntax for indexed big operators
haftmann
parents: 69173
diff changeset
   407
  then have a_Lim: "?a = (SUP i. emeasure M (Q' i))" using a by simp
46731
5302e932d1e5 avoid undeclared variables in let bindings;
wenzelm
parents: 45777
diff changeset
   408
  let ?O = "\<lambda>n. \<Union>i\<le>n. Q' i"
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   409
  have Union: "(SUP i. emeasure M (?O i)) = emeasure M (\<Union>i. ?O i)"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   410
  proof (rule SUP_emeasure_incseq[of ?O])
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   411
    show "range ?O \<subseteq> sets M" using Q' by auto
44890
22f665a2e91c new fastforce replacing fastsimp - less confusing name
nipkow
parents: 44568
diff changeset
   412
    show "incseq ?O" by (fastforce intro!: incseq_SucI)
38656
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   413
  qed
63330
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   414
  have Q'_sets[measurable]: "\<And>i. Q' i \<in> sets M" using Q' by auto
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   415
  have O_sets: "\<And>i. ?O i \<in> sets M" using Q' by auto
38656
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   416
  then have O_in_G: "\<And>i. ?O i \<in> ?Q"
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   417
  proof (safe del: notI)
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   418
    fix i have "Q' ` {..i} \<subseteq> sets M" using Q' by auto
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   419
    then have "N (?O i) \<le> (\<Sum>i\<le>i. N (Q' i))"
63330
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   420
      by (simp add: emeasure_subadditive_finite)
62975
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   421
    also have "\<dots> < \<infinity>" using Q' by (simp add: less_top)
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   422
    finally show "N (?O i) \<noteq> \<infinity>" by simp
38656
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   423
  qed auto
44890
22f665a2e91c new fastforce replacing fastsimp - less confusing name
nipkow
parents: 44568
diff changeset
   424
  have O_mono: "\<And>n. ?O n \<subseteq> ?O (Suc n)" by fastforce
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   425
  have a_eq: "?a = emeasure M (\<Union>i. ?O i)" unfolding Union[symmetric]
38656
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   426
  proof (rule antisym)
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   427
    show "?a \<le> (SUP i. emeasure M (?O i))" unfolding a_Lim
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   428
      using Q' by (auto intro!: SUP_mono emeasure_mono)
62343
24106dc44def prefer abbreviations for compound operators INFIMUM and SUPREMUM
haftmann
parents: 62083
diff changeset
   429
    show "(SUP i. emeasure M (?O i)) \<le> ?a"
38656
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   430
    proof (safe intro!: Sup_mono, unfold bex_simps)
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   431
      fix i
52141
eff000cab70f weaker precendence of syntax for big intersection and union on sets
haftmann
parents: 51329
diff changeset
   432
      have *: "(\<Union>(Q' ` {..i})) = ?O i" by auto
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   433
      then show "\<exists>x. (x \<in> sets M \<and> N x \<noteq> \<infinity>) \<and>
52141
eff000cab70f weaker precendence of syntax for big intersection and union on sets
haftmann
parents: 51329
diff changeset
   434
        emeasure M (\<Union>(Q' ` {..i})) \<le> emeasure M x"
38656
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   435
        using O_in_G[of i] by (auto intro!: exI[of _ "?O i"])
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   436
    qed
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   437
  qed
46731
5302e932d1e5 avoid undeclared variables in let bindings;
wenzelm
parents: 45777
diff changeset
   438
  let ?O_0 = "(\<Union>i. ?O i)"
38656
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   439
  have "?O_0 \<in> sets M" using Q' by auto
63330
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   440
  have "disjointed Q' i \<in> sets M" for i
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   441
    using sets.range_disjointed_sets[of Q' M] using Q'_sets by (auto simp: subset_eq)
38656
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   442
  note Q_sets = this
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   443
  show ?thesis
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   444
  proof (intro bexI exI conjI ballI impI allI)
63330
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   445
    show "disjoint_family (disjointed Q')"
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   446
      by (rule disjoint_family_disjointed)
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   447
    show "range (disjointed Q') \<subseteq> sets M"
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   448
      using Q'_sets by (intro sets.range_disjointed_sets) auto
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   449
    { fix A assume A: "A \<in> sets M" "A \<inter> (\<Union>i. disjointed Q' i) = {}"
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   450
      then have A1: "A \<inter> (\<Union>i. Q' i) = {}"
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   451
        unfolding UN_disjointed_eq by auto
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   452
      show "emeasure M A = 0 \<and> N A = 0 \<or> 0 < emeasure M A \<and> N A = \<infinity>"
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   453
      proof (rule disjCI, simp)
62975
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   454
        assume *: "emeasure M A = 0 \<or> N A \<noteq> top"
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   455
        show "emeasure M A = 0 \<and> N A = 0"
53374
a14d2a854c02 tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents: 53015
diff changeset
   456
        proof (cases "emeasure M A = 0")
a14d2a854c02 tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents: 53015
diff changeset
   457
          case True
a14d2a854c02 tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents: 53015
diff changeset
   458
          with ac A have "N A = 0"
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   459
            unfolding absolutely_continuous_def by auto
53374
a14d2a854c02 tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents: 53015
diff changeset
   460
          with True show ?thesis by simp
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   461
        next
53374
a14d2a854c02 tuned proofs -- clarified flow of facts wrt. calculation;
wenzelm
parents: 53015
diff changeset
   462
          case False
62975
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   463
          with * have "N A \<noteq> \<infinity>" by auto
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   464
          with A have "emeasure M ?O_0 + emeasure M A = emeasure M (?O_0 \<union> A)"
63330
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   465
            using Q' A1 by (auto intro!: plus_emeasure simp: set_eq_iff)
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   466
          also have "\<dots> = (SUP i. emeasure M (?O i \<union> A))"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   467
          proof (rule SUP_emeasure_incseq[of "\<lambda>i. ?O i \<union> A", symmetric, simplified])
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   468
            show "range (\<lambda>i. ?O i \<union> A) \<subseteq> sets M"
61808
fc1556774cfe isabelle update_cartouches -c -t;
wenzelm
parents: 61610
diff changeset
   469
              using \<open>N A \<noteq> \<infinity>\<close> O_sets A by auto
44890
22f665a2e91c new fastforce replacing fastsimp - less confusing name
nipkow
parents: 44568
diff changeset
   470
          qed (fastforce intro!: incseq_SucI)
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   471
          also have "\<dots> \<le> ?a"
44928
7ef6505bde7f renamed Complete_Lattices lemmas, removed legacy names
hoelzl
parents: 44918
diff changeset
   472
          proof (safe intro!: SUP_least)
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   473
            fix i have "?O i \<union> A \<in> ?Q"
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   474
            proof (safe del: notI)
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   475
              show "?O i \<union> A \<in> sets M" using O_sets A by auto
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   476
              from O_in_G[of i] have "N (?O i \<union> A) \<le> N (?O i) + N A"
63330
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   477
                using emeasure_subadditive[of "?O i" N A] A O_sets by auto
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   478
              with O_in_G[of i] show "N (?O i \<union> A) \<noteq> \<infinity>"
62975
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   479
                using \<open>N A \<noteq> \<infinity>\<close> by (auto simp: top_unique)
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   480
            qed
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   481
            then show "emeasure M (?O i \<union> A) \<le> ?a" by (rule SUP_upper)
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   482
          qed
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   483
          finally have "emeasure M A = 0"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   484
            unfolding a_eq using measure_nonneg[of M A] by (simp add: emeasure_eq_measure)
61808
fc1556774cfe isabelle update_cartouches -c -t;
wenzelm
parents: 61610
diff changeset
   485
          with \<open>emeasure M A \<noteq> 0\<close> show ?thesis by auto
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   486
        qed
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   487
      qed }
63330
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   488
    { fix i
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   489
      have "N (disjointed Q' i) \<le> N (Q' i)"
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   490
        by (auto intro!: emeasure_mono simp: disjointed_def)
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   491
      then show "N (disjointed Q' i) \<noteq> \<infinity>"
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   492
        using Q'(2)[of i] by (auto simp: top_unique) }
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   493
  qed
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   494
qed
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   495
69730
0c3dcb3a17f6 tagged 5 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
   496
proposition (in finite_measure) Radon_Nikodym_finite_measure_infinite:
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   497
  assumes "absolutely_continuous M N" and sets_eq: "sets N = sets M"
63329
6b26c378ab35 Probability: tuned headers; cleanup Radon_Nikodym
hoelzl
parents: 63040
diff changeset
   498
  shows "\<exists>f\<in>borel_measurable M. density M f = N"
69730
0c3dcb3a17f6 tagged 5 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
   499
proof -
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   500
  from split_space_into_finite_sets_and_rest[OF assms]
63330
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   501
  obtain Q :: "nat \<Rightarrow> 'a set"
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   502
    where Q: "disjoint_family Q" "range Q \<subseteq> sets M"
63330
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   503
    and in_Q0: "\<And>A. A \<in> sets M \<Longrightarrow> A \<inter> (\<Union>i. Q i) = {} \<Longrightarrow> emeasure M A = 0 \<and> N A = 0 \<or> 0 < emeasure M A \<and> N A = \<infinity>"
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   504
    and Q_fin: "\<And>i. N (Q i) \<noteq> \<infinity>" by force
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   505
  from Q have Q_sets: "\<And>i. Q i \<in> sets M" by auto
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   506
  let ?N = "\<lambda>i. density N (indicator (Q i))" and ?M = "\<lambda>i. density M (indicator (Q i))"
63329
6b26c378ab35 Probability: tuned headers; cleanup Radon_Nikodym
hoelzl
parents: 63040
diff changeset
   507
  have "\<forall>i. \<exists>f\<in>borel_measurable (?M i). density (?M i) f = ?N i"
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   508
  proof (intro allI finite_measure.Radon_Nikodym_finite_measure)
38656
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   509
    fix i
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   510
    from Q show "finite_measure (?M i)"
56996
891e992e510f renamed positive_integral to nn_integral
hoelzl
parents: 56994
diff changeset
   511
      by (auto intro!: finite_measureI cong: nn_integral_cong
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   512
               simp add: emeasure_density subset_eq sets_eq)
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   513
    from Q have "emeasure (?N i) (space N) = emeasure N (Q i)"
56996
891e992e510f renamed positive_integral to nn_integral
hoelzl
parents: 56994
diff changeset
   514
      by (simp add: sets_eq[symmetric] emeasure_density subset_eq cong: nn_integral_cong)
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   515
    with Q_fin show "finite_measure (?N i)"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   516
      by (auto intro!: finite_measureI)
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   517
    show "sets (?N i) = sets (?M i)" by (simp add: sets_eq)
50003
8c213922ed49 use measurability prover
hoelzl
parents: 49785
diff changeset
   518
    have [measurable]: "\<And>A. A \<in> sets M \<Longrightarrow> A \<in> sets N" by (simp add: sets_eq)
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   519
    show "absolutely_continuous (?M i) (?N i)"
61808
fc1556774cfe isabelle update_cartouches -c -t;
wenzelm
parents: 61610
diff changeset
   520
      using \<open>absolutely_continuous M N\<close> \<open>Q i \<in> sets M\<close>
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   521
      by (auto simp: absolutely_continuous_def null_sets_density_iff sets_eq
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   522
               intro!: absolutely_continuous_AE[OF sets_eq])
38656
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   523
  qed
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   524
  from choice[OF this[unfolded Bex_def]]
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   525
  obtain f where borel: "\<And>i. f i \<in> borel_measurable M" "\<And>i x. 0 \<le> f i x"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   526
    and f_density: "\<And>i. density (?M i) (f i) = ?N i"
54776
db890d9fc5c2 ordered_euclidean_space compatible with more standard pointwise ordering on products; conditionally complete lattice with product order
immler
parents: 53374
diff changeset
   527
    by force
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   528
  { fix A i assume A: "A \<in> sets M"
53015
a1119cf551e8 standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents: 52141
diff changeset
   529
    with Q borel have "(\<integral>\<^sup>+x. f i x * indicator (Q i \<inter> A) x \<partial>M) = emeasure (density (?M i) (f i)) A"
56996
891e992e510f renamed positive_integral to nn_integral
hoelzl
parents: 56994
diff changeset
   530
      by (auto simp add: emeasure_density nn_integral_density subset_eq
891e992e510f renamed positive_integral to nn_integral
hoelzl
parents: 56994
diff changeset
   531
               intro!: nn_integral_cong split: split_indicator)
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   532
    also have "\<dots> = emeasure N (Q i \<inter> A)"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   533
      using A Q by (simp add: f_density emeasure_restricted subset_eq sets_eq)
53015
a1119cf551e8 standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents: 52141
diff changeset
   534
    finally have "emeasure N (Q i \<inter> A) = (\<integral>\<^sup>+x. f i x * indicator (Q i \<inter> A) x \<partial>M)" .. }
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   535
  note integral_eq = this
63330
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   536
  let ?f = "\<lambda>x. (\<Sum>i. f i x * indicator (Q i) x) + \<infinity> * indicator (space M - (\<Union>i. Q i)) x"
38656
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   537
  show ?thesis
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   538
  proof (safe intro!: bexI[of _ ?f])
63330
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   539
    show "?f \<in> borel_measurable M" using borel Q_sets
41981
cdf7693bbe08 reworked Probability theory: measures are not type restricted to positive extended reals
hoelzl
parents: 41832
diff changeset
   540
      by (auto intro!: measurable_If)
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   541
    show "density M ?f = N"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   542
    proof (rule measure_eqI)
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   543
      fix A assume "A \<in> sets (density M ?f)"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   544
      then have "A \<in> sets M" by simp
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   545
      have Qi: "\<And>i. Q i \<in> sets M" using Q by auto
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   546
      have [intro,simp]: "\<And>i. (\<lambda>x. f i x * indicator (Q i \<inter> A) x) \<in> borel_measurable M"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   547
        "\<And>i. AE x in M. 0 \<le> f i x * indicator (Q i \<inter> A) x"
63330
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   548
        using borel Qi \<open>A \<in> sets M\<close> by auto
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   549
      have "(\<integral>\<^sup>+x. ?f x * indicator A x \<partial>M) = (\<integral>\<^sup>+x. (\<Sum>i. f i x * indicator (Q i \<inter> A) x) + \<infinity> * indicator ((space M - (\<Union>i. Q i)) \<inter> A) x \<partial>M)"
56996
891e992e510f renamed positive_integral to nn_integral
hoelzl
parents: 56994
diff changeset
   550
        using borel by (intro nn_integral_cong) (auto simp: indicator_def)
63330
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   551
      also have "\<dots> = (\<integral>\<^sup>+x. (\<Sum>i. f i x * indicator (Q i \<inter> A) x) \<partial>M) + \<infinity> * emeasure M ((space M - (\<Union>i. Q i)) \<inter> A)"
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   552
        using borel Qi \<open>A \<in> sets M\<close>
62975
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   553
        by (subst nn_integral_add)
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   554
           (auto simp add: nn_integral_cmult_indicator sets.Int intro!: suminf_0_le)
63330
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   555
      also have "\<dots> = (\<Sum>i. N (Q i \<inter> A)) + \<infinity> * emeasure M ((space M - (\<Union>i. Q i)) \<inter> A)"
61808
fc1556774cfe isabelle update_cartouches -c -t;
wenzelm
parents: 61610
diff changeset
   556
        by (subst integral_eq[OF \<open>A \<in> sets M\<close>], subst nn_integral_suminf) auto
63330
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   557
      finally have "(\<integral>\<^sup>+x. ?f x * indicator A x \<partial>M) = (\<Sum>i. N (Q i \<inter> A)) + \<infinity> * emeasure M ((space M - (\<Union>i. Q i)) \<inter> A)" .
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   558
      moreover have "(\<Sum>i. N (Q i \<inter> A)) = N ((\<Union>i. Q i) \<inter> A)"
61808
fc1556774cfe isabelle update_cartouches -c -t;
wenzelm
parents: 61610
diff changeset
   559
        using Q Q_sets \<open>A \<in> sets M\<close>
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   560
        by (subst suminf_emeasure) (auto simp: disjoint_family_on_def sets_eq)
63330
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   561
      moreover
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   562
      have "(space M - (\<Union>x. Q x)) \<inter> A \<inter> (\<Union>x. Q x) = {}"
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   563
        by auto
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   564
      then have "\<infinity> * emeasure M ((space M - (\<Union>i. Q i)) \<inter> A) = N ((space M - (\<Union>i. Q i)) \<inter> A)"
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   565
        using in_Q0[of "(space M - (\<Union>i. Q i)) \<inter> A"] \<open>A \<in> sets M\<close> Q by (auto simp: ennreal_top_mult)
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   566
      moreover have "(space M - (\<Union>i. Q i)) \<inter> A \<in> sets M" "((\<Union>i. Q i) \<inter> A) \<in> sets M"
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   567
        using Q_sets \<open>A \<in> sets M\<close> by auto
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   568
      moreover have "((\<Union>i. Q i) \<inter> A) \<union> ((space M - (\<Union>i. Q i)) \<inter> A) = A" "((\<Union>i. Q i) \<inter> A) \<inter> ((space M - (\<Union>i. Q i)) \<inter> A) = {}"
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   569
        using \<open>A \<in> sets M\<close> sets.sets_into_space by auto
53015
a1119cf551e8 standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents: 52141
diff changeset
   570
      ultimately have "N A = (\<integral>\<^sup>+x. ?f x * indicator A x \<partial>M)"
63330
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   571
        using plus_emeasure[of "(\<Union>i. Q i) \<inter> A" N "(space M - (\<Union>i. Q i)) \<inter> A"] by (simp add: sets_eq)
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   572
      with \<open>A \<in> sets M\<close> borel Q show "emeasure (density M ?f) A = N A"
50003
8c213922ed49 use measurability prover
hoelzl
parents: 49785
diff changeset
   573
        by (auto simp: subset_eq emeasure_density)
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   574
    qed (simp add: sets_eq)
38656
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   575
  qed
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   576
qed
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   577
69730
0c3dcb3a17f6 tagged 5 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
   578
theorem (in sigma_finite_measure) Radon_Nikodym:
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   579
  assumes ac: "absolutely_continuous M N" assumes sets_eq: "sets N = sets M"
63329
6b26c378ab35 Probability: tuned headers; cleanup Radon_Nikodym
hoelzl
parents: 63040
diff changeset
   580
  shows "\<exists>f \<in> borel_measurable M. density M f = N"
38656
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   581
proof -
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   582
  from Ex_finite_integrable_function
56996
891e992e510f renamed positive_integral to nn_integral
hoelzl
parents: 56994
diff changeset
   583
  obtain h where finite: "integral\<^sup>N M h \<noteq> \<infinity>" and
38656
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   584
    borel: "h \<in> borel_measurable M" and
41981
cdf7693bbe08 reworked Probability theory: measures are not type restricted to positive extended reals
hoelzl
parents: 41832
diff changeset
   585
    nn: "\<And>x. 0 \<le> h x" and
38656
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   586
    pos: "\<And>x. x \<in> space M \<Longrightarrow> 0 < h x" and
41981
cdf7693bbe08 reworked Probability theory: measures are not type restricted to positive extended reals
hoelzl
parents: 41832
diff changeset
   587
    "\<And>x. x \<in> space M \<Longrightarrow> h x < \<infinity>" by auto
53015
a1119cf551e8 standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents: 52141
diff changeset
   588
  let ?T = "\<lambda>A. (\<integral>\<^sup>+x. h x * indicator A x \<partial>M)"
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   589
  let ?MT = "density M h"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   590
  from borel finite nn interpret T: finite_measure ?MT
56996
891e992e510f renamed positive_integral to nn_integral
hoelzl
parents: 56994
diff changeset
   591
    by (auto intro!: finite_measureI cong: nn_integral_cong simp: emeasure_density)
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   592
  have "absolutely_continuous ?MT N" "sets N = sets ?MT"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   593
  proof (unfold absolutely_continuous_def, safe)
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   594
    fix A assume "A \<in> null_sets ?MT"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   595
    with borel have "A \<in> sets M" "AE x in M. x \<in> A \<longrightarrow> h x \<le> 0"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   596
      by (auto simp add: null_sets_density_iff)
50244
de72bbe42190 qualified interpretation of sigma_algebra, to avoid name clashes
immler
parents: 50021
diff changeset
   597
    with pos sets.sets_into_space have "AE x in M. x \<notin> A"
61810
3c5040d5694a sorted out eventually_mono
paulson <lp15@cam.ac.uk>
parents: 61808
diff changeset
   598
      by (elim eventually_mono) (auto simp: not_le[symmetric])
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   599
    then have "A \<in> null_sets M"
61808
fc1556774cfe isabelle update_cartouches -c -t;
wenzelm
parents: 61610
diff changeset
   600
      using \<open>A \<in> sets M\<close> by (simp add: AE_iff_null_sets)
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   601
    with ac show "A \<in> null_sets N"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   602
      by (auto simp: absolutely_continuous_def)
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   603
  qed (auto simp add: sets_eq)
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   604
  from T.Radon_Nikodym_finite_measure_infinite[OF this]
63329
6b26c378ab35 Probability: tuned headers; cleanup Radon_Nikodym
hoelzl
parents: 63040
diff changeset
   605
  obtain f where f_borel: "f \<in> borel_measurable M" "density ?MT f = N" by auto
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   606
  with nn borel show ?thesis
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   607
    by (auto intro!: bexI[of _ "\<lambda>x. h x * f x"] simp: density_density_eq)
38656
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   608
qed
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   609
69683
8b3458ca0762 subsection is always %important
immler
parents: 69517
diff changeset
   610
subsection \<open>Uniqueness of densities\<close>
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   611
69730
0c3dcb3a17f6 tagged 5 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
   612
lemma finite_density_unique:
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   613
  assumes borel: "f \<in> borel_measurable M" "g \<in> borel_measurable M"
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   614
  assumes pos: "AE x in M. 0 \<le> f x" "AE x in M. 0 \<le> g x"
56996
891e992e510f renamed positive_integral to nn_integral
hoelzl
parents: 56994
diff changeset
   615
  and fin: "integral\<^sup>N M f \<noteq> \<infinity>"
49785
0a8adca22974 simplified entropy_uniform
hoelzl
parents: 49778
diff changeset
   616
  shows "density M f = density M g \<longleftrightarrow> (AE x in M. f x = g x)"
69730
0c3dcb3a17f6 tagged 5 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
   617
proof (intro iffI ballI)
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   618
  fix A assume eq: "AE x in M. f x = g x"
49785
0a8adca22974 simplified entropy_uniform
hoelzl
parents: 49778
diff changeset
   619
  with borel show "density M f = density M g"
0a8adca22974 simplified entropy_uniform
hoelzl
parents: 49778
diff changeset
   620
    by (auto intro: density_cong)
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   621
next
53015
a1119cf551e8 standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents: 52141
diff changeset
   622
  let ?P = "\<lambda>f A. \<integral>\<^sup>+ x. f x * indicator A x \<partial>M"
49785
0a8adca22974 simplified entropy_uniform
hoelzl
parents: 49778
diff changeset
   623
  assume "density M f = density M g"
0a8adca22974 simplified entropy_uniform
hoelzl
parents: 49778
diff changeset
   624
  with borel have eq: "\<forall>A\<in>sets M. ?P f A = ?P g A"
0a8adca22974 simplified entropy_uniform
hoelzl
parents: 49778
diff changeset
   625
    by (simp add: emeasure_density[symmetric])
50244
de72bbe42190 qualified interpretation of sigma_algebra, to avoid name clashes
immler
parents: 50021
diff changeset
   626
  from this[THEN bspec, OF sets.top] fin
56996
891e992e510f renamed positive_integral to nn_integral
hoelzl
parents: 56994
diff changeset
   627
  have g_fin: "integral\<^sup>N M g \<noteq> \<infinity>" by (simp cong: nn_integral_cong)
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   628
  { fix f g assume borel: "f \<in> borel_measurable M" "g \<in> borel_measurable M"
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   629
      and pos: "AE x in M. 0 \<le> f x" "AE x in M. 0 \<le> g x"
56996
891e992e510f renamed positive_integral to nn_integral
hoelzl
parents: 56994
diff changeset
   630
      and g_fin: "integral\<^sup>N M g \<noteq> \<infinity>" and eq: "\<forall>A\<in>sets M. ?P f A = ?P g A"
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   631
    let ?N = "{x\<in>space M. g x < f x}"
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   632
    have N: "?N \<in> sets M" using borel by simp
56996
891e992e510f renamed positive_integral to nn_integral
hoelzl
parents: 56994
diff changeset
   633
    have "?P g ?N \<le> integral\<^sup>N M g" using pos
891e992e510f renamed positive_integral to nn_integral
hoelzl
parents: 56994
diff changeset
   634
      by (intro nn_integral_mono_AE) (auto split: split_indicator)
62975
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   635
    then have Pg_fin: "?P g ?N \<noteq> \<infinity>" using g_fin by (auto simp: top_unique)
53015
a1119cf551e8 standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents: 52141
diff changeset
   636
    have "?P (\<lambda>x. (f x - g x)) ?N = (\<integral>\<^sup>+x. f x * indicator ?N x - g x * indicator ?N x \<partial>M)"
56996
891e992e510f renamed positive_integral to nn_integral
hoelzl
parents: 56994
diff changeset
   637
      by (auto intro!: nn_integral_cong simp: indicator_def)
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   638
    also have "\<dots> = ?P f ?N - ?P g ?N"
56996
891e992e510f renamed positive_integral to nn_integral
hoelzl
parents: 56994
diff changeset
   639
    proof (rule nn_integral_diff)
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   640
      show "(\<lambda>x. f x * indicator ?N x) \<in> borel_measurable M" "(\<lambda>x. g x * indicator ?N x) \<in> borel_measurable M"
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   641
        using borel N by auto
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   642
      show "AE x in M. g x * indicator ?N x \<le> f x * indicator ?N x"
41981
cdf7693bbe08 reworked Probability theory: measures are not type restricted to positive extended reals
hoelzl
parents: 41832
diff changeset
   643
        using pos by (auto split: split_indicator)
cdf7693bbe08 reworked Probability theory: measures are not type restricted to positive extended reals
hoelzl
parents: 41832
diff changeset
   644
    qed fact
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   645
    also have "\<dots> = 0"
62975
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   646
      unfolding eq[THEN bspec, OF N] using Pg_fin by auto
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   647
    finally have "AE x in M. f x \<le> g x"
56996
891e992e510f renamed positive_integral to nn_integral
hoelzl
parents: 56994
diff changeset
   648
      using pos borel nn_integral_PInf_AE[OF borel(2) g_fin]
891e992e510f renamed positive_integral to nn_integral
hoelzl
parents: 56994
diff changeset
   649
      by (subst (asm) nn_integral_0_iff_AE)
62975
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   650
         (auto split: split_indicator simp: not_less ennreal_minus_eq_0) }
41981
cdf7693bbe08 reworked Probability theory: measures are not type restricted to positive extended reals
hoelzl
parents: 41832
diff changeset
   651
  from this[OF borel pos g_fin eq] this[OF borel(2,1) pos(2,1) fin] eq
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   652
  show "AE x in M. f x = g x" by auto
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   653
qed
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   654
69730
0c3dcb3a17f6 tagged 5 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
   655
lemma (in finite_measure) density_unique_finite_measure:
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   656
  assumes borel: "f \<in> borel_measurable M" "f' \<in> borel_measurable M"
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   657
  assumes pos: "AE x in M. 0 \<le> f x" "AE x in M. 0 \<le> f' x"
53015
a1119cf551e8 standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents: 52141
diff changeset
   658
  assumes f: "\<And>A. A \<in> sets M \<Longrightarrow> (\<integral>\<^sup>+x. f x * indicator A x \<partial>M) = (\<integral>\<^sup>+x. f' x * indicator A x \<partial>M)"
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   659
    (is "\<And>A. A \<in> sets M \<Longrightarrow> ?P f A = ?P f' A")
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   660
  shows "AE x in M. f x = f' x"
69730
0c3dcb3a17f6 tagged 5 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
   661
proof -
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   662
  let ?D = "\<lambda>f. density M f"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   663
  let ?N = "\<lambda>A. ?P f A" and ?N' = "\<lambda>A. ?P f' A"
46731
5302e932d1e5 avoid undeclared variables in let bindings;
wenzelm
parents: 45777
diff changeset
   664
  let ?f = "\<lambda>A x. f x * indicator A x" and ?f' = "\<lambda>A x. f' x * indicator A x"
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   665
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   666
  have ac: "absolutely_continuous M (density M f)" "sets (density M f) = sets M"
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 61169
diff changeset
   667
    using borel by (auto intro!: absolutely_continuousI_density)
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   668
  from split_space_into_finite_sets_and_rest[OF this]
63330
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   669
  obtain Q :: "nat \<Rightarrow> 'a set"
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   670
    where Q: "disjoint_family Q" "range Q \<subseteq> sets M"
63330
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   671
    and in_Q0: "\<And>A. A \<in> sets M \<Longrightarrow> A \<inter> (\<Union>i. Q i) = {} \<Longrightarrow> emeasure M A = 0 \<and> ?D f A = 0 \<or> 0 < emeasure M A \<and> ?D f A = \<infinity>"
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   672
    and Q_fin: "\<And>i. ?D f (Q i) \<noteq> \<infinity>" by force
63330
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   673
  with borel pos have in_Q0: "\<And>A. A \<in> sets M \<Longrightarrow> A \<inter> (\<Union>i. Q i) = {} \<Longrightarrow> emeasure M A = 0 \<and> ?N A = 0 \<or> 0 < emeasure M A \<and> ?N A = \<infinity>"
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   674
    and Q_fin: "\<And>i. ?N (Q i) \<noteq> \<infinity>" by (auto simp: emeasure_density subset_eq)
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   675
63330
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   676
  from Q have Q_sets[measurable]: "\<And>i. Q i \<in> sets M" by auto
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   677
  let ?D = "{x\<in>space M. f x \<noteq> f' x}"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   678
  have "?D \<in> sets M" using borel by auto
62975
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   679
  have *: "\<And>i x A. \<And>y::ennreal. y * indicator (Q i) x * indicator A x = y * indicator (Q i \<inter> A) x"
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   680
    unfolding indicator_def by auto
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   681
  have "\<forall>i. AE x in M. ?f (Q i) x = ?f' (Q i) x" using borel Q_fin Q pos
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   682
    by (intro finite_density_unique[THEN iffD1] allI)
50003
8c213922ed49 use measurability prover
hoelzl
parents: 49785
diff changeset
   683
       (auto intro!: f measure_eqI simp: emeasure_density * subset_eq)
63330
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   684
  moreover have "AE x in M. ?f (space M - (\<Union>i. Q i)) x = ?f' (space M - (\<Union>i. Q i)) x"
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   685
  proof (rule AE_I')
62975
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   686
    { fix f :: "'a \<Rightarrow> ennreal" assume borel: "f \<in> borel_measurable M"
53015
a1119cf551e8 standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents: 52141
diff changeset
   687
        and eq: "\<And>A. A \<in> sets M \<Longrightarrow> ?N A = (\<integral>\<^sup>+x. f x * indicator A x \<partial>M)"
63330
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   688
      let ?A = "\<lambda>i. (space M - (\<Union>i. Q i)) \<inter> {x \<in> space M. f x < (i::nat)}"
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   689
      have "(\<Union>i. ?A i) \<in> null_sets M"
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   690
      proof (rule null_sets_UN)
43923
ab93d0190a5d add ereal to typeclass infinity
hoelzl
parents: 43920
diff changeset
   691
        fix i ::nat have "?A i \<in> sets M"
63330
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   692
          using borel by auto
62975
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   693
        have "?N (?A i) \<le> (\<integral>\<^sup>+x. (i::ennreal) * indicator (?A i) x \<partial>M)"
61808
fc1556774cfe isabelle update_cartouches -c -t;
wenzelm
parents: 61610
diff changeset
   694
          unfolding eq[OF \<open>?A i \<in> sets M\<close>]
56996
891e992e510f renamed positive_integral to nn_integral
hoelzl
parents: 56994
diff changeset
   695
          by (auto intro!: nn_integral_mono simp: indicator_def)
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   696
        also have "\<dots> = i * emeasure M (?A i)"
61808
fc1556774cfe isabelle update_cartouches -c -t;
wenzelm
parents: 61610
diff changeset
   697
          using \<open>?A i \<in> sets M\<close> by (auto intro!: nn_integral_cmult_indicator)
62975
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   698
        also have "\<dots> < \<infinity>" using emeasure_real[of "?A i"] by (auto simp: ennreal_mult_less_top of_nat_less_top)
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   699
        finally have "?N (?A i) \<noteq> \<infinity>" by simp
61808
fc1556774cfe isabelle update_cartouches -c -t;
wenzelm
parents: 61610
diff changeset
   700
        then show "?A i \<in> null_sets M" using in_Q0[OF \<open>?A i \<in> sets M\<close>] \<open>?A i \<in> sets M\<close> by auto
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   701
      qed
63330
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   702
      also have "(\<Union>i. ?A i) = (space M - (\<Union>i. Q i)) \<inter> {x\<in>space M. f x \<noteq> \<infinity>}"
62975
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   703
        by (auto simp: ennreal_Ex_less_of_nat less_top[symmetric])
63330
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   704
      finally have "(space M - (\<Union>i. Q i)) \<inter> {x\<in>space M. f x \<noteq> \<infinity>} \<in> null_sets M" by simp }
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   705
    from this[OF borel(1) refl] this[OF borel(2) f]
63330
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   706
    have "(space M - (\<Union>i. Q i)) \<inter> {x\<in>space M. f x \<noteq> \<infinity>} \<in> null_sets M" "(space M - (\<Union>i. Q i)) \<inter> {x\<in>space M. f' x \<noteq> \<infinity>} \<in> null_sets M" by simp_all
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   707
    then show "((space M - (\<Union>i. Q i)) \<inter> {x\<in>space M. f x \<noteq> \<infinity>}) \<union> ((space M - (\<Union>i. Q i)) \<inter> {x\<in>space M. f' x \<noteq> \<infinity>}) \<in> null_sets M" by (rule null_sets.Un)
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   708
    show "{x \<in> space M. ?f (space M - (\<Union>i. Q i)) x \<noteq> ?f' (space M - (\<Union>i. Q i)) x} \<subseteq>
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   709
      ((space M - (\<Union>i. Q i)) \<inter> {x\<in>space M. f x \<noteq> \<infinity>}) \<union> ((space M - (\<Union>i. Q i)) \<inter> {x\<in>space M. f' x \<noteq> \<infinity>})" by (auto simp: indicator_def)
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   710
  qed
63330
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   711
  moreover have "AE x in M. (?f (space M - (\<Union>i. Q i)) x = ?f' (space M - (\<Union>i. Q i)) x) \<longrightarrow> (\<forall>i. ?f (Q i) x = ?f' (Q i) x) \<longrightarrow>
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   712
    ?f (space M) x = ?f' (space M) x"
63330
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   713
    by (auto simp: indicator_def)
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   714
  ultimately have "AE x in M. ?f (space M) x = ?f' (space M) x"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   715
    unfolding AE_all_countable[symmetric]
63330
8d591640c3bd Probability: introduce Hahn decomposition; use it to clean up Radon_Nikodym
hoelzl
parents: 63329
diff changeset
   716
    by eventually_elim (auto split: if_split_asm simp: indicator_def)
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   717
  then show "AE x in M. f x = f' x" by auto
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   718
qed
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   719
69730
0c3dcb3a17f6 tagged 5 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
   720
proposition (in sigma_finite_measure) density_unique:
62975
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   721
  assumes f: "f \<in> borel_measurable M"
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   722
  assumes f': "f' \<in> borel_measurable M"
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   723
  assumes density_eq: "density M f = density M f'"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   724
  shows "AE x in M. f x = f' x"
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   725
proof -
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   726
  obtain h where h_borel: "h \<in> borel_measurable M"
56996
891e992e510f renamed positive_integral to nn_integral
hoelzl
parents: 56994
diff changeset
   727
    and fin: "integral\<^sup>N M h \<noteq> \<infinity>" and pos: "\<And>x. x \<in> space M \<Longrightarrow> 0 < h x \<and> h x < \<infinity>" "\<And>x. 0 \<le> h x"
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   728
    using Ex_finite_integrable_function by auto
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   729
  then have h_nn: "AE x in M. 0 \<le> h x" by auto
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   730
  let ?H = "density M h"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   731
  interpret h: finite_measure ?H
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   732
    using fin h_borel pos
56996
891e992e510f renamed positive_integral to nn_integral
hoelzl
parents: 56994
diff changeset
   733
    by (intro finite_measureI) (simp cong: nn_integral_cong emeasure_density add: fin)
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   734
  let ?fM = "density M f"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   735
  let ?f'M = "density M f'"
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   736
  { fix A assume "A \<in> sets M"
41981
cdf7693bbe08 reworked Probability theory: measures are not type restricted to positive extended reals
hoelzl
parents: 41832
diff changeset
   737
    then have "{x \<in> space M. h x * indicator A x \<noteq> 0} = A"
50244
de72bbe42190 qualified interpretation of sigma_algebra, to avoid name clashes
immler
parents: 50021
diff changeset
   738
      using pos(1) sets.sets_into_space by (force simp: indicator_def)
53015
a1119cf551e8 standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents: 52141
diff changeset
   739
    then have "(\<integral>\<^sup>+x. h x * indicator A x \<partial>M) = 0 \<longleftrightarrow> A \<in> null_sets M"
61808
fc1556774cfe isabelle update_cartouches -c -t;
wenzelm
parents: 61610
diff changeset
   740
      using h_borel \<open>A \<in> sets M\<close> h_nn by (subst nn_integral_0_iff) auto }
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   741
  note h_null_sets = this
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   742
  { fix A assume "A \<in> sets M"
53015
a1119cf551e8 standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents: 52141
diff changeset
   743
    have "(\<integral>\<^sup>+x. f x * (h x * indicator A x) \<partial>M) = (\<integral>\<^sup>+x. h x * indicator A x \<partial>?fM)"
61808
fc1556774cfe isabelle update_cartouches -c -t;
wenzelm
parents: 61610
diff changeset
   744
      using \<open>A \<in> sets M\<close> h_borel h_nn f f'
56996
891e992e510f renamed positive_integral to nn_integral
hoelzl
parents: 56994
diff changeset
   745
      by (intro nn_integral_density[symmetric]) auto
53015
a1119cf551e8 standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents: 52141
diff changeset
   746
    also have "\<dots> = (\<integral>\<^sup>+x. h x * indicator A x \<partial>?f'M)"
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   747
      by (simp_all add: density_eq)
53015
a1119cf551e8 standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents: 52141
diff changeset
   748
    also have "\<dots> = (\<integral>\<^sup>+x. f' x * (h x * indicator A x) \<partial>M)"
61808
fc1556774cfe isabelle update_cartouches -c -t;
wenzelm
parents: 61610
diff changeset
   749
      using \<open>A \<in> sets M\<close> h_borel h_nn f f'
56996
891e992e510f renamed positive_integral to nn_integral
hoelzl
parents: 56994
diff changeset
   750
      by (intro nn_integral_density) auto
53015
a1119cf551e8 standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents: 52141
diff changeset
   751
    finally have "(\<integral>\<^sup>+x. h x * (f x * indicator A x) \<partial>M) = (\<integral>\<^sup>+x. h x * (f' x * indicator A x) \<partial>M)"
41981
cdf7693bbe08 reworked Probability theory: measures are not type restricted to positive extended reals
hoelzl
parents: 41832
diff changeset
   752
      by (simp add: ac_simps)
53015
a1119cf551e8 standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents: 52141
diff changeset
   753
    then have "(\<integral>\<^sup>+x. (f x * indicator A x) \<partial>?H) = (\<integral>\<^sup>+x. (f' x * indicator A x) \<partial>?H)"
61808
fc1556774cfe isabelle update_cartouches -c -t;
wenzelm
parents: 61610
diff changeset
   754
      using \<open>A \<in> sets M\<close> h_borel h_nn f f'
56996
891e992e510f renamed positive_integral to nn_integral
hoelzl
parents: 56994
diff changeset
   755
      by (subst (asm) (1 2) nn_integral_density[symmetric]) auto }
41981
cdf7693bbe08 reworked Probability theory: measures are not type restricted to positive extended reals
hoelzl
parents: 41832
diff changeset
   756
  then have "AE x in ?H. f x = f' x" using h_borel h_nn f f'
62975
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   757
    by (intro h.density_unique_finite_measure absolutely_continuous_AE[of M]) auto
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   758
  with AE_space[of M] pos show "AE x in M. f x = f' x"
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   759
    unfolding AE_density[OF h_borel] by auto
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   760
qed
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   761
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   762
lemma (in sigma_finite_measure) density_unique_iff:
62975
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   763
  assumes f: "f \<in> borel_measurable M" and f': "f' \<in> borel_measurable M"
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   764
  shows "density M f = density M f' \<longleftrightarrow> (AE x in M. f x = f' x)"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   765
  using density_unique[OF assms] density_cong[OF f f'] by auto
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   766
69730
0c3dcb3a17f6 tagged 5 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
   767
lemma sigma_finite_density_unique:
49785
0a8adca22974 simplified entropy_uniform
hoelzl
parents: 49778
diff changeset
   768
  assumes borel: "f \<in> borel_measurable M" "g \<in> borel_measurable M"
0a8adca22974 simplified entropy_uniform
hoelzl
parents: 49778
diff changeset
   769
  and fin: "sigma_finite_measure (density M f)"
0a8adca22974 simplified entropy_uniform
hoelzl
parents: 49778
diff changeset
   770
  shows "density M f = density M g \<longleftrightarrow> (AE x in M. f x = g x)"
69730
0c3dcb3a17f6 tagged 5 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
   771
proof
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 61169
diff changeset
   772
  assume "AE x in M. f x = g x" with borel show "density M f = density M g"
49785
0a8adca22974 simplified entropy_uniform
hoelzl
parents: 49778
diff changeset
   773
    by (auto intro: density_cong)
0a8adca22974 simplified entropy_uniform
hoelzl
parents: 49778
diff changeset
   774
next
0a8adca22974 simplified entropy_uniform
hoelzl
parents: 49778
diff changeset
   775
  assume eq: "density M f = density M g"
61605
1bf7b186542e qualifier is mandatory by default;
wenzelm
parents: 61169
diff changeset
   776
  interpret f: sigma_finite_measure "density M f" by fact
49785
0a8adca22974 simplified entropy_uniform
hoelzl
parents: 49778
diff changeset
   777
  from f.sigma_finite_incseq guess A . note cover = this
0a8adca22974 simplified entropy_uniform
hoelzl
parents: 49778
diff changeset
   778
0a8adca22974 simplified entropy_uniform
hoelzl
parents: 49778
diff changeset
   779
  have "AE x in M. \<forall>i. x \<in> A i \<longrightarrow> f x = g x"
0a8adca22974 simplified entropy_uniform
hoelzl
parents: 49778
diff changeset
   780
    unfolding AE_all_countable
0a8adca22974 simplified entropy_uniform
hoelzl
parents: 49778
diff changeset
   781
  proof
0a8adca22974 simplified entropy_uniform
hoelzl
parents: 49778
diff changeset
   782
    fix i
0a8adca22974 simplified entropy_uniform
hoelzl
parents: 49778
diff changeset
   783
    have "density (density M f) (indicator (A i)) = density (density M g) (indicator (A i))"
0a8adca22974 simplified entropy_uniform
hoelzl
parents: 49778
diff changeset
   784
      unfolding eq ..
53015
a1119cf551e8 standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents: 52141
diff changeset
   785
    moreover have "(\<integral>\<^sup>+x. f x * indicator (A i) x \<partial>M) \<noteq> \<infinity>"
49785
0a8adca22974 simplified entropy_uniform
hoelzl
parents: 49778
diff changeset
   786
      using cover(1) cover(3)[of i] borel by (auto simp: emeasure_density subset_eq)
0a8adca22974 simplified entropy_uniform
hoelzl
parents: 49778
diff changeset
   787
    ultimately have "AE x in M. f x * indicator (A i) x = g x * indicator (A i) x"
62975
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   788
      using borel cover(1)
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   789
      by (intro finite_density_unique[THEN iffD1]) (auto simp: density_density_eq subset_eq)
49785
0a8adca22974 simplified entropy_uniform
hoelzl
parents: 49778
diff changeset
   790
    then show "AE x in M. x \<in> A i \<longrightarrow> f x = g x"
0a8adca22974 simplified entropy_uniform
hoelzl
parents: 49778
diff changeset
   791
      by auto
0a8adca22974 simplified entropy_uniform
hoelzl
parents: 49778
diff changeset
   792
  qed
0a8adca22974 simplified entropy_uniform
hoelzl
parents: 49778
diff changeset
   793
  with AE_space show "AE x in M. f x = g x"
0a8adca22974 simplified entropy_uniform
hoelzl
parents: 49778
diff changeset
   794
    apply eventually_elim
0a8adca22974 simplified entropy_uniform
hoelzl
parents: 49778
diff changeset
   795
    using cover(2)[symmetric]
0a8adca22974 simplified entropy_uniform
hoelzl
parents: 49778
diff changeset
   796
    apply auto
0a8adca22974 simplified entropy_uniform
hoelzl
parents: 49778
diff changeset
   797
    done
0a8adca22974 simplified entropy_uniform
hoelzl
parents: 49778
diff changeset
   798
qed
0a8adca22974 simplified entropy_uniform
hoelzl
parents: 49778
diff changeset
   799
69730
0c3dcb3a17f6 tagged 5 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
   800
lemma (in sigma_finite_measure) sigma_finite_iff_density_finite':
62975
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   801
  assumes f: "f \<in> borel_measurable M"
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   802
  shows "sigma_finite_measure (density M f) \<longleftrightarrow> (AE x in M. f x \<noteq> \<infinity>)"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   803
    (is "sigma_finite_measure ?N \<longleftrightarrow> _")
69730
0c3dcb3a17f6 tagged 5 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
   804
proof
41689
3e39b0e730d6 the measure valuation is again part of the measure_space type, instead of an explicit parameter to the locale;
hoelzl
parents: 41661
diff changeset
   805
  assume "sigma_finite_measure ?N"
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   806
  then interpret N: sigma_finite_measure ?N .
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   807
  from N.Ex_finite_integrable_function obtain h where
56996
891e992e510f renamed positive_integral to nn_integral
hoelzl
parents: 56994
diff changeset
   808
    h: "h \<in> borel_measurable M" "integral\<^sup>N ?N h \<noteq> \<infinity>" and
62975
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   809
    fin: "\<forall>x\<in>space M. 0 < h x \<and> h x < \<infinity>"
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   810
    by auto
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   811
  have "AE x in M. f x * h x \<noteq> \<infinity>"
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   812
  proof (rule AE_I')
62975
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   813
    have "integral\<^sup>N ?N h = (\<integral>\<^sup>+x. f x * h x \<partial>M)"
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   814
      using f h by (auto intro!: nn_integral_density)
53015
a1119cf551e8 standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents: 52141
diff changeset
   815
    then have "(\<integral>\<^sup>+x. f x * h x \<partial>M) \<noteq> \<infinity>"
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   816
      using h(2) by simp
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   817
    then show "(\<lambda>x. f x * h x) -` {\<infinity>} \<inter> space M \<in> null_sets M"
62975
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   818
      using f h(1) by (auto intro!: nn_integral_PInf[unfolded infinity_ennreal_def] borel_measurable_vimage)
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   819
  qed auto
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   820
  then show "AE x in M. f x \<noteq> \<infinity>"
62975
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   821
    using fin by (auto elim!: AE_Ball_mp simp: less_top ennreal_mult_less_top)
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   822
next
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   823
  assume AE: "AE x in M. f x \<noteq> \<infinity>"
57447
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 56996
diff changeset
   824
  from sigma_finite guess Q . note Q = this
63040
eb4ddd18d635 eliminated old 'def';
wenzelm
parents: 62975
diff changeset
   825
  define A where "A i =
eb4ddd18d635 eliminated old 'def';
wenzelm
parents: 62975
diff changeset
   826
    f -` (case i of 0 \<Rightarrow> {\<infinity>} | Suc n \<Rightarrow> {.. ennreal(of_nat (Suc n))}) \<inter> space M" for i
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   827
  { fix i j have "A i \<inter> Q j \<in> sets M"
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   828
    unfolding A_def using f Q
50244
de72bbe42190 qualified interpretation of sigma_algebra, to avoid name clashes
immler
parents: 50021
diff changeset
   829
    apply (rule_tac sets.Int)
41981
cdf7693bbe08 reworked Probability theory: measures are not type restricted to positive extended reals
hoelzl
parents: 41832
diff changeset
   830
    by (cases i) (auto intro: measurable_sets[OF f(1)]) }
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   831
  note A_in_sets = this
57447
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 56996
diff changeset
   832
41689
3e39b0e730d6 the measure valuation is again part of the measure_space type, instead of an explicit parameter to the locale;
hoelzl
parents: 41661
diff changeset
   833
  show "sigma_finite_measure ?N"
61169
4de9ff3ea29a tuned proofs -- less legacy;
wenzelm
parents: 60585
diff changeset
   834
  proof (standard, intro exI conjI ballI)
57447
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 56996
diff changeset
   835
    show "countable (range (\<lambda>(i, j). A i \<inter> Q j))"
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 56996
diff changeset
   836
      by auto
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 56996
diff changeset
   837
    show "range (\<lambda>(i, j). A i \<inter> Q j) \<subseteq> sets (density M f)"
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 56996
diff changeset
   838
      using A_in_sets by auto
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   839
  next
69745
aec42cee2521 more canonical and less specialized syntax
nipkow
parents: 69739
diff changeset
   840
    have "\<Union>(range (\<lambda>(i, j). A i \<inter> Q j)) = (\<Union>i j. A i \<inter> Q j)"
57447
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 56996
diff changeset
   841
      by auto
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   842
    also have "\<dots> = (\<Union>i. A i) \<inter> space M" using Q by auto
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   843
    also have "(\<Union>i. A i) = space M"
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   844
    proof safe
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   845
      fix x assume x: "x \<in> space M"
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   846
      show "x \<in> (\<Union>i. A i)"
62975
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   847
      proof (cases "f x" rule: ennreal_cases)
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   848
        case top with x show ?thesis unfolding A_def by (auto intro: exI[of _ 0])
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   849
      next
41981
cdf7693bbe08 reworked Probability theory: measures are not type restricted to positive extended reals
hoelzl
parents: 41832
diff changeset
   850
        case (real r)
62975
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   851
        with ennreal_Ex_less_of_nat[of "f x"] obtain n :: nat where "f x < n"
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   852
          by auto
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   853
        also have "n < (Suc n :: ennreal)"
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   854
          by simp
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   855
        finally show ?thesis
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   856
          using x real by (auto simp: A_def ennreal_of_nat_eq_real_of_nat intro!: exI[of _ "Suc n"])
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   857
      qed
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   858
    qed (auto simp: A_def)
69745
aec42cee2521 more canonical and less specialized syntax
nipkow
parents: 69739
diff changeset
   859
    finally show "\<Union>(range (\<lambda>(i, j). A i \<inter> Q j)) = space ?N" by simp
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   860
  next
57447
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 56996
diff changeset
   861
    fix X assume "X \<in> range (\<lambda>(i, j). A i \<inter> Q j)"
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 56996
diff changeset
   862
    then obtain i j where [simp]:"X = A i \<inter> Q j" by auto
53015
a1119cf551e8 standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents: 52141
diff changeset
   863
    have "(\<integral>\<^sup>+x. f x * indicator (A i \<inter> Q j) x \<partial>M) \<noteq> \<infinity>"
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   864
    proof (cases i)
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   865
      case 0
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   866
      have "AE x in M. f x * indicator (A i \<inter> Q j) x = 0"
61808
fc1556774cfe isabelle update_cartouches -c -t;
wenzelm
parents: 61610
diff changeset
   867
        using AE by (auto simp: A_def \<open>i = 0\<close>)
56996
891e992e510f renamed positive_integral to nn_integral
hoelzl
parents: 56994
diff changeset
   868
      from nn_integral_cong_AE[OF this] show ?thesis by simp
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   869
    next
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   870
      case (Suc n)
53015
a1119cf551e8 standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents: 52141
diff changeset
   871
      then have "(\<integral>\<^sup>+x. f x * indicator (A i \<inter> Q j) x \<partial>M) \<le>
62975
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   872
        (\<integral>\<^sup>+x. (Suc n :: ennreal) * indicator (Q j) x \<partial>M)"
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   873
        by (auto intro!: nn_integral_mono simp: indicator_def A_def ennreal_of_nat_eq_real_of_nat)
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   874
      also have "\<dots> = Suc n * emeasure M (Q j)"
56996
891e992e510f renamed positive_integral to nn_integral
hoelzl
parents: 56994
diff changeset
   875
        using Q by (auto intro!: nn_integral_cmult_indicator)
41981
cdf7693bbe08 reworked Probability theory: measures are not type restricted to positive extended reals
hoelzl
parents: 41832
diff changeset
   876
      also have "\<dots> < \<infinity>"
62975
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   877
        using Q by (auto simp: ennreal_mult_less_top less_top of_nat_less_top)
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   878
      finally show ?thesis by simp
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   879
    qed
57447
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 56996
diff changeset
   880
    then show "emeasure ?N X \<noteq> \<infinity>"
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   881
      using A_in_sets Q f by (auto simp: emeasure_density)
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   882
  qed
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   883
qed
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   884
49778
bbbc0f492780 sigma_finite_iff_density_finite does not require a positive density function
hoelzl
parents: 47694
diff changeset
   885
lemma (in sigma_finite_measure) sigma_finite_iff_density_finite:
bbbc0f492780 sigma_finite_iff_density_finite does not require a positive density function
hoelzl
parents: 47694
diff changeset
   886
  "f \<in> borel_measurable M \<Longrightarrow> sigma_finite_measure (density M f) \<longleftrightarrow> (AE x in M. f x \<noteq> \<infinity>)"
62975
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   887
  by (subst sigma_finite_iff_density_finite')
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   888
     (auto simp: max_def intro!: measurable_If)
49778
bbbc0f492780 sigma_finite_iff_density_finite does not require a positive density function
hoelzl
parents: 47694
diff changeset
   889
69683
8b3458ca0762 subsection is always %important
immler
parents: 69517
diff changeset
   890
subsection \<open>Radon-Nikodym derivative\<close>
38656
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   891
70136
f03a01a18c6e modernized tags: default scope excludes proof;
wenzelm
parents: 69745
diff changeset
   892
definition\<^marker>\<open>tag important\<close> RN_deriv :: "'a measure \<Rightarrow> 'a measure \<Rightarrow> 'a \<Rightarrow> ennreal" where
56993
e5366291d6aa introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents: 56537
diff changeset
   893
  "RN_deriv M N =
62975
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   894
    (if \<exists>f. f \<in> borel_measurable M \<and> density M f = N
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   895
       then SOME f. f \<in> borel_measurable M \<and> density M f = N
56993
e5366291d6aa introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents: 56537
diff changeset
   896
       else (\<lambda>_. 0))"
38656
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   897
69730
0c3dcb3a17f6 tagged 5 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
   898
lemma RN_derivI:
62975
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   899
  assumes "f \<in> borel_measurable M" "density M f = N"
56993
e5366291d6aa introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents: 56537
diff changeset
   900
  shows "density M (RN_deriv M N) = N"
69730
0c3dcb3a17f6 tagged 5 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
   901
proof -
63540
f8652d0534fa tuned proofs -- avoid unstructured calculation;
wenzelm
parents: 63333
diff changeset
   902
  have *: "\<exists>f. f \<in> borel_measurable M \<and> density M f = N"
56993
e5366291d6aa introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents: 56537
diff changeset
   903
    using assms by auto
63540
f8652d0534fa tuned proofs -- avoid unstructured calculation;
wenzelm
parents: 63333
diff changeset
   904
  then have "density M (SOME f. f \<in> borel_measurable M \<and> density M f = N) = N"
56993
e5366291d6aa introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents: 56537
diff changeset
   905
    by (rule someI2_ex) auto
63540
f8652d0534fa tuned proofs -- avoid unstructured calculation;
wenzelm
parents: 63333
diff changeset
   906
  with * show ?thesis
56993
e5366291d6aa introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents: 56537
diff changeset
   907
    by (auto simp: RN_deriv_def)
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   908
qed
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   909
62975
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   910
lemma borel_measurable_RN_deriv[measurable]: "RN_deriv M N \<in> borel_measurable M"
38656
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   911
proof -
62975
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   912
  { assume ex: "\<exists>f. f \<in> borel_measurable M \<and> density M f = N"
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   913
    have 1: "(SOME f. f \<in> borel_measurable M \<and> density M f = N) \<in> borel_measurable M"
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   914
      using ex by (rule someI2_ex) auto }
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   915
  from this show ?thesis
56993
e5366291d6aa introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents: 56537
diff changeset
   916
    by (auto simp: RN_deriv_def)
38656
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   917
qed
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
   918
56993
e5366291d6aa introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents: 56537
diff changeset
   919
lemma density_RN_deriv_density:
62975
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   920
  assumes f: "f \<in> borel_measurable M"
56993
e5366291d6aa introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents: 56537
diff changeset
   921
  shows "density M (RN_deriv M (density M f)) = density M f"
62975
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   922
  by (rule RN_derivI[OF f]) simp
56993
e5366291d6aa introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents: 56537
diff changeset
   923
e5366291d6aa introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents: 56537
diff changeset
   924
lemma (in sigma_finite_measure) density_RN_deriv:
e5366291d6aa introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents: 56537
diff changeset
   925
  "absolutely_continuous M N \<Longrightarrow> sets N = sets M \<Longrightarrow> density M (RN_deriv M N) = N"
e5366291d6aa introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents: 56537
diff changeset
   926
  by (metis RN_derivI Radon_Nikodym)
e5366291d6aa introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents: 56537
diff changeset
   927
69730
0c3dcb3a17f6 tagged 5 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
   928
lemma (in sigma_finite_measure) RN_deriv_nn_integral:
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   929
  assumes N: "absolutely_continuous M N" "sets N = sets M"
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   930
    and f: "f \<in> borel_measurable M"
56996
891e992e510f renamed positive_integral to nn_integral
hoelzl
parents: 56994
diff changeset
   931
  shows "integral\<^sup>N N f = (\<integral>\<^sup>+x. RN_deriv M N x * f x \<partial>M)"
69730
0c3dcb3a17f6 tagged 5 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
   932
proof -
56996
891e992e510f renamed positive_integral to nn_integral
hoelzl
parents: 56994
diff changeset
   933
  have "integral\<^sup>N N f = integral\<^sup>N (density M (RN_deriv M N)) f"
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   934
    using N by (simp add: density_RN_deriv)
53015
a1119cf551e8 standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents: 52141
diff changeset
   935
  also have "\<dots> = (\<integral>\<^sup>+x. RN_deriv M N x * f x \<partial>M)"
62975
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   936
    using f by (simp add: nn_integral_density)
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   937
  finally show ?thesis by simp
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   938
qed
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
   939
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   940
lemma (in sigma_finite_measure) RN_deriv_unique:
62975
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   941
  assumes f: "f \<in> borel_measurable M"
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   942
  and eq: "density M f = N"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   943
  shows "AE x in M. f x = RN_deriv M N x"
49785
0a8adca22974 simplified entropy_uniform
hoelzl
parents: 49778
diff changeset
   944
  unfolding eq[symmetric]
56993
e5366291d6aa introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents: 56537
diff changeset
   945
  by (intro density_unique_iff[THEN iffD1] f borel_measurable_RN_deriv
62975
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   946
            density_RN_deriv_density[symmetric])
49785
0a8adca22974 simplified entropy_uniform
hoelzl
parents: 49778
diff changeset
   947
0a8adca22974 simplified entropy_uniform
hoelzl
parents: 49778
diff changeset
   948
lemma RN_deriv_unique_sigma_finite:
62975
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   949
  assumes f: "f \<in> borel_measurable M"
49785
0a8adca22974 simplified entropy_uniform
hoelzl
parents: 49778
diff changeset
   950
  and eq: "density M f = N" and fin: "sigma_finite_measure N"
0a8adca22974 simplified entropy_uniform
hoelzl
parents: 49778
diff changeset
   951
  shows "AE x in M. f x = RN_deriv M N x"
0a8adca22974 simplified entropy_uniform
hoelzl
parents: 49778
diff changeset
   952
  using fin unfolding eq[symmetric]
56993
e5366291d6aa introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents: 56537
diff changeset
   953
  by (intro sigma_finite_density_unique[THEN iffD1] f borel_measurable_RN_deriv
62975
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
   954
            density_RN_deriv_density[symmetric])
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   955
69730
0c3dcb3a17f6 tagged 5 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
   956
lemma (in sigma_finite_measure) RN_deriv_distr:
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   957
  fixes T :: "'a \<Rightarrow> 'b"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   958
  assumes T: "T \<in> measurable M M'" and T': "T' \<in> measurable M' M"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   959
    and inv: "\<forall>x\<in>space M. T' (T x) = x"
50021
d96a3f468203 add support for function application to measurability prover
hoelzl
parents: 50003
diff changeset
   960
  and ac[simp]: "absolutely_continuous (distr M M' T) (distr N M' T)"
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   961
  and N: "sets N = sets M"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   962
  shows "AE x in M. RN_deriv (distr M M' T) (distr N M' T) (T x) = RN_deriv M N x"
69730
0c3dcb3a17f6 tagged 5 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
   963
proof (rule RN_deriv_unique)
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   964
  have [simp]: "sets N = sets M" by fact
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   965
  note sets_eq_imp_space_eq[OF N, simp]
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   966
  have measurable_N[simp]: "\<And>M'. measurable N M' = measurable M M'" by (auto simp: measurable_def)
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   967
  { fix A assume "A \<in> sets M"
50244
de72bbe42190 qualified interpretation of sigma_algebra, to avoid name clashes
immler
parents: 50021
diff changeset
   968
    with inv T T' sets.sets_into_space[OF this]
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   969
    have "T -` T' -` A \<inter> T -` space M' \<inter> space M = A"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   970
      by (auto simp: measurable_def) }
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   971
  note eq = this[simp]
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   972
  { fix A assume "A \<in> sets M"
50244
de72bbe42190 qualified interpretation of sigma_algebra, to avoid name clashes
immler
parents: 50021
diff changeset
   973
    with inv T T' sets.sets_into_space[OF this]
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   974
    have "(T' \<circ> T) -` A \<inter> space M = A"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   975
      by (auto simp: measurable_def) }
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   976
  note eq2 = this[simp]
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   977
  let ?M' = "distr M M' T" and ?N' = "distr N M' T"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   978
  interpret M': sigma_finite_measure ?M'
41832
27cb9113b1a0 add lemma RN_deriv_vimage
hoelzl
parents: 41705
diff changeset
   979
  proof
57447
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 56996
diff changeset
   980
    from sigma_finite_countable guess F .. note F = this
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 56996
diff changeset
   981
    show "\<exists>A. countable A \<and> A \<subseteq> sets (distr M M' T) \<and> \<Union>A = space (distr M M' T) \<and> (\<forall>a\<in>A. emeasure (distr M M' T) a \<noteq> \<infinity>)"
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 56996
diff changeset
   982
    proof (intro exI conjI ballI)
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 56996
diff changeset
   983
      show *: "(\<lambda>A. T' -` A \<inter> space ?M') ` F \<subseteq> sets ?M'"
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   984
        using F T' by (auto simp: measurable_def)
57447
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 56996
diff changeset
   985
      show "\<Union>((\<lambda>A. T' -` A \<inter> space ?M')`F) = space ?M'"
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 56996
diff changeset
   986
        using F T'[THEN measurable_space] by (auto simp: set_eq_iff)
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 56996
diff changeset
   987
    next
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 56996
diff changeset
   988
      fix X assume "X \<in> (\<lambda>A. T' -` A \<inter> space ?M')`F"
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 56996
diff changeset
   989
      then obtain A where [simp]: "X = T' -` A \<inter> space ?M'" and "A \<in> F" by auto
61808
fc1556774cfe isabelle update_cartouches -c -t;
wenzelm
parents: 61610
diff changeset
   990
      have "X \<in> sets M'" using F T' \<open>A\<in>F\<close> by auto
41832
27cb9113b1a0 add lemma RN_deriv_vimage
hoelzl
parents: 41705
diff changeset
   991
      moreover
61808
fc1556774cfe isabelle update_cartouches -c -t;
wenzelm
parents: 61610
diff changeset
   992
      have Fi: "A \<in> sets M" using F \<open>A\<in>F\<close> by auto
57447
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 56996
diff changeset
   993
      ultimately show "emeasure ?M' X \<noteq> \<infinity>"
61808
fc1556774cfe isabelle update_cartouches -c -t;
wenzelm
parents: 61610
diff changeset
   994
        using F T T' \<open>A\<in>F\<close> by (simp add: emeasure_distr)
57447
87429bdecad5 import more stuff from the CLT proof; base the lborel measure on interval_measure; remove lebesgue measure
hoelzl
parents: 56996
diff changeset
   995
    qed (insert F, auto)
41832
27cb9113b1a0 add lemma RN_deriv_vimage
hoelzl
parents: 41705
diff changeset
   996
  qed
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   997
  have "(RN_deriv ?M' ?N') \<circ> T \<in> borel_measurable M"
50021
d96a3f468203 add support for function application to measurability prover
hoelzl
parents: 50003
diff changeset
   998
    using T ac by measurable
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
   999
  then show "(\<lambda>x. RN_deriv ?M' ?N' (T x)) \<in> borel_measurable M"
41832
27cb9113b1a0 add lemma RN_deriv_vimage
hoelzl
parents: 41705
diff changeset
  1000
    by (simp add: comp_def)
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1001
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1002
  have "N = distr N M (T' \<circ> T)"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1003
    by (subst measure_of_of_measure[of N, symmetric])
50244
de72bbe42190 qualified interpretation of sigma_algebra, to avoid name clashes
immler
parents: 50021
diff changeset
  1004
       (auto simp add: distr_def sets.sigma_sets_eq intro!: measure_of_eq sets.space_closed)
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1005
  also have "\<dots> = distr (distr N M' T) M T'"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1006
    using T T' by (simp add: distr_distr)
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1007
  also have "\<dots> = distr (density (distr M M' T) (RN_deriv (distr M M' T) (distr N M' T))) M T'"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1008
    using ac by (simp add: M'.density_RN_deriv)
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1009
  also have "\<dots> = density M (RN_deriv (distr M M' T) (distr N M' T) \<circ> T)"
56993
e5366291d6aa introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents: 56537
diff changeset
  1010
    by (simp add: distr_density_distr[OF T T', OF inv])
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1011
  finally show "density M (\<lambda>x. RN_deriv (distr M M' T) (distr N M' T) (T x)) = N"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1012
    by (simp add: comp_def)
41832
27cb9113b1a0 add lemma RN_deriv_vimage
hoelzl
parents: 41705
diff changeset
  1013
qed
27cb9113b1a0 add lemma RN_deriv_vimage
hoelzl
parents: 41705
diff changeset
  1014
69730
0c3dcb3a17f6 tagged 5 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
  1015
lemma (in sigma_finite_measure) RN_deriv_finite:
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1016
  assumes N: "sigma_finite_measure N" and ac: "absolutely_continuous M N" "sets N = sets M"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1017
  shows "AE x in M. RN_deriv M N x \<noteq> \<infinity>"
69730
0c3dcb3a17f6 tagged 5 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
  1018
proof -
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1019
  interpret N: sigma_finite_measure N by fact
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1020
  from N show ?thesis
62975
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
  1021
    using sigma_finite_iff_density_finite[OF borel_measurable_RN_deriv, of N] density_RN_deriv[OF ac]
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
  1022
    by simp
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
  1023
qed
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
  1024
69739
nipkow
parents: 69730
diff changeset
  1025
lemma (in sigma_finite_measure)
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1026
  assumes N: "sigma_finite_measure N" and ac: "absolutely_continuous M N" "sets N = sets M"
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
  1027
    and f: "f \<in> borel_measurable M"
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1028
  shows RN_deriv_integrable: "integrable N f \<longleftrightarrow>
62975
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
  1029
      integrable M (\<lambda>x. enn2real (RN_deriv M N x) * f x)" (is ?integrable)
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
  1030
    and RN_deriv_integral: "integral\<^sup>L N f = (\<integral>x. enn2real (RN_deriv M N x) * f x \<partial>M)" (is ?integral)
69730
0c3dcb3a17f6 tagged 5 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
  1031
proof -
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1032
  note ac(2)[simp] and sets_eq_imp_space_eq[OF ac(2), simp]
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1033
  interpret N: sigma_finite_measure N by fact
56993
e5366291d6aa introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents: 56537
diff changeset
  1034
62975
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
  1035
  have eq: "density M (RN_deriv M N) = density M (\<lambda>x. enn2real (RN_deriv M N x))"
56993
e5366291d6aa introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents: 56537
diff changeset
  1036
  proof (rule density_cong)
e5366291d6aa introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents: 56537
diff changeset
  1037
    from RN_deriv_finite[OF assms(1,2,3)]
62975
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
  1038
    show "AE x in M. RN_deriv M N x = ennreal (enn2real (RN_deriv M N x))"
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
  1039
      by eventually_elim (auto simp: less_top)
56993
e5366291d6aa introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents: 56537
diff changeset
  1040
  qed (insert ac, auto)
e5366291d6aa introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents: 56537
diff changeset
  1041
e5366291d6aa introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents: 56537
diff changeset
  1042
  show ?integrable
e5366291d6aa introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents: 56537
diff changeset
  1043
    apply (subst density_RN_deriv[OF ac, symmetric])
e5366291d6aa introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents: 56537
diff changeset
  1044
    unfolding eq
62975
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
  1045
    apply (intro integrable_real_density f AE_I2 enn2real_nonneg)
56993
e5366291d6aa introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents: 56537
diff changeset
  1046
    apply (insert ac, auto)
e5366291d6aa introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents: 56537
diff changeset
  1047
    done
e5366291d6aa introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents: 56537
diff changeset
  1048
e5366291d6aa introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents: 56537
diff changeset
  1049
  show ?integral
e5366291d6aa introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents: 56537
diff changeset
  1050
    apply (subst density_RN_deriv[OF ac, symmetric])
e5366291d6aa introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents: 56537
diff changeset
  1051
    unfolding eq
62975
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
  1052
    apply (intro integral_real_density f AE_I2 enn2real_nonneg)
56993
e5366291d6aa introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents: 56537
diff changeset
  1053
    apply (insert ac, auto)
e5366291d6aa introduce Bochner integral: generalizes Lebesgue integral from real-valued function to functions on real-normed vector spaces
hoelzl
parents: 56537
diff changeset
  1054
    done
40859
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
  1055
qed
de0b30e6c2d2 Support product spaces on sigma finite measures.
hoelzl
parents: 39097
diff changeset
  1056
69730
0c3dcb3a17f6 tagged 5 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
  1057
proposition (in sigma_finite_measure) real_RN_deriv:
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1058
  assumes "finite_measure N"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1059
  assumes ac: "absolutely_continuous M N" "sets N = sets M"
43340
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42866
diff changeset
  1060
  obtains D where "D \<in> borel_measurable M"
62975
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
  1061
    and "AE x in M. RN_deriv M N x = ennreal (D x)"
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1062
    and "AE x in N. 0 < D x"
43340
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42866
diff changeset
  1063
    and "\<And>x. 0 \<le> D x"
69730
0c3dcb3a17f6 tagged 5 theories
Angeliki KoutsoukouArgyraki <ak2110@cam.ac.uk>
parents: 69683
diff changeset
  1064
proof
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1065
  interpret N: finite_measure N by fact
61609
77b453bd616f Coercion "real" now has type nat => real only and is no longer overloaded. Type class "real_of" is gone. Many duplicate theorems removed.
paulson <lp15@cam.ac.uk>
parents: 61169
diff changeset
  1066
62975
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
  1067
  note RN = borel_measurable_RN_deriv density_RN_deriv[OF ac]
43340
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42866
diff changeset
  1068
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1069
  let ?RN = "\<lambda>t. {x \<in> space M. RN_deriv M N x = t}"
43340
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42866
diff changeset
  1070
62975
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
  1071
  show "(\<lambda>x. enn2real (RN_deriv M N x)) \<in> borel_measurable M"
43340
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42866
diff changeset
  1072
    using RN by auto
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42866
diff changeset
  1073
53015
a1119cf551e8 standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents: 52141
diff changeset
  1074
  have "N (?RN \<infinity>) = (\<integral>\<^sup>+ x. RN_deriv M N x * indicator (?RN \<infinity>) x \<partial>M)"
62975
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
  1075
    using RN(1) by (subst RN(2)[symmetric]) (auto simp: emeasure_density)
53015
a1119cf551e8 standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents: 52141
diff changeset
  1076
  also have "\<dots> = (\<integral>\<^sup>+ x. \<infinity> * indicator (?RN \<infinity>) x \<partial>M)"
56996
891e992e510f renamed positive_integral to nn_integral
hoelzl
parents: 56994
diff changeset
  1077
    by (intro nn_integral_cong) (auto simp: indicator_def)
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1078
  also have "\<dots> = \<infinity> * emeasure M (?RN \<infinity>)"
56996
891e992e510f renamed positive_integral to nn_integral
hoelzl
parents: 56994
diff changeset
  1079
    using RN by (intro nn_integral_cmult_indicator) auto
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1080
  finally have eq: "N (?RN \<infinity>) = \<infinity> * emeasure M (?RN \<infinity>)" .
43340
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42866
diff changeset
  1081
  moreover
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1082
  have "emeasure M (?RN \<infinity>) = 0"
43340
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42866
diff changeset
  1083
  proof (rule ccontr)
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1084
    assume "emeasure M {x \<in> space M. RN_deriv M N x = \<infinity>} \<noteq> 0"
62975
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
  1085
    then have "0 < emeasure M {x \<in> space M. RN_deriv M N x = \<infinity>}"
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
  1086
      by (auto simp: zero_less_iff_neq_zero)
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
  1087
    with eq have "N (?RN \<infinity>) = \<infinity>" by (simp add: ennreal_mult_eq_top_iff)
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1088
    with N.emeasure_finite[of "?RN \<infinity>"] RN show False by auto
43340
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42866
diff changeset
  1089
  qed
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1090
  ultimately have "AE x in M. RN_deriv M N x < \<infinity>"
62975
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
  1091
    using RN by (intro AE_iff_measurable[THEN iffD2]) (auto simp: less_top[symmetric])
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
  1092
  then show "AE x in M. RN_deriv M N x = ennreal (enn2real (RN_deriv M N x))"
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
  1093
    by auto
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
  1094
  then have eq: "AE x in N. RN_deriv M N x = ennreal (enn2real (RN_deriv M N x))"
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1095
    using ac absolutely_continuous_AE by auto
43340
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42866
diff changeset
  1096
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42866
diff changeset
  1097
53015
a1119cf551e8 standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents: 52141
diff changeset
  1098
  have "N (?RN 0) = (\<integral>\<^sup>+ x. RN_deriv M N x * indicator (?RN 0) x \<partial>M)"
62975
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
  1099
    by (subst RN(2)[symmetric]) (auto simp: emeasure_density)
53015
a1119cf551e8 standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents: 52141
diff changeset
  1100
  also have "\<dots> = (\<integral>\<^sup>+ x. 0 \<partial>M)"
56996
891e992e510f renamed positive_integral to nn_integral
hoelzl
parents: 56994
diff changeset
  1101
    by (intro nn_integral_cong) (auto simp: indicator_def)
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1102
  finally have "AE x in N. RN_deriv M N x \<noteq> 0"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1103
    using RN by (subst AE_iff_measurable[OF _ refl]) (auto simp: ac cong: sets_eq_imp_space_eq)
62975
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
  1104
  with eq show "AE x in N. 0 < enn2real (RN_deriv M N x)"
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
  1105
    by (auto simp: enn2real_positive_iff less_top[symmetric] zero_less_iff_neq_zero)
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
  1106
qed (rule enn2real_nonneg)
43340
60e181c4eae4 lemma: independence is equal to mutual information = 0
hoelzl
parents: 42866
diff changeset
  1107
38656
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
  1108
lemma (in sigma_finite_measure) RN_deriv_singleton:
47694
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1109
  assumes ac: "absolutely_continuous M N" "sets N = sets M"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1110
  and x: "{x} \<in> sets M"
05663f75964c reworked Probability theory
hoelzl
parents: 46731
diff changeset
  1111
  shows "N {x} = RN_deriv M N x * emeasure M {x}"
38656
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
  1112
proof -
61808
fc1556774cfe isabelle update_cartouches -c -t;
wenzelm
parents: 61610
diff changeset
  1113
  from \<open>{x} \<in> sets M\<close>
53015
a1119cf551e8 standardized symbols via "isabelle update_sub_sup", excluding src/Pure and src/Tools/WWW_Find;
wenzelm
parents: 52141
diff changeset
  1114
  have "density M (RN_deriv M N) {x} = (\<integral>\<^sup>+w. RN_deriv M N x * indicator {x} w \<partial>M)"
56996
891e992e510f renamed positive_integral to nn_integral
hoelzl
parents: 56994
diff changeset
  1115
    by (auto simp: indicator_def emeasure_density intro!: nn_integral_cong)
62975
1d066f6ab25d Probability: move emeasure and nn_integral from ereal to ennreal
hoelzl
parents: 62623
diff changeset
  1116
  with x density_RN_deriv[OF ac] show ?thesis
62083
7582b39f51ed add the proof of the central limit theorem
hoelzl
parents: 61969
diff changeset
  1117
    by (auto simp: max_def)
38656
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
  1118
qed
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
  1119
d5d342611edb Rewrite the Probability theory.
hoelzl
parents:
diff changeset
  1120
end