(* Author: Sébastien Gouëzel sebastien.gouezel@univ-rennes1.fr
License: BSD
*)
section \<open>Conditional Expectation\<close>
theory Conditional_Expectation
imports Probability_Measure
begin
subsection \<open>Restricting a measure to a sub-sigma-algebra\<close>
definition subalgebra::"'a measure \<Rightarrow> 'a measure \<Rightarrow> bool" where
"subalgebra M F = ((space F = space M) \<and> (sets F \<subseteq> sets M))"
lemma sub_measure_space:
assumes i: "subalgebra M F"
shows "measure_space (space M) (sets F) (emeasure M)"
proof -
have "sigma_algebra (space M) (sets F)"
by (metis i measure_space measure_space_def subalgebra_def)
moreover have "positive (sets F) (emeasure M)"
using Sigma_Algebra.positive_def by auto
moreover have "countably_additive (sets F) (emeasure M)"
by (meson countably_additive_def emeasure_countably_additive i order_trans subalgebra_def subsetCE)
ultimately show ?thesis unfolding measure_space_def by simp
qed
definition restr_to_subalg::"'a measure \<Rightarrow> 'a measure \<Rightarrow> 'a measure" where
"restr_to_subalg M F = measure_of (space M) (sets F) (emeasure M)"
lemma space_restr_to_subalg:
"space (restr_to_subalg M F) = space M"
unfolding restr_to_subalg_def by (simp add: space_measure_of_conv)
lemma sets_restr_to_subalg [measurable_cong]:
assumes "subalgebra M F"
shows "sets (restr_to_subalg M F) = sets F"
unfolding restr_to_subalg_def by (metis sets.sets_measure_of_eq assms subalgebra_def)
lemma emeasure_restr_to_subalg:
assumes "subalgebra M F"
"A \<in> sets F"
shows "emeasure (restr_to_subalg M F) A = emeasure M A"
unfolding restr_to_subalg_def
by (metis assms subalgebra_def emeasure_measure_of_conv sub_measure_space sets.sigma_sets_eq)
lemma null_sets_restr_to_subalg:
assumes "subalgebra M F"
shows "null_sets (restr_to_subalg M F) = null_sets M \<inter> sets F"
proof
have "x \<in> null_sets M \<inter> sets F" if "x \<in> null_sets (restr_to_subalg M F)" for x
by (metis that Int_iff assms emeasure_restr_to_subalg null_setsD1 null_setsD2 null_setsI
sets_restr_to_subalg subalgebra_def subsetD)
then show "null_sets (restr_to_subalg M F) \<subseteq> null_sets M \<inter> sets F" by auto
next
have "x \<in> null_sets (restr_to_subalg M F)" if "x \<in> null_sets M \<inter> sets F" for x
by (metis that Int_iff assms null_setsD1 null_setsI sets_restr_to_subalg emeasure_restr_to_subalg[OF assms])
then show "null_sets M \<inter> sets F \<subseteq> null_sets (restr_to_subalg M F)" by auto
qed
lemma AE_restr_to_subalg:
assumes "subalgebra M F"
"AE x in (restr_to_subalg M F). P x"
shows "AE x in M. P x"
proof -
obtain A where A: "\<And>x. x \<in> space (restr_to_subalg M F) - A \<Longrightarrow> P x" "A \<in> null_sets (restr_to_subalg M F)"
using AE_E3[OF assms(2)] by auto
then have "A \<in> null_sets M" using null_sets_restr_to_subalg[OF assms(1)] by auto
moreover have "\<And>x. x \<in> space M - A \<Longrightarrow> P x"
using space_restr_to_subalg A(1) by fastforce
ultimately show ?thesis
unfolding eventually_ae_filter by auto
qed
lemma AE_restr_to_subalg2:
assumes "subalgebra M F"
"AE x in M. P x" and [measurable]: "P \<in> measurable F (count_space UNIV)"
shows "AE x in (restr_to_subalg M F). P x"
proof -
define U where "U = {x \<in> space M. \<not>(P x)}"
then have *: "U = {x \<in> space F. \<not>(P x)}" using assms(1) by (simp add: subalgebra_def)
then have "U \<in> sets F" by simp
then have "U \<in> sets M" using assms(1) by (meson subalgebra_def subsetD)
then have "U \<in> null_sets M" unfolding U_def using assms(2) using AE_iff_measurable by blast
then have "U \<in> null_sets (restr_to_subalg M F)" using null_sets_restr_to_subalg[OF assms(1)] \<open>U \<in> sets F\<close> by auto
then show ?thesis using * by (metis (no_types, lifting) Collect_mono U_def eventually_ae_filter space_restr_to_subalg)
qed
lemma prob_space_restr_to_subalg:
assumes "subalgebra M F"
"prob_space M"
shows "prob_space (restr_to_subalg M F)"
by (metis (no_types, lifting) assms(1) assms(2) emeasure_restr_to_subalg prob_space.emeasure_space_1 prob_spaceI
sets.top space_restr_to_subalg subalgebra_def)
lemma finite_measure_restr_to_subalg:
assumes "subalgebra M F"
"finite_measure M"
shows "finite_measure (restr_to_subalg M F)"
by (metis (no_types, lifting) assms emeasure_restr_to_subalg finite_measure.finite_emeasure_space
finite_measureI sets.top space_restr_to_subalg subalgebra_def infinity_ennreal_def)
lemma measurable_in_subalg:
assumes "subalgebra M F"
"f \<in> measurable F N"
shows "f \<in> measurable (restr_to_subalg M F) N"
by (metis measurable_cong_sets assms(2) sets_restr_to_subalg[OF assms(1)])
lemma measurable_in_subalg':
assumes "subalgebra M F"
"f \<in> measurable (restr_to_subalg M F) N"
shows "f \<in> measurable F N"
by (metis measurable_cong_sets assms(2) sets_restr_to_subalg[OF assms(1)])
lemma measurable_from_subalg:
assumes "subalgebra M F"
"f \<in> measurable F N"
shows "f \<in> measurable M N"
using assms unfolding measurable_def subalgebra_def by auto
text\<open>The following is the direct transposition of \verb+nn_integral_subalgebra+
(from \verb+Nonnegative_Lebesgue_Integration+) in the
current notations, with the removal of the useless assumption $f \geq 0$.\<close>
lemma nn_integral_subalgebra2:
assumes "subalgebra M F" and [measurable]: "f \<in> borel_measurable F"
shows "(\<integral>\<^sup>+ x. f x \<partial>(restr_to_subalg M F)) = (\<integral>\<^sup>+ x. f x \<partial>M)"
proof (rule nn_integral_subalgebra)
show "f \<in> borel_measurable (restr_to_subalg M F)"
by (rule measurable_in_subalg[OF assms(1)]) simp
show "sets (restr_to_subalg M F) \<subseteq> sets M" by (metis sets_restr_to_subalg[OF assms(1)] assms(1) subalgebra_def)
fix A assume "A \<in> sets (restr_to_subalg M F)"
then show "emeasure (restr_to_subalg M F) A = emeasure M A"
by (metis sets_restr_to_subalg[OF assms(1)] emeasure_restr_to_subalg[OF assms(1)])
qed (auto simp add: assms space_restr_to_subalg sets_restr_to_subalg[OF assms(1)])
text\<open>The following is the direct transposition of \verb+integral_subalgebra+
(from \verb+Bochner_Integration+) in the current notations.\<close>
lemma integral_subalgebra2:
fixes f :: "'a \<Rightarrow> 'b::{banach, second_countable_topology}"
assumes "subalgebra M F" and
[measurable]: "f \<in> borel_measurable F"
shows "(\<integral>x. f x \<partial>(restr_to_subalg M F)) = (\<integral>x. f x \<partial>M)"
by (rule integral_subalgebra,
metis measurable_in_subalg[OF assms(1)] assms(2),
auto simp add: assms space_restr_to_subalg sets_restr_to_subalg emeasure_restr_to_subalg,
meson assms(1) subalgebra_def subset_eq)
lemma integrable_from_subalg:
fixes f :: "'a \<Rightarrow> 'b::{banach, second_countable_topology}"
assumes "subalgebra M F"
"integrable (restr_to_subalg M F) f"
shows "integrable M f"
proof (rule integrableI_bounded)
have [measurable]: "f \<in> borel_measurable F" using assms by auto
then show "f \<in> borel_measurable M" using assms(1) measurable_from_subalg by blast
have "(\<integral>\<^sup>+ x. ennreal (norm (f x)) \<partial>M) = (\<integral>\<^sup>+ x. ennreal (norm (f x)) \<partial>(restr_to_subalg M F))"
by (rule nn_integral_subalgebra2[symmetric], auto simp add: assms)
also have "... < \<infinity>" using integrable_iff_bounded assms by auto
finally show "(\<integral>\<^sup>+ x. ennreal (norm (f x)) \<partial>M) < \<infinity>" by simp
qed
lemma integrable_in_subalg:
fixes f :: "'a \<Rightarrow> 'b::{banach, second_countable_topology}"
assumes [measurable]: "subalgebra M F"
"f \<in> borel_measurable F"
"integrable M f"
shows "integrable (restr_to_subalg M F) f"
proof (rule integrableI_bounded)
show "f \<in> borel_measurable (restr_to_subalg M F)" using assms(2) assms(1) by auto
have "(\<integral>\<^sup>+ x. ennreal (norm (f x)) \<partial>(restr_to_subalg M F)) = (\<integral>\<^sup>+ x. ennreal (norm (f x)) \<partial>M)"
by (rule nn_integral_subalgebra2, auto simp add: assms)
also have "... < \<infinity>" using integrable_iff_bounded assms by auto
finally show "(\<integral>\<^sup>+ x. ennreal (norm (f x)) \<partial>(restr_to_subalg M F)) < \<infinity>" by simp
qed
subsection \<open>Nonnegative conditional expectation\<close>
text \<open>The conditional expectation of a function $f$, on a measure space $M$, with respect to a
sub sigma algebra $F$, should be a function $g$ which is $F$-measurable whose integral on any
$F$-set coincides with the integral of $f$.
Such a function is uniquely defined almost everywhere.
The most direct construction is to use the measure $f dM$, restrict it to the sigma-algebra $F$,
and apply the Radon-Nikodym theorem to write it as $g dM_{|F}$ for some $F$-measurable function $g$.
Another classical construction for $L^2$ functions is done by orthogonal projection on $F$-measurable
functions, and then extending by density to $L^1$. The Radon-Nikodym point of view avoids the $L^2$
machinery, and works for all positive functions.
In this paragraph, we develop the definition and basic properties for nonnegative functions,
as the basics of the general case. As in the definition of integrals, the nonnegative case is done
with ennreal-valued functions, without any integrability assumption.
\<close>
definition nn_cond_exp :: "'a measure \<Rightarrow> 'a measure \<Rightarrow> ('a \<Rightarrow> ennreal) \<Rightarrow> ('a \<Rightarrow> ennreal)"
where
"nn_cond_exp M F f =
(if f \<in> borel_measurable M \<and> subalgebra M F
then RN_deriv (restr_to_subalg M F) (restr_to_subalg (density M f) F)
else (\<lambda>_. 0))"
lemma
shows borel_measurable_nn_cond_exp [measurable]: "nn_cond_exp M F f \<in> borel_measurable F"
and borel_measurable_nn_cond_exp2 [measurable]: "nn_cond_exp M F f \<in> borel_measurable M"
by (simp_all add: nn_cond_exp_def)
(metis borel_measurable_RN_deriv borel_measurable_subalgebra sets_restr_to_subalg space_restr_to_subalg subalgebra_def)
text \<open>The good setting for conditional expectations is the situation where the subalgebra $F$
gives rise to a sigma-finite measure space. To see what goes wrong if it is not sigma-finite,
think of $\mathbb{R}$ with the trivial sigma-algebra $\{\emptyset, \mathbb{R}\}$. In this case,
conditional expectations have to be constant functions, so they have integral $0$ or $\infty$.
This means that a positive integrable function can have no meaningful conditional expectation.\<close>
locale sigma_finite_subalgebra =
fixes M F::"'a measure"
assumes subalg: "subalgebra M F"
and sigma_fin_subalg: "sigma_finite_measure (restr_to_subalg M F)"
lemma sigma_finite_subalgebra_is_sigma_finite:
assumes "sigma_finite_subalgebra M F"
shows "sigma_finite_measure M"
proof
have subalg: "subalgebra M F"
and sigma_fin_subalg: "sigma_finite_measure (restr_to_subalg M F)"
using assms unfolding sigma_finite_subalgebra_def by auto
obtain A where Ap: "countable A \<and> A \<subseteq> sets (restr_to_subalg M F) \<and> \<Union>A = space (restr_to_subalg M F) \<and> (\<forall>a\<in>A. emeasure (restr_to_subalg M F) a \<noteq> \<infinity>)"
using sigma_finite_measure.sigma_finite_countable[OF sigma_fin_subalg] by fastforce
have "A \<subseteq> sets F" using Ap sets_restr_to_subalg[OF subalg] by fastforce
then have "A \<subseteq> sets M" using subalg subalgebra_def by force
moreover have "\<Union>A = space M" using Ap space_restr_to_subalg by simp
moreover have "\<forall>a\<in>A. emeasure M a \<noteq> \<infinity>" by (metis subsetD emeasure_restr_to_subalg[OF subalg] \<open>A \<subseteq> sets F\<close> Ap)
ultimately show "\<exists>A. countable A \<and> A \<subseteq> sets M \<and> \<Union>A = space M \<and> (\<forall>a\<in>A. emeasure M a \<noteq> \<infinity>)" using Ap by auto
qed
sublocale sigma_finite_subalgebra \<subseteq> sigma_finite_measure
using sigma_finite_subalgebra_is_sigma_finite sigma_finite_subalgebra_axioms by blast
text \<open>Conditional expectations are very often used in probability spaces. This is a special case
of the previous one, as we prove now.\<close>
locale finite_measure_subalgebra = finite_measure +
fixes F::"'a measure"
assumes subalg: "subalgebra M F"
lemma finite_measure_subalgebra_is_sigma_finite:
assumes "finite_measure_subalgebra M F"
shows "sigma_finite_subalgebra M F"
proof -
interpret finite_measure_subalgebra M F using assms by simp
have "finite_measure (restr_to_subalg M F)"
using finite_measure_restr_to_subalg subalg finite_emeasure_space finite_measureI unfolding infinity_ennreal_def by blast
then have "sigma_finite_measure (restr_to_subalg M F)"
unfolding finite_measure_def by simp
then show "sigma_finite_subalgebra M F" unfolding sigma_finite_subalgebra_def using subalg by simp
qed
sublocale finite_measure_subalgebra \<subseteq> sigma_finite_subalgebra
proof -
have "finite_measure (restr_to_subalg M F)"
using finite_measure_restr_to_subalg subalg finite_emeasure_space finite_measureI unfolding infinity_ennreal_def by blast
then have "sigma_finite_measure (restr_to_subalg M F)"
unfolding finite_measure_def by simp
then show "sigma_finite_subalgebra M F" unfolding sigma_finite_subalgebra_def using subalg by simp
qed
context sigma_finite_subalgebra
begin
text\<open>The next lemma is arguably the most fundamental property of conditional expectation:
when computing an expectation against an $F$-measurable function, it is equivalent to work
with a function or with its $F$-conditional expectation.
This property (even for bounded test functions) characterizes conditional expectations, as the second lemma below shows.
From this point on, we will only work with it, and forget completely about
the definition using Radon-Nikodym derivatives.
\<close>
lemma nn_cond_exp_intg:
assumes [measurable]: "f \<in> borel_measurable F" "g \<in> borel_measurable M"
shows "(\<integral>\<^sup>+ x. f x * nn_cond_exp M F g x \<partial>M) = (\<integral>\<^sup>+ x. f x * g x \<partial>M)"
proof -
have [measurable]: "f \<in> borel_measurable M"
by (meson assms subalg borel_measurable_subalgebra subalgebra_def)
have ac: "absolutely_continuous (restr_to_subalg M F) (restr_to_subalg (density M g) F)"
unfolding absolutely_continuous_def
proof -
have "null_sets (restr_to_subalg M F) = null_sets M \<inter> sets F" by (rule null_sets_restr_to_subalg[OF subalg])
moreover have "null_sets M \<subseteq> null_sets (density M g)"
by (rule absolutely_continuousI_density[unfolded absolutely_continuous_def]) auto
ultimately have "null_sets (restr_to_subalg M F) \<subseteq> null_sets (density M g) \<inter> sets F" by auto
moreover have "null_sets (density M g) \<inter> sets F = null_sets (restr_to_subalg (density M g) F)"
by (rule null_sets_restr_to_subalg[symmetric]) (metis subalg sets_density space_density subalgebra_def)
ultimately show "null_sets (restr_to_subalg M F) \<subseteq> null_sets (restr_to_subalg (density M g) F)" by auto
qed
have "(\<integral>\<^sup>+ x. f x * nn_cond_exp M F g x \<partial>M) = (\<integral>\<^sup>+ x. f x * nn_cond_exp M F g x \<partial>(restr_to_subalg M F))"
by (rule nn_integral_subalgebra2[symmetric]) (simp_all add: assms subalg)
also have "... = (\<integral>\<^sup>+ x. f x * RN_deriv (restr_to_subalg M F) (restr_to_subalg (density M g) F) x \<partial>(restr_to_subalg M F))"
unfolding nn_cond_exp_def using assms subalg by simp
also have "... = (\<integral>\<^sup>+ x. RN_deriv (restr_to_subalg M F) (restr_to_subalg (density M g) F) x * f x \<partial>(restr_to_subalg M F))"
by (simp add: mult.commute)
also have "... = (\<integral>\<^sup>+ x. f x \<partial>(restr_to_subalg (density M g) F))"
proof (rule sigma_finite_measure.RN_deriv_nn_integral[symmetric])
show "sets (restr_to_subalg (density M g) F) = sets (restr_to_subalg M F)"
by (metis subalg restr_to_subalg_def sets.sets_measure_of_eq space_density subalgebra_def)
qed (auto simp add: assms measurable_restrict ac measurable_in_subalg subalg sigma_fin_subalg)
also have "... = (\<integral>\<^sup>+ x. f x \<partial>(density M g))"
by (metis nn_integral_subalgebra2 subalg assms(1) sets_density space_density subalgebra_def)
also have "... = (\<integral>\<^sup>+ x. g x * f x \<partial>M)"
by (rule nn_integral_density) (simp_all add: assms)
also have "... = (\<integral>\<^sup>+ x. f x * g x \<partial>M)"
by (simp add: mult.commute)
finally show ?thesis by simp
qed
lemma nn_cond_exp_charact:
assumes "\<And>A. A \<in> sets F \<Longrightarrow> (\<integral>\<^sup>+ x \<in> A. f x \<partial>M) = (\<integral>\<^sup>+ x \<in> A. g x \<partial>M)" and
[measurable]: "f \<in> borel_measurable M" "g \<in> borel_measurable F"
shows "AE x in M. g x = nn_cond_exp M F f x"
proof -
let ?MF = "restr_to_subalg M F"
{
fix A assume "A \<in> sets ?MF"
then have [measurable]: "A \<in> sets F" using sets_restr_to_subalg[OF subalg] by simp
have "(\<integral>\<^sup>+ x \<in> A. g x \<partial> ?MF) = (\<integral>\<^sup>+ x \<in> A. g x \<partial>M)"
by (simp add: nn_integral_subalgebra2 subalg)
also have "... = (\<integral>\<^sup>+ x \<in> A. f x \<partial>M)" using assms(1) by simp
also have "... = (\<integral>\<^sup>+ x. indicator A x * f x \<partial>M)" by (simp add: mult.commute)
also have "... = (\<integral>\<^sup>+ x. indicator A x * nn_cond_exp M F f x \<partial>M)"
by (rule nn_cond_exp_intg[symmetric]) (auto simp add: assms)
also have "... = (\<integral>\<^sup>+ x \<in> A. nn_cond_exp M F f x \<partial>M)" by (simp add: mult.commute)
also have "... = (\<integral>\<^sup>+ x \<in> A. nn_cond_exp M F f x \<partial> ?MF)"
by (simp add: nn_integral_subalgebra2 subalg)
finally have "(\<integral>\<^sup>+ x \<in> A. g x \<partial> ?MF) = (\<integral>\<^sup>+ x \<in> A. nn_cond_exp M F f x \<partial> ?MF)" by simp
} note * = this
have "AE x in ?MF. g x = nn_cond_exp M F f x"
by (rule sigma_finite_measure.density_unique2)
(auto simp add: assms subalg sigma_fin_subalg AE_restr_to_subalg2 *)
then show ?thesis using AE_restr_to_subalg[OF subalg] by simp
qed
lemma nn_cond_exp_F_meas:
assumes "f \<in> borel_measurable F"
shows "AE x in M. f x = nn_cond_exp M F f x"
by (rule nn_cond_exp_charact) (auto simp add: assms measurable_from_subalg[OF subalg])
lemma nn_cond_exp_prod:
assumes [measurable]: "f \<in> borel_measurable F" "g \<in> borel_measurable M"
shows "AE x in M. f x * nn_cond_exp M F g x = nn_cond_exp M F (\<lambda>x. f x * g x) x"
proof (rule nn_cond_exp_charact)
have [measurable]: "f \<in> borel_measurable M" by (rule measurable_from_subalg[OF subalg assms(1)])
show "(\<lambda>x. f x * g x) \<in> borel_measurable M" by measurable
fix A assume "A \<in> sets F"
then have [measurable]: "(\<lambda>x. f x * indicator A x) \<in> borel_measurable F" by measurable
have "\<integral>\<^sup>+x\<in>A. (f x * g x) \<partial>M = \<integral>\<^sup>+x. (f x * indicator A x) * g x \<partial>M"
by (simp add: mult.commute mult.left_commute)
also have "... = \<integral>\<^sup>+x. (f x * indicator A x) * nn_cond_exp M F g x \<partial>M"
by (rule nn_cond_exp_intg[symmetric]) (auto simp add: assms)
also have "... = \<integral>\<^sup>+x\<in>A. (f x * nn_cond_exp M F g x)\<partial>M"
by (simp add: mult.commute mult.left_commute)
finally show "\<integral>\<^sup>+x\<in>A. (f x * g x) \<partial>M = \<integral>\<^sup>+x\<in>A. (f x * nn_cond_exp M F g x)\<partial>M" by simp
qed (auto simp add: assms)
lemma nn_cond_exp_sum:
assumes [measurable]: "f \<in> borel_measurable M" "g \<in> borel_measurable M"
shows "AE x in M. nn_cond_exp M F f x + nn_cond_exp M F g x = nn_cond_exp M F (\<lambda>x. f x + g x) x"
proof (rule nn_cond_exp_charact)
fix A assume [measurable]: "A \<in> sets F"
then have "A \<in> sets M" by (meson subalg subalgebra_def subsetD)
have "\<integral>\<^sup>+x\<in>A. (nn_cond_exp M F f x + nn_cond_exp M F g x)\<partial>M = (\<integral>\<^sup>+x\<in>A. nn_cond_exp M F f x \<partial>M) + (\<integral>\<^sup>+x\<in>A. nn_cond_exp M F g x \<partial>M)"
by (rule nn_set_integral_add) (auto simp add: assms \<open>A \<in> sets M\<close>)
also have "... = (\<integral>\<^sup>+x. indicator A x * nn_cond_exp M F f x \<partial>M) + (\<integral>\<^sup>+x. indicator A x * nn_cond_exp M F g x \<partial>M)"
by (metis (no_types, lifting) mult.commute nn_integral_cong)
also have "... = (\<integral>\<^sup>+x. indicator A x * f x \<partial>M) + (\<integral>\<^sup>+x. indicator A x * g x \<partial>M)"
by (simp add: nn_cond_exp_intg)
also have "... = (\<integral>\<^sup>+x\<in>A. f x \<partial>M) + (\<integral>\<^sup>+x\<in>A. g x \<partial>M)"
by (metis (no_types, lifting) mult.commute nn_integral_cong)
also have "... = \<integral>\<^sup>+x\<in>A. (f x + g x)\<partial>M"
by (rule nn_set_integral_add[symmetric]) (auto simp add: assms \<open>A \<in> sets M\<close>)
finally show "\<integral>\<^sup>+x\<in>A. (f x + g x)\<partial>M = \<integral>\<^sup>+x\<in>A. (nn_cond_exp M F f x + nn_cond_exp M F g x)\<partial>M"
by simp
qed (auto simp add: assms)
lemma nn_cond_exp_cong:
assumes "AE x in M. f x = g x"
and [measurable]: "f \<in> borel_measurable M" "g \<in> borel_measurable M"
shows "AE x in M. nn_cond_exp M F f x = nn_cond_exp M F g x"
proof (rule nn_cond_exp_charact)
fix A assume [measurable]: "A \<in> sets F"
have "\<integral>\<^sup>+x\<in>A. nn_cond_exp M F f x \<partial>M = \<integral>\<^sup>+x. indicator A x * nn_cond_exp M F f x \<partial>M"
by (simp add: mult.commute)
also have "... = \<integral>\<^sup>+x. indicator A x * f x \<partial>M" by (simp add: nn_cond_exp_intg assms)
also have "... = \<integral>\<^sup>+x\<in>A. f x \<partial>M" by (simp add: mult.commute)
also have "... = \<integral>\<^sup>+x\<in>A. g x \<partial>M" by (rule nn_set_integral_cong[OF assms(1)])
finally show "\<integral>\<^sup>+x\<in>A. g x \<partial>M = \<integral>\<^sup>+x\<in>A. nn_cond_exp M F f x \<partial>M" by simp
qed (auto simp add: assms)
lemma nn_cond_exp_mono:
assumes "AE x in M. f x \<le> g x"
and [measurable]: "f \<in> borel_measurable M" "g \<in> borel_measurable M"
shows "AE x in M. nn_cond_exp M F f x \<le> nn_cond_exp M F g x"
proof -
define h where "h = (\<lambda>x. g x - f x)"
have [measurable]: "h \<in> borel_measurable M" unfolding h_def by simp
have *: "AE x in M. g x = f x + h x" unfolding h_def using assms(1) by (auto simp: ennreal_ineq_diff_add)
have "AE x in M. nn_cond_exp M F g x = nn_cond_exp M F (\<lambda>x. f x + h x) x"
by (rule nn_cond_exp_cong) (auto simp add: * assms)
moreover have "AE x in M. nn_cond_exp M F f x + nn_cond_exp M F h x = nn_cond_exp M F (\<lambda>x. f x + h x) x"
by (rule nn_cond_exp_sum) (auto simp add: assms)
ultimately have "AE x in M. nn_cond_exp M F g x = nn_cond_exp M F f x + nn_cond_exp M F h x" by auto
then show ?thesis by force
qed
lemma nested_subalg_is_sigma_finite:
assumes "subalgebra M G" "subalgebra G F"
shows "sigma_finite_subalgebra M G"
unfolding sigma_finite_subalgebra_def
proof (auto simp add: assms)
have "\<exists>A. countable A \<and> A \<subseteq> sets (restr_to_subalg M F) \<and> \<Union>A = space (restr_to_subalg M F) \<and> (\<forall>a\<in>A. emeasure (restr_to_subalg M F) a \<noteq> \<infinity>)"
using sigma_fin_subalg sigma_finite_measure_def by auto
then obtain A where A:"countable A \<and> A \<subseteq> sets (restr_to_subalg M F) \<and> \<Union>A = space (restr_to_subalg M F) \<and> (\<forall>a\<in>A. emeasure (restr_to_subalg M F) a \<noteq> \<infinity>)"
by auto
have "sets F \<subseteq> sets M"
by (meson assms order_trans subalgebra_def)
then have "countable A \<and> A \<subseteq> sets (restr_to_subalg M G) \<and> \<Union>A = space (restr_to_subalg M F) \<and> (\<forall>a\<in>A. emeasure (restr_to_subalg M G) a \<noteq> \<infinity>)"
by (metis (no_types) A assms basic_trans_rules(31) emeasure_restr_to_subalg order_trans sets_restr_to_subalg subalgebra_def)
then show "sigma_finite_measure (restr_to_subalg M G)"
by (metis sigma_finite_measure.intro space_restr_to_subalg)
qed
lemma nn_cond_exp_nested_subalg:
assumes "subalgebra M G" "subalgebra G F"
and [measurable]: "f \<in> borel_measurable M"
shows "AE x in M. nn_cond_exp M F f x = nn_cond_exp M F (nn_cond_exp M G f) x"
proof (rule nn_cond_exp_charact, auto)
interpret G: sigma_finite_subalgebra M G by (rule nested_subalg_is_sigma_finite[OF assms(1) assms(2)])
fix A assume [measurable]: "A \<in> sets F"
then have [measurable]: "A \<in> sets G" using assms(2) by (meson subsetD subalgebra_def)
have "set_nn_integral M A (nn_cond_exp M G f) = (\<integral>\<^sup>+ x. indicator A x * nn_cond_exp M G f x\<partial>M)"
by (metis (no_types) mult.commute)
also have "... = (\<integral>\<^sup>+ x. indicator A x * f x \<partial>M)" by (rule G.nn_cond_exp_intg, auto simp add: assms)
also have "... = (\<integral>\<^sup>+ x. indicator A x * nn_cond_exp M F f x \<partial>M)" by (rule nn_cond_exp_intg[symmetric], auto simp add: assms)
also have "... = set_nn_integral M A (nn_cond_exp M F f)" by (metis (no_types) mult.commute)
finally show "set_nn_integral M A (nn_cond_exp M G f) = set_nn_integral M A (nn_cond_exp M F f)".
qed
end
subsection \<open>Real conditional expectation\<close>
text \<open>Once conditional expectations of positive functions are defined, the definition for real-valued functions
follows readily, by taking the difference of positive and negative parts.
One could also define a conditional expectation of vector-space valued functions, as in
\verb+Bochner_Integral+, but since the real-valued case is the most important, and quicker to formalize, I
concentrate on it. (It is also essential for the case of the most general Pettis integral.)
\<close>
definition real_cond_exp :: "'a measure \<Rightarrow> 'a measure \<Rightarrow> ('a \<Rightarrow> real) \<Rightarrow> ('a \<Rightarrow> real)" where
"real_cond_exp M F f =
(\<lambda>x. enn2real(nn_cond_exp M F (\<lambda>x. ennreal (f x)) x) - enn2real(nn_cond_exp M F (\<lambda>x. ennreal (-f x)) x))"
lemma
shows borel_measurable_cond_exp [measurable]: "real_cond_exp M F f \<in> borel_measurable F"
and borel_measurable_cond_exp2 [measurable]: "real_cond_exp M F f \<in> borel_measurable M"
unfolding real_cond_exp_def by auto
context sigma_finite_subalgebra
begin
lemma real_cond_exp_abs:
assumes [measurable]: "f \<in> borel_measurable M"
shows "AE x in M. abs(real_cond_exp M F f x) \<le> nn_cond_exp M F (\<lambda>x. ennreal (abs(f x))) x"
proof -
define fp where "fp = (\<lambda>x. ennreal (f x))"
define fm where "fm = (\<lambda>x. ennreal (- f x))"
have [measurable]: "fp \<in> borel_measurable M" "fm \<in> borel_measurable M" unfolding fp_def fm_def by auto
have eq: "\<And>x. ennreal \<bar>f x\<bar> = fp x + fm x" unfolding fp_def fm_def by (simp add: abs_real_def ennreal_neg)
{
fix x assume H: "nn_cond_exp M F fp x + nn_cond_exp M F fm x = nn_cond_exp M F (\<lambda>x. fp x + fm x) x"
have "\<bar>real_cond_exp M F f x\<bar> \<le> \<bar>enn2real(nn_cond_exp M F fp x)\<bar> + \<bar>enn2real(nn_cond_exp M F fm x)\<bar>"
unfolding real_cond_exp_def fp_def fm_def by (auto intro: abs_triangle_ineq4 simp del: enn2real_nonneg)
from ennreal_leI[OF this]
have "abs(real_cond_exp M F f x) \<le> nn_cond_exp M F fp x + nn_cond_exp M F fm x"
by simp (metis add.commute ennreal_enn2real le_iff_add not_le top_unique)
also have "... = nn_cond_exp M F (\<lambda>x. fp x + fm x) x" using H by simp
finally have "abs(real_cond_exp M F f x) \<le> nn_cond_exp M F (\<lambda>x. fp x + fm x) x" by simp
}
moreover have "AE x in M. nn_cond_exp M F fp x + nn_cond_exp M F fm x = nn_cond_exp M F (\<lambda>x. fp x + fm x) x"
by (rule nn_cond_exp_sum) (auto simp add: fp_def fm_def)
ultimately have "AE x in M. abs(real_cond_exp M F f x) \<le> nn_cond_exp M F (\<lambda>x. fp x + fm x) x"
by auto
then show ?thesis using eq by simp
qed
text\<open>The next lemma shows that the conditional expectation
is an $F$-measurable function whose average against an $F$-measurable
function $f$ coincides with the average of the original function against $f$.
It is obtained as a consequence of the same property for the positive conditional
expectation, taking the difference of the positive and the negative part. The proof
is given first assuming $f \geq 0$ for simplicity, and then extended to the general case in
the subsequent lemma. The idea of the proof is essentially trivial, but the implementation
is slightly tedious as one should check all the integrability properties of the different parts, and go
back and forth between positive integral and signed integrals, and between real-valued
functions and ennreal-valued functions.
Once this lemma is available, we will use it to characterize the conditional expectation,
and never come back to the original technical definition, as we did in the case of the
nonnegative conditional expectation.
\<close>
lemma real_cond_exp_intg_fpos:
assumes "integrable M (\<lambda>x. f x * g x)" and f_pos[simp]: "\<And>x. f x \<ge> 0" and
[measurable]: "f \<in> borel_measurable F" "g \<in> borel_measurable M"
shows "integrable M (\<lambda>x. f x * real_cond_exp M F g x)"
"(\<integral> x. f x * real_cond_exp M F g x \<partial>M) = (\<integral> x. f x * g x \<partial>M)"
proof -
have [measurable]: "f \<in> borel_measurable M" by (rule measurable_from_subalg[OF subalg assms(3)])
define gp where "gp = (\<lambda>x. ennreal (g x))"
define gm where "gm = (\<lambda>x. ennreal (- g x))"
have [measurable]: "gp \<in> borel_measurable M" "gm \<in> borel_measurable M" unfolding gp_def gm_def by auto
define h where "h = (\<lambda>x. ennreal(abs(g x)))"
have hgpgm: "\<And>x. h x = gp x + gm x" unfolding gp_def gm_def h_def by (simp add: abs_real_def ennreal_neg)
have [measurable]: "h \<in> borel_measurable M" unfolding h_def by simp
have pos[simp]: "\<And>x. h x \<ge> 0" "\<And>x. gp x \<ge> 0" "\<And>x. gm x \<ge> 0" unfolding h_def gp_def gm_def by simp_all
have gp_real: "\<And>x. enn2real(gp x) = max (g x) 0"
unfolding gp_def by (simp add: max_def ennreal_neg)
have gm_real: "\<And>x. enn2real(gm x) = max (-g x) 0"
unfolding gm_def by (simp add: max_def ennreal_neg)
have "(\<integral>\<^sup>+ x. norm(f x * max (g x) 0) \<partial>M) \<le> (\<integral>\<^sup>+ x. norm(f x * g x) \<partial>M)"
by (simp add: nn_integral_mono)
also have "... < \<infinity>" using assms(1) by (simp add: integrable_iff_bounded)
finally have "(\<integral>\<^sup>+ x. norm(f x * max (g x) 0) \<partial>M) < \<infinity>" by simp
then have int1: "integrable M (\<lambda>x. f x * max (g x) 0)" by (simp add: integrableI_bounded)
have "(\<integral>\<^sup>+ x. norm(f x * max (-g x) 0) \<partial>M) \<le> (\<integral>\<^sup>+ x. norm(f x * g x) \<partial>M)"
by (simp add: nn_integral_mono)
also have "... < \<infinity>" using assms(1) by (simp add: integrable_iff_bounded)
finally have "(\<integral>\<^sup>+ x. norm(f x * max (-g x) 0) \<partial>M) < \<infinity>" by simp
then have int2: "integrable M (\<lambda>x. f x * max (-g x) 0)" by (simp add: integrableI_bounded)
have "(\<integral>\<^sup>+x. f x * nn_cond_exp M F h x \<partial>M) = (\<integral>\<^sup>+x. f x * h x \<partial>M)"
by (rule nn_cond_exp_intg) auto
also have "\<dots> = \<integral>\<^sup>+ x. ennreal (f x * max (g x) 0 + f x * max (- g x) 0) \<partial>M"
unfolding h_def
by (intro nn_integral_cong)(auto simp: ennreal_mult[symmetric] abs_mult split: split_max)
also have "... < \<infinity>"
using Bochner_Integration.integrable_add[OF int1 int2, THEN integrableD(2)] by (auto simp add: less_top)
finally have *: "(\<integral>\<^sup>+x. f x * nn_cond_exp M F h x \<partial>M) < \<infinity>" by simp
have "(\<integral>\<^sup>+x. norm(f x * real_cond_exp M F g x) \<partial>M) = (\<integral>\<^sup>+x. f x * abs(real_cond_exp M F g x) \<partial>M)"
by (simp add: abs_mult)
also have "... \<le> (\<integral>\<^sup>+x. f x * nn_cond_exp M F h x \<partial>M)"
proof (rule nn_integral_mono_AE)
{
fix x assume *: "abs(real_cond_exp M F g x) \<le> nn_cond_exp M F h x"
have "ennreal (f x * \<bar>real_cond_exp M F g x\<bar>) = f x * ennreal(\<bar>real_cond_exp M F g x\<bar>)"
by (simp add: ennreal_mult)
also have "... \<le> f x * nn_cond_exp M F h x"
using * by (auto intro!: mult_left_mono)
finally have "ennreal (f x * \<bar>real_cond_exp M F g x\<bar>) \<le> f x * nn_cond_exp M F h x"
by simp
}
then show "AE x in M. ennreal (f x * \<bar>real_cond_exp M F g x\<bar>) \<le> f x * nn_cond_exp M F h x"
using real_cond_exp_abs[OF assms(4)] h_def by auto
qed
finally have **: "(\<integral>\<^sup>+x. norm(f x * real_cond_exp M F g x) \<partial>M) < \<infinity>" using * by auto
show "integrable M (\<lambda>x. f x * real_cond_exp M F g x)"
using ** by (intro integrableI_bounded) auto
have "(\<integral>\<^sup>+x. f x * nn_cond_exp M F gp x \<partial>M) \<le> (\<integral>\<^sup>+x. f x * nn_cond_exp M F h x \<partial>M)"
proof (rule nn_integral_mono_AE)
have "AE x in M. nn_cond_exp M F gp x \<le> nn_cond_exp M F h x"
by (rule nn_cond_exp_mono) (auto simp add: hgpgm)
then show "AE x in M. f x * nn_cond_exp M F gp x \<le> f x * nn_cond_exp M F h x"
by (auto simp: mult_left_mono)
qed
then have a: "(\<integral>\<^sup>+x. f x * nn_cond_exp M F gp x \<partial>M) < \<infinity>"
using * by auto
have "ennreal(norm(f x * enn2real(nn_cond_exp M F gp x))) \<le> f x * nn_cond_exp M F gp x" for x
by (auto simp add: ennreal_mult intro!: mult_left_mono)
(metis enn2real_ennreal enn2real_nonneg le_cases le_ennreal_iff)
then have "(\<integral>\<^sup>+x. norm(f x * enn2real(nn_cond_exp M F gp x)) \<partial>M) \<le> (\<integral>\<^sup>+x. f x * nn_cond_exp M F gp x \<partial>M)"
by (simp add: nn_integral_mono)
then have "(\<integral>\<^sup>+x. norm(f x * enn2real(nn_cond_exp M F gp x)) \<partial>M) < \<infinity>" using a by auto
then have gp_int: "integrable M (\<lambda>x. f x * enn2real(nn_cond_exp M F gp x))" by (simp add: integrableI_bounded)
have gp_fin: "AE x in M. f x * nn_cond_exp M F gp x \<noteq> \<infinity>"
apply (rule nn_integral_PInf_AE) using a by auto
have "(\<integral> x. f x * enn2real(nn_cond_exp M F gp x) \<partial>M) = enn2real (\<integral>\<^sup>+ x. f x * enn2real(nn_cond_exp M F gp x) \<partial>M)"
by (rule integral_eq_nn_integral) auto
also have "... = enn2real(\<integral>\<^sup>+ x. ennreal(f x * enn2real(gp x)) \<partial>M)"
proof -
{
fix x assume "f x * nn_cond_exp M F gp x \<noteq> \<infinity>"
then have "ennreal (f x * enn2real (nn_cond_exp M F gp x)) = ennreal (f x) * nn_cond_exp M F gp x"
by (auto simp add: ennreal_mult ennreal_mult_eq_top_iff less_top intro!: ennreal_mult_left_cong)
}
then have "AE x in M. ennreal (f x * enn2real (nn_cond_exp M F gp x)) = ennreal (f x) * nn_cond_exp M F gp x"
using gp_fin by auto
then have "(\<integral>\<^sup>+ x. f x * enn2real(nn_cond_exp M F gp x) \<partial>M) = (\<integral>\<^sup>+ x. f x * nn_cond_exp M F gp x \<partial>M)"
by (rule nn_integral_cong_AE)
also have "... = (\<integral>\<^sup>+ x. f x * gp x \<partial>M)"
by (rule nn_cond_exp_intg) (auto simp add: gp_def)
also have "... = (\<integral>\<^sup>+ x. ennreal(f x * enn2real(gp x)) \<partial>M)"
by (rule nn_integral_cong_AE) (auto simp: ennreal_mult gp_def)
finally have "(\<integral>\<^sup>+ x. f x * enn2real(nn_cond_exp M F gp x) \<partial>M) = (\<integral>\<^sup>+ x. ennreal(f x * enn2real(gp x)) \<partial>M)" by simp
then show ?thesis by simp
qed
also have "... = (\<integral> x. f x * enn2real(gp x) \<partial>M)"
by (rule integral_eq_nn_integral[symmetric]) (auto simp add: gp_def)
finally have gp_expr: "(\<integral> x. f x * enn2real(nn_cond_exp M F gp x) \<partial>M) = (\<integral> x. f x * enn2real(gp x) \<partial>M)" by simp
have "(\<integral>\<^sup>+x. f x * nn_cond_exp M F gm x \<partial>M) \<le> (\<integral>\<^sup>+x. f x * nn_cond_exp M F h x \<partial>M)"
proof (rule nn_integral_mono_AE)
have "AE x in M. nn_cond_exp M F gm x \<le> nn_cond_exp M F h x"
by (rule nn_cond_exp_mono) (auto simp add: hgpgm)
then show "AE x in M. f x * nn_cond_exp M F gm x \<le> f x * nn_cond_exp M F h x"
by (auto simp: mult_left_mono)
qed
then have a: "(\<integral>\<^sup>+x. f x * nn_cond_exp M F gm x \<partial>M) < \<infinity>"
using * by auto
have "\<And>x. ennreal(norm(f x * enn2real(nn_cond_exp M F gm x))) \<le> f x * nn_cond_exp M F gm x"
by (auto simp add: ennreal_mult intro!: mult_left_mono)
(metis enn2real_ennreal enn2real_nonneg le_cases le_ennreal_iff)
then have "(\<integral>\<^sup>+x. norm(f x * enn2real(nn_cond_exp M F gm x)) \<partial>M) \<le> (\<integral>\<^sup>+x. f x * nn_cond_exp M F gm x \<partial>M)"
by (simp add: nn_integral_mono)
then have "(\<integral>\<^sup>+x. norm(f x * enn2real(nn_cond_exp M F gm x)) \<partial>M) < \<infinity>" using a by auto
then have gm_int: "integrable M (\<lambda>x. f x * enn2real(nn_cond_exp M F gm x))" by (simp add: integrableI_bounded)
have gm_fin: "AE x in M. f x * nn_cond_exp M F gm x \<noteq> \<infinity>"
apply (rule nn_integral_PInf_AE) using a by auto
have "(\<integral> x. f x * enn2real(nn_cond_exp M F gm x) \<partial>M) = enn2real (\<integral>\<^sup>+ x. f x * enn2real(nn_cond_exp M F gm x) \<partial>M)"
by (rule integral_eq_nn_integral) auto
also have "... = enn2real(\<integral>\<^sup>+ x. ennreal(f x * enn2real(gm x)) \<partial>M)"
proof -
{
fix x assume "f x * nn_cond_exp M F gm x \<noteq> \<infinity>"
then have "ennreal (f x * enn2real (nn_cond_exp M F gm x)) = ennreal (f x) * nn_cond_exp M F gm x"
by (auto simp add: ennreal_mult ennreal_mult_eq_top_iff less_top intro!: ennreal_mult_left_cong)
}
then have "AE x in M. ennreal (f x * enn2real (nn_cond_exp M F gm x)) = ennreal (f x) * nn_cond_exp M F gm x"
using gm_fin by auto
then have "(\<integral>\<^sup>+ x. f x * enn2real(nn_cond_exp M F gm x) \<partial>M) = (\<integral>\<^sup>+ x. f x * nn_cond_exp M F gm x \<partial>M)"
by (rule nn_integral_cong_AE)
also have "... = (\<integral>\<^sup>+ x. f x * gm x \<partial>M)"
by (rule nn_cond_exp_intg) (auto simp add: gm_def)
also have "... = (\<integral>\<^sup>+ x. ennreal(f x * enn2real(gm x)) \<partial>M)"
by (rule nn_integral_cong_AE) (auto simp: ennreal_mult gm_def)
finally have "(\<integral>\<^sup>+ x. f x * enn2real(nn_cond_exp M F gm x) \<partial>M) = (\<integral>\<^sup>+ x. ennreal(f x * enn2real(gm x)) \<partial>M)" by simp
then show ?thesis by simp
qed
also have "... = (\<integral> x. f x * enn2real(gm x) \<partial>M)"
by (rule integral_eq_nn_integral[symmetric]) (auto simp add: gm_def)
finally have gm_expr: "(\<integral> x. f x * enn2real(nn_cond_exp M F gm x) \<partial>M) = (\<integral> x. f x * enn2real(gm x) \<partial>M)" by simp
have "(\<integral> x. f x * real_cond_exp M F g x \<partial>M) = (\<integral> x. f x * enn2real(nn_cond_exp M F gp x) - f x * enn2real(nn_cond_exp M F gm x) \<partial>M)"
unfolding real_cond_exp_def gp_def gm_def by (simp add: right_diff_distrib)
also have "... = (\<integral> x. f x * enn2real(nn_cond_exp M F gp x) \<partial>M) - (\<integral> x. f x * enn2real(nn_cond_exp M F gm x) \<partial>M)"
by (rule Bochner_Integration.integral_diff) (simp_all add: gp_int gm_int)
also have "... = (\<integral> x. f x * enn2real(gp x) \<partial>M) - (\<integral> x. f x * enn2real(gm x) \<partial>M)"
using gp_expr gm_expr by simp
also have "... = (\<integral> x. f x * max (g x) 0 \<partial>M) - (\<integral> x. f x * max (-g x) 0 \<partial>M)"
using gp_real gm_real by simp
also have "... = (\<integral> x. f x * max (g x) 0 - f x * max (-g x) 0 \<partial>M)"
by (rule Bochner_Integration.integral_diff[symmetric]) (simp_all add: int1 int2)
also have "... = (\<integral>x. f x * g x \<partial>M)"
by (metis (mono_tags, opaque_lifting) diff_0 diff_zero eq_iff max.cobounded2 max_def minus_minus neg_le_0_iff_le right_diff_distrib)
finally show "(\<integral> x. f x * real_cond_exp M F g x \<partial>M) = (\<integral>x. f x * g x \<partial>M)"
by simp
qed
lemma real_cond_exp_intg:
assumes "integrable M (\<lambda>x. f x * g x)" and
[measurable]: "f \<in> borel_measurable F" "g \<in> borel_measurable M"
shows "integrable M (\<lambda>x. f x * real_cond_exp M F g x)"
"(\<integral> x. f x * real_cond_exp M F g x \<partial>M) = (\<integral> x. f x * g x \<partial>M)"
proof -
have [measurable]: "f \<in> borel_measurable M" by (rule measurable_from_subalg[OF subalg assms(2)])
define fp where "fp = (\<lambda>x. max (f x) 0)"
define fm where "fm = (\<lambda>x. max (-f x) 0)"
have [measurable]: "fp \<in> borel_measurable M" "fm \<in> borel_measurable M"
unfolding fp_def fm_def by simp_all
have [measurable]: "fp \<in> borel_measurable F" "fm \<in> borel_measurable F"
unfolding fp_def fm_def by simp_all
have "(\<integral>\<^sup>+ x. norm(fp x * g x) \<partial>M) \<le> (\<integral>\<^sup>+ x. norm(f x * g x) \<partial>M)"
by (simp add: fp_def nn_integral_mono)
also have "... < \<infinity>" using assms(1) by (simp add: integrable_iff_bounded)
finally have "(\<integral>\<^sup>+ x. norm(fp x * g x) \<partial>M) < \<infinity>" by simp
then have intp: "integrable M (\<lambda>x. fp x * g x)" by (simp add: integrableI_bounded)
moreover have "\<And>x. fp x \<ge> 0" unfolding fp_def by simp
ultimately have Rp: "integrable M (\<lambda>x. fp x * real_cond_exp M F g x)"
"(\<integral> x. fp x * real_cond_exp M F g x \<partial>M) = (\<integral> x. fp x * g x \<partial>M)"
using real_cond_exp_intg_fpos by auto
have "(\<integral>\<^sup>+ x. norm(fm x * g x) \<partial>M) \<le> (\<integral>\<^sup>+ x. norm(f x * g x) \<partial>M)"
by (simp add: fm_def nn_integral_mono)
also have "... < \<infinity>" using assms(1) by (simp add: integrable_iff_bounded)
finally have "(\<integral>\<^sup>+ x. norm(fm x * g x) \<partial>M) < \<infinity>" by simp
then have intm: "integrable M (\<lambda>x. fm x * g x)" by (simp add: integrableI_bounded)
moreover have "\<And>x. fm x \<ge> 0" unfolding fm_def by simp
ultimately have Rm: "integrable M (\<lambda>x. fm x * real_cond_exp M F g x)"
"(\<integral> x. fm x * real_cond_exp M F g x \<partial>M) = (\<integral> x. fm x * g x \<partial>M)"
using real_cond_exp_intg_fpos by auto
have "integrable M (\<lambda>x. fp x * real_cond_exp M F g x - fm x * real_cond_exp M F g x)"
using Rp(1) Rm(1) integrable_diff by simp
moreover have *: "\<And>x. f x * real_cond_exp M F g x = fp x * real_cond_exp M F g x - fm x * real_cond_exp M F g x"
unfolding fp_def fm_def by (simp add: max_def)
ultimately show "integrable M (\<lambda>x. f x * real_cond_exp M F g x)"
by simp
have "(\<integral> x. f x * real_cond_exp M F g x \<partial>M) = (\<integral> x. fp x * real_cond_exp M F g x - fm x * real_cond_exp M F g x \<partial>M)"
using * by simp
also have "... = (\<integral> x. fp x * real_cond_exp M F g x \<partial>M) - (\<integral> x. fm x * real_cond_exp M F g x \<partial>M)"
using Rp(1) Rm(1) by simp
also have "... = (\<integral> x. fp x * g x \<partial>M) - (\<integral> x. fm x * g x \<partial>M)"
using Rp(2) Rm(2) by simp
also have "... = (\<integral> x. fp x * g x - fm x * g x \<partial>M)"
using intm intp by simp
also have "... = (\<integral> x. f x * g x \<partial>M)"
unfolding fp_def fm_def by (metis (no_types, opaque_lifting) diff_0 diff_zero max.commute
max_def minus_minus mult.commute neg_le_iff_le right_diff_distrib)
finally show "(\<integral> x. f x * real_cond_exp M F g x \<partial>M) = (\<integral> x. f x * g x \<partial>M)" by simp
qed
lemma real_cond_exp_intA:
assumes [measurable]: "integrable M f" "A \<in> sets F"
shows "(\<integral> x \<in> A. f x \<partial>M) = (\<integral>x \<in> A. real_cond_exp M F f x \<partial>M)"
proof -
have "A \<in> sets M" by (meson assms(2) subalg subalgebra_def subsetD)
have "integrable M (\<lambda>x. indicator A x * f x)" using integrable_mult_indicator[OF \<open>A \<in> sets M\<close> assms(1)] by auto
then show ?thesis using real_cond_exp_intg(2)[where ?f = "indicator A" and ?g = f, symmetric]
unfolding set_lebesgue_integral_def by auto
qed
lemma real_cond_exp_int [intro]:
assumes "integrable M f"
shows "integrable M (real_cond_exp M F f)" "(\<integral>x. real_cond_exp M F f x \<partial>M) = (\<integral>x. f x \<partial>M)"
using real_cond_exp_intg[where ?f = "\<lambda>x. 1" and ?g = f] assms by auto
lemma real_cond_exp_charact:
assumes "\<And>A. A \<in> sets F \<Longrightarrow> (\<integral> x \<in> A. f x \<partial>M) = (\<integral> x \<in> A. g x \<partial>M)"
and [measurable]: "integrable M f" "integrable M g"
"g \<in> borel_measurable F"
shows "AE x in M. real_cond_exp M F f x = g x"
proof -
let ?MF = "restr_to_subalg M F"
have "AE x in ?MF. real_cond_exp M F f x = g x"
proof (rule AE_symmetric[OF density_unique_real])
fix A assume "A \<in> sets ?MF"
then have [measurable]: "A \<in> sets F" using sets_restr_to_subalg[OF subalg] by simp
then have a [measurable]: "A \<in> sets M" by (meson subalg subalgebra_def subsetD)
have "(\<integral>x \<in> A. g x \<partial> ?MF) = (\<integral>x \<in> A. g x \<partial>M)"
unfolding set_lebesgue_integral_def by (simp add: integral_subalgebra2 subalg)
also have "... = (\<integral>x \<in> A. f x \<partial>M)" using assms(1) by simp
also have "... = (\<integral>x. indicator A x * f x \<partial>M)" by (simp add: mult.commute set_lebesgue_integral_def)
also have "... = (\<integral>x. indicator A x * real_cond_exp M F f x \<partial>M)"
apply (rule real_cond_exp_intg(2)[symmetric]) using integrable_mult_indicator[OF a assms(2)] by (auto simp add: assms)
also have "... = (\<integral>x \<in> A. real_cond_exp M F f x \<partial>M)" by (simp add: mult.commute set_lebesgue_integral_def)
also have "... = (\<integral>x \<in> A. real_cond_exp M F f x \<partial> ?MF)"
by (simp add: integral_subalgebra2 subalg set_lebesgue_integral_def)
finally show "(\<integral>x \<in> A. g x \<partial> ?MF) = (\<integral>x \<in> A. real_cond_exp M F f x \<partial> ?MF)" by simp
next
have "integrable M (real_cond_exp M F f)" by (rule real_cond_exp_int(1)[OF assms(2)])
then show "integrable ?MF (real_cond_exp M F f)" by (metis borel_measurable_cond_exp integrable_in_subalg[OF subalg])
show "integrable (restr_to_subalg M F) g" by (simp add: assms(3) integrable_in_subalg[OF subalg])
qed
then show ?thesis using AE_restr_to_subalg[OF subalg] by auto
qed
lemma real_cond_exp_F_meas [intro, simp]:
assumes "integrable M f"
"f \<in> borel_measurable F"
shows "AE x in M. real_cond_exp M F f x = f x"
by (rule real_cond_exp_charact, auto simp add: assms measurable_from_subalg[OF subalg])
lemma real_cond_exp_mult:
assumes [measurable]:"f \<in> borel_measurable F" "g \<in> borel_measurable M" "integrable M (\<lambda>x. f x * g x)"
shows "AE x in M. real_cond_exp M F (\<lambda>x. f x * g x) x = f x * real_cond_exp M F g x"
proof (rule real_cond_exp_charact)
fix A assume "A \<in> sets F"
then have [measurable]: "(\<lambda>x. f x * indicator A x) \<in> borel_measurable F" by measurable
have [measurable]: "A \<in> sets M" using subalg by (meson \<open>A \<in> sets F\<close> subalgebra_def subsetD)
have "\<integral>x\<in>A. (f x * g x) \<partial>M = \<integral>x. (f x * indicator A x) * g x \<partial>M"
by (simp add: mult.commute mult.left_commute set_lebesgue_integral_def)
also have "... = \<integral>x. (f x * indicator A x) * real_cond_exp M F g x \<partial>M"
apply (rule real_cond_exp_intg(2)[symmetric], auto simp add: assms)
using integrable_mult_indicator[OF \<open>A \<in> sets M\<close> assms(3)] by (simp add: mult.commute mult.left_commute)
also have "... = \<integral>x\<in>A. (f x * real_cond_exp M F g x)\<partial>M"
by (simp add: mult.commute mult.left_commute set_lebesgue_integral_def)
finally show "\<integral>x\<in>A. (f x * g x) \<partial>M = \<integral>x\<in>A. (f x * real_cond_exp M F g x)\<partial>M" by simp
qed (auto simp add: real_cond_exp_intg(1) assms)
lemma real_cond_exp_add [intro]:
assumes [measurable]: "integrable M f" "integrable M g"
shows "AE x in M. real_cond_exp M F (\<lambda>x. f x + g x) x = real_cond_exp M F f x + real_cond_exp M F g x"
proof (rule real_cond_exp_charact)
have "integrable M (real_cond_exp M F f)" "integrable M (real_cond_exp M F g)"
using real_cond_exp_int(1) assms by auto
then show "integrable M (\<lambda>x. real_cond_exp M F f x + real_cond_exp M F g x)"
by auto
fix A assume [measurable]: "A \<in> sets F"
then have "A \<in> sets M" by (meson subalg subalgebra_def subsetD)
have intAf: "integrable M (\<lambda>x. indicator A x * f x)"
using integrable_mult_indicator[OF \<open>A \<in> sets M\<close> assms(1)] by auto
have intAg: "integrable M (\<lambda>x. indicator A x * g x)"
using integrable_mult_indicator[OF \<open>A \<in> sets M\<close> assms(2)] by auto
have "\<integral>x\<in>A. (real_cond_exp M F f x + real_cond_exp M F g x)\<partial>M = (\<integral>x\<in>A. real_cond_exp M F f x \<partial>M) + (\<integral>x\<in>A. real_cond_exp M F g x \<partial>M)"
apply (rule set_integral_add, auto simp add: assms set_integrable_def)
using integrable_mult_indicator[OF \<open>A \<in> sets M\<close> real_cond_exp_int(1)[OF assms(1)]]
integrable_mult_indicator[OF \<open>A \<in> sets M\<close> real_cond_exp_int(1)[OF assms(2)]] by simp_all
also have "... = (\<integral>x. indicator A x * real_cond_exp M F f x \<partial>M) + (\<integral>x. indicator A x * real_cond_exp M F g x \<partial>M)"
unfolding set_lebesgue_integral_def by auto
also have "... = (\<integral>x. indicator A x * f x \<partial>M) + (\<integral>x. indicator A x * g x \<partial>M)"
using real_cond_exp_intg(2) assms \<open>A \<in> sets F\<close> intAf intAg by auto
also have "... = (\<integral>x\<in>A. f x \<partial>M) + (\<integral>x\<in>A. g x \<partial>M)"
unfolding set_lebesgue_integral_def by auto
also have "... = \<integral>x\<in>A. (f x + g x)\<partial>M"
by (rule set_integral_add(2)[symmetric]) (auto simp add: assms set_integrable_def \<open>A \<in> sets M\<close> intAf intAg)
finally show "\<integral>x\<in>A. (f x + g x)\<partial>M = \<integral>x\<in>A. (real_cond_exp M F f x + real_cond_exp M F g x)\<partial>M"
by simp
qed (auto simp add: assms)
lemma real_cond_exp_cong:
assumes ae: "AE x in M. f x = g x" and [measurable]: "f \<in> borel_measurable M" "g \<in> borel_measurable M"
shows "AE x in M. real_cond_exp M F f x = real_cond_exp M F g x"
proof -
have "AE x in M. nn_cond_exp M F (\<lambda>x. ennreal (f x)) x = nn_cond_exp M F (\<lambda>x. ennreal (g x)) x"
apply (rule nn_cond_exp_cong) using assms by auto
moreover have "AE x in M. nn_cond_exp M F (\<lambda>x. ennreal (-f x)) x = nn_cond_exp M F (\<lambda>x. ennreal(-g x)) x"
apply (rule nn_cond_exp_cong) using assms by auto
ultimately show "AE x in M. real_cond_exp M F f x = real_cond_exp M F g x"
unfolding real_cond_exp_def by auto
qed
lemma real_cond_exp_cmult [intro, simp]:
fixes c::real
assumes "integrable M f"
shows "AE x in M. real_cond_exp M F (\<lambda>x. c * f x) x = c * real_cond_exp M F f x"
by (rule real_cond_exp_mult[where ?f = "\<lambda>x. c" and ?g = f], auto simp add: assms borel_measurable_integrable)
lemma real_cond_exp_cdiv [intro, simp]:
fixes c::real
assumes "integrable M f"
shows "AE x in M. real_cond_exp M F (\<lambda>x. f x / c) x = real_cond_exp M F f x / c"
using real_cond_exp_cmult[of _ "1/c", OF assms] by (auto simp add: field_split_simps)
lemma real_cond_exp_diff [intro, simp]:
assumes [measurable]: "integrable M f" "integrable M g"
shows "AE x in M. real_cond_exp M F (\<lambda>x. f x - g x) x = real_cond_exp M F f x - real_cond_exp M F g x"
proof -
have "AE x in M. real_cond_exp M F (\<lambda>x. f x + (- g x)) x = real_cond_exp M F f x + real_cond_exp M F (\<lambda>x. -g x) x"
using real_cond_exp_add[where ?f = f and ?g = "\<lambda>x. - g x"] assms by auto
moreover have "AE x in M. real_cond_exp M F (\<lambda>x. -g x) x = - real_cond_exp M F g x"
using real_cond_exp_cmult[where ?f = g and ?c = "-1"] assms(2) by auto
ultimately show ?thesis by auto
qed
lemma real_cond_exp_pos [intro]:
assumes "AE x in M. f x \<ge> 0" and [measurable]: "f \<in> borel_measurable M"
shows "AE x in M. real_cond_exp M F f x \<ge> 0"
proof -
define g where "g = (\<lambda>x. max (f x) 0)"
have "AE x in M. f x = g x" using assms g_def by auto
then have *: "AE x in M. real_cond_exp M F f x = real_cond_exp M F g x" using real_cond_exp_cong g_def by auto
have "\<And>x. g x \<ge> 0" unfolding g_def by simp
then have "(\<lambda>x. ennreal(-g x)) = (\<lambda>x. 0)"
by (simp add: ennreal_neg)
moreover have "AE x in M. 0 = nn_cond_exp M F (\<lambda>x. 0) x"
by (rule nn_cond_exp_F_meas, auto)
ultimately have "AE x in M. nn_cond_exp M F (\<lambda>x. ennreal(-g x)) x = 0"
by simp
then have "AE x in M. real_cond_exp M F g x = enn2real(nn_cond_exp M F (\<lambda>x. ennreal (g x)) x)"
unfolding real_cond_exp_def by auto
then have "AE x in M. real_cond_exp M F g x \<ge> 0" by auto
then show ?thesis using * by auto
qed
lemma real_cond_exp_mono:
assumes "AE x in M. f x \<le> g x" and [measurable]: "integrable M f" "integrable M g"
shows "AE x in M. real_cond_exp M F f x \<le> real_cond_exp M F g x"
proof -
have "AE x in M. real_cond_exp M F g x - real_cond_exp M F f x = real_cond_exp M F (\<lambda>x. g x - f x) x"
by (rule AE_symmetric[OF real_cond_exp_diff], auto simp add: assms)
moreover have "AE x in M. real_cond_exp M F (\<lambda>x. g x - f x) x \<ge> 0"
by (rule real_cond_exp_pos, auto simp add: assms(1))
ultimately have "AE x in M. real_cond_exp M F g x - real_cond_exp M F f x \<ge> 0" by auto
then show ?thesis by auto
qed
lemma (in -) measurable_P_restriction [measurable (raw)]:
assumes [measurable]: "Measurable.pred M P" "A \<in> sets M"
shows "{x \<in> A. P x} \<in> sets M"
proof -
have "A \<subseteq> space M" using sets.sets_into_space[OF assms(2)].
then have "{x \<in> A. P x} = A \<inter> {x \<in> space M. P x}" by blast
then show ?thesis by auto
qed
lemma real_cond_exp_gr_c:
assumes [measurable]: "integrable M f"
and AE: "AE x in M. f x > c"
shows "AE x in M. real_cond_exp M F f x > c"
proof -
define X where "X = {x \<in> space M. real_cond_exp M F f x \<le> c}"
have [measurable]: "X \<in> sets F"
unfolding X_def apply measurable by (metis sets.top subalg subalgebra_def)
then have [measurable]: "X \<in> sets M" using sets_restr_to_subalg subalg subalgebra_def by blast
have "emeasure M X = 0"
proof (rule ccontr)
assume "\<not>(emeasure M X) = 0"
have "emeasure (restr_to_subalg M F) X = emeasure M X"
by (simp add: emeasure_restr_to_subalg subalg)
then have "emeasure (restr_to_subalg M F) X > 0"
using \<open>\<not>(emeasure M X) = 0\<close> gr_zeroI by auto
then obtain A where "A \<in> sets (restr_to_subalg M F)" "A \<subseteq> X" "emeasure (restr_to_subalg M F) A > 0" "emeasure (restr_to_subalg M F) A < \<infinity>"
using sigma_fin_subalg by (metis emeasure_notin_sets ennreal_0 infinity_ennreal_def le_less_linear neq_top_trans
not_gr_zero order_refl sigma_finite_measure.approx_PInf_emeasure_with_finite)
then have [measurable]: "A \<in> sets F" using subalg sets_restr_to_subalg by blast
then have [measurable]: "A \<in> sets M" using sets_restr_to_subalg subalg subalgebra_def by blast
have Ic: "set_integrable M A (\<lambda>x. c)"
unfolding set_integrable_def
using \<open>emeasure (restr_to_subalg M F) A < \<infinity>\<close> emeasure_restr_to_subalg subalg by fastforce
have If: "set_integrable M A f"
unfolding set_integrable_def
by (rule integrable_mult_indicator, auto simp add: \<open>integrable M f\<close>)
have "AE x in M. indicator A x * c = indicator A x * f x"
proof (rule integral_ineq_eq_0_then_AE)
have "(\<integral>x\<in>A. c \<partial>M) = (\<integral>x\<in>A. f x \<partial>M)"
proof (rule antisym)
show "(\<integral>x\<in>A. c \<partial>M) \<le> (\<integral>x\<in>A. f x \<partial>M)"
apply (rule set_integral_mono_AE) using Ic If assms(2) by auto
have "(\<integral>x\<in>A. f x \<partial>M) = (\<integral>x\<in>A. real_cond_exp M F f x \<partial>M)"
by (rule real_cond_exp_intA, auto simp add: \<open>integrable M f\<close>)
also have "... \<le> (\<integral>x\<in>A. c \<partial>M)"
apply (rule set_integral_mono)
unfolding set_integrable_def
apply (rule integrable_mult_indicator, simp, simp add: real_cond_exp_int(1)[OF \<open>integrable M f\<close>])
using Ic X_def \<open>A \<subseteq> X\<close> by (auto simp: set_integrable_def)
finally show "(\<integral>x\<in>A. f x \<partial>M) \<le> (\<integral>x\<in>A. c \<partial>M)" by simp
qed
then have "measure M A * c = LINT x|M. indicat_real A x * f x"
by (auto simp: set_lebesgue_integral_def)
then show "LINT x|M. indicat_real A x * c = LINT x|M. indicat_real A x * f x"
by auto
show "AE x in M. indicat_real A x * c \<le> indicat_real A x * f x"
using AE unfolding indicator_def by auto
qed (use Ic If in \<open>auto simp: set_integrable_def\<close>)
then have "AE x\<in>A in M. c = f x" by auto
then have "AE x\<in>A in M. False" using assms(2) by auto
have "A \<in> null_sets M" unfolding ae_filter_def by (meson AE_iff_null_sets \<open>A \<in> sets M\<close> \<open>AE x\<in>A in M. False\<close>)
then show False using \<open>emeasure (restr_to_subalg M F) A > 0\<close>
by (simp add: emeasure_restr_to_subalg null_setsD1 subalg)
qed
then show ?thesis using AE_iff_null_sets[OF \<open>X \<in> sets M\<close>] unfolding X_def by auto
qed
lemma real_cond_exp_less_c:
assumes [measurable]: "integrable M f"
and "AE x in M. f x < c"
shows "AE x in M. real_cond_exp M F f x < c"
proof -
have "AE x in M. real_cond_exp M F f x = -real_cond_exp M F (\<lambda>x. -f x) x"
using real_cond_exp_cmult[OF \<open>integrable M f\<close>, of "-1"] by auto
moreover have "AE x in M. real_cond_exp M F (\<lambda>x. -f x) x > -c"
apply (rule real_cond_exp_gr_c) using assms by auto
ultimately show ?thesis by auto
qed
lemma real_cond_exp_ge_c:
assumes [measurable]: "integrable M f"
and "AE x in M. f x \<ge> c"
shows "AE x in M. real_cond_exp M F f x \<ge> c"
proof -
obtain u::"nat \<Rightarrow> real" where u: "\<And>n. u n < c" "u \<longlonglongrightarrow> c"
using approx_from_below_dense_linorder[of "c-1" c] by auto
have *: "AE x in M. real_cond_exp M F f x > u n" for n::nat
apply (rule real_cond_exp_gr_c) using assms \<open>u n < c\<close> by auto
have "AE x in M. \<forall>n. real_cond_exp M F f x > u n"
by (subst AE_all_countable, auto simp add: *)
moreover have "real_cond_exp M F f x \<ge> c" if "\<forall>n. real_cond_exp M F f x > u n" for x
proof -
have "real_cond_exp M F f x \<ge> u n" for n using that less_imp_le by auto
then show ?thesis using u(2) LIMSEQ_le_const2 by metis
qed
ultimately show ?thesis by auto
qed
lemma real_cond_exp_le_c:
assumes [measurable]: "integrable M f"
and "AE x in M. f x \<le> c"
shows "AE x in M. real_cond_exp M F f x \<le> c"
proof -
have "AE x in M. real_cond_exp M F f x = -real_cond_exp M F (\<lambda>x. -f x) x"
using real_cond_exp_cmult[OF \<open>integrable M f\<close>, of "-1"] by auto
moreover have "AE x in M. real_cond_exp M F (\<lambda>x. -f x) x \<ge> -c"
apply (rule real_cond_exp_ge_c) using assms by auto
ultimately show ?thesis by auto
qed
lemma real_cond_exp_mono_strict:
assumes "AE x in M. f x < g x" and [measurable]: "integrable M f" "integrable M g"
shows "AE x in M. real_cond_exp M F f x < real_cond_exp M F g x"
proof -
have "AE x in M. real_cond_exp M F g x - real_cond_exp M F f x = real_cond_exp M F (\<lambda>x. g x - f x) x"
by (rule AE_symmetric[OF real_cond_exp_diff], auto simp add: assms)
moreover have "AE x in M. real_cond_exp M F (\<lambda>x. g x - f x) x > 0"
by (rule real_cond_exp_gr_c, auto simp add: assms)
ultimately have "AE x in M. real_cond_exp M F g x - real_cond_exp M F f x > 0" by auto
then show ?thesis by auto
qed
lemma real_cond_exp_nested_subalg [intro, simp]:
assumes "subalgebra M G" "subalgebra G F"
and [measurable]: "integrable M f"
shows "AE x in M. real_cond_exp M F (real_cond_exp M G f) x = real_cond_exp M F f x"
proof (rule real_cond_exp_charact)
interpret G: sigma_finite_subalgebra M G by (rule nested_subalg_is_sigma_finite[OF assms(1) assms(2)])
show "integrable M (real_cond_exp M G f)" by (auto simp add: assms G.real_cond_exp_int(1))
fix A assume [measurable]: "A \<in> sets F"
then have [measurable]: "A \<in> sets G" using assms(2) by (meson subsetD subalgebra_def)
have "set_lebesgue_integral M A (real_cond_exp M G f) = set_lebesgue_integral M A f"
by (rule G.real_cond_exp_intA[symmetric], auto simp add: assms(3))
also have "... = set_lebesgue_integral M A (real_cond_exp M F f)"
by (rule real_cond_exp_intA, auto simp add: assms(3))
finally show "set_lebesgue_integral M A (real_cond_exp M G f) = set_lebesgue_integral M A (real_cond_exp M F f)" by auto
qed (auto simp add: assms real_cond_exp_int(1))
lemma real_cond_exp_sum [intro, simp]:
fixes f::"'b \<Rightarrow> 'a \<Rightarrow> real"
assumes [measurable]: "\<And>i. integrable M (f i)"
shows "AE x in M. real_cond_exp M F (\<lambda>x. \<Sum>i\<in>I. f i x) x = (\<Sum>i\<in>I. real_cond_exp M F (f i) x)"
proof (rule real_cond_exp_charact)
fix A assume [measurable]: "A \<in> sets F"
then have A_meas [measurable]: "A \<in> sets M" by (meson subsetD subalg subalgebra_def)
have *: "integrable M (\<lambda>x. indicator A x * f i x)" for i
using integrable_mult_indicator[OF \<open>A \<in> sets M\<close> assms(1)] by auto
have **: "integrable M (\<lambda>x. indicator A x * real_cond_exp M F (f i) x)" for i
using integrable_mult_indicator[OF \<open>A \<in> sets M\<close> real_cond_exp_int(1)[OF assms(1)]] by auto
have inti: "(\<integral>x. indicator A x * f i x \<partial>M) = (\<integral>x. indicator A x * real_cond_exp M F (f i) x \<partial>M)" for i
by (rule real_cond_exp_intg(2)[symmetric], auto simp add: *)
have "(\<integral>x\<in>A. (\<Sum>i\<in>I. f i x)\<partial>M) = (\<integral>x. (\<Sum>i\<in>I. indicator A x * f i x)\<partial>M)"
by (simp add: sum_distrib_left set_lebesgue_integral_def)
also have "... = (\<Sum>i\<in>I. (\<integral>x. indicator A x * f i x \<partial>M))"
by (rule Bochner_Integration.integral_sum, simp add: *)
also have "... = (\<Sum>i\<in>I. (\<integral>x. indicator A x * real_cond_exp M F (f i) x \<partial>M))"
using inti by auto
also have "... = (\<integral>x. (\<Sum>i\<in>I. indicator A x * real_cond_exp M F (f i) x)\<partial>M)"
by (rule Bochner_Integration.integral_sum[symmetric], simp add: **)
also have "... = (\<integral>x\<in>A. (\<Sum>i\<in>I. real_cond_exp M F (f i) x)\<partial>M)"
by (simp add: sum_distrib_left set_lebesgue_integral_def)
finally show "(\<integral>x\<in>A. (\<Sum>i\<in>I. f i x)\<partial>M) = (\<integral>x\<in>A. (\<Sum>i\<in>I. real_cond_exp M F (f i) x)\<partial>M)" by auto
qed (auto simp add: assms real_cond_exp_int(1)[OF assms(1)])
text \<open>Jensen's inequality, describing the behavior of the integral under a convex function, admits
a version for the conditional expectation, as follows.\<close>
theorem real_cond_exp_jensens_inequality:
fixes q :: "real \<Rightarrow> real"
assumes X: "integrable M X" "AE x in M. X x \<in> I"
assumes I: "I = {a <..< b} \<or> I = {a <..} \<or> I = {..< b} \<or> I = UNIV"
assumes q: "integrable M (\<lambda>x. q (X x))" "convex_on I q" "q \<in> borel_measurable borel"
shows "AE x in M. real_cond_exp M F X x \<in> I"
"AE x in M. q (real_cond_exp M F X x) \<le> real_cond_exp M F (\<lambda>x. q (X x)) x"
proof -
have "open I" using I by auto
then have "interior I = I" by (simp add: interior_eq)
have [measurable]: "I \<in> sets borel" using I by auto
define phi where "phi = (\<lambda>x. Inf ((\<lambda>t. (q x - q t) / (x - t)) ` ({x<..} \<inter> I)))"
have **: "q (X x) \<ge> q (real_cond_exp M F X x) + phi (real_cond_exp M F X x) * (X x - real_cond_exp M F X x)"
if "X x \<in> I" "real_cond_exp M F X x \<in> I" for x
unfolding phi_def apply (rule convex_le_Inf_differential)
using \<open>convex_on I q\<close> that \<open>interior I = I\<close> by auto
text \<open>It is not clear that the function $\phi$ is measurable. We replace it by a version which
is better behaved.\<close>
define psi where "psi = (\<lambda>x. phi x * indicator I x)"
have A: "psi y = phi y" if "y \<in> I" for y unfolding psi_def indicator_def using that by auto
have *: "q (X x) \<ge> q (real_cond_exp M F X x) + psi (real_cond_exp M F X x) * (X x - real_cond_exp M F X x)"
if "X x \<in> I" "real_cond_exp M F X x \<in> I" for x
unfolding A[OF \<open>real_cond_exp M F X x \<in> I\<close>] using ** that by auto
note I
moreover have "AE x in M. real_cond_exp M F X x > a" if "I \<subseteq> {a <..}" for a
apply (rule real_cond_exp_gr_c) using X that by auto
moreover have "AE x in M. real_cond_exp M F X x < b" if "I \<subseteq> {..<b}" for b
apply (rule real_cond_exp_less_c) using X that by auto
ultimately show "AE x in M. real_cond_exp M F X x \<in> I"
by (elim disjE) (auto simp: subset_eq)
then have main_ineq: "AE x in M. q (X x) \<ge> q (real_cond_exp M F X x) + psi (real_cond_exp M F X x) * (X x - real_cond_exp M F X x)"
using * X(2) by auto
text \<open>Then, one wants to take the conditional expectation of this inequality. On the left, one gets
the conditional expectation of $q \circ X$. On the right, the last term vanishes, and one
is left with $q$ of the conditional expectation, as desired. Unfortunately, this argument only
works if $\psi \cdot X$ and $q(E(X | F))$ are integrable, and there is no reason why this should be true. The
trick is to multiply by a $F$-measurable function which is small enough to make
everything integrable.\<close>
obtain f::"'a \<Rightarrow> real" where [measurable]: "f \<in> borel_measurable (restr_to_subalg M F)"
"integrable (restr_to_subalg M F) f"
and f: "\<And>x. f x > 0" "\<And>x. f x \<le> 1"
using sigma_finite_measure.obtain_positive_integrable_function[OF sigma_fin_subalg] by metis
then have [measurable]: "f \<in> borel_measurable F" by (simp add: subalg)
then have [measurable]: "f \<in> borel_measurable M" using measurable_from_subalg[OF subalg] by blast
define g where "g = (\<lambda>x. f x/(1+ \<bar>psi (real_cond_exp M F X x)\<bar> + \<bar>q (real_cond_exp M F X x)\<bar>))"
define G where "G = (\<lambda>x. g x * psi (real_cond_exp M F X x))"
have g: "g x > 0" "g x \<le> 1" for x unfolding G_def g_def using f[of x] by (auto simp add: abs_mult)
have G: "\<bar>G x\<bar> \<le> 1" for x unfolding G_def g_def using f[of x]
proof (auto simp add: abs_mult)
have "f x * \<bar>psi (real_cond_exp M F X x)\<bar> \<le> 1 * \<bar>psi (real_cond_exp M F X x)\<bar>"
apply (rule mult_mono) using f[of x] by auto
also have "... \<le> 1 + \<bar>psi (real_cond_exp M F X x)\<bar> + \<bar>q (real_cond_exp M F X x)\<bar>" by auto
finally show "f x * \<bar>psi (real_cond_exp M F X x)\<bar> \<le> 1 + \<bar>psi (real_cond_exp M F X x)\<bar> + \<bar>q (real_cond_exp M F X x)\<bar>"
by simp
qed
have "AE x in M. g x * q (X x) \<ge> g x * (q (real_cond_exp M F X x) + psi (real_cond_exp M F X x) * (X x - real_cond_exp M F X x))"
using main_ineq g by (auto simp add: divide_simps)
then have main_G: "AE x in M. g x * q (X x) \<ge> g x * q (real_cond_exp M F X x) + G x * (X x - real_cond_exp M F X x)"
unfolding G_def by (auto simp add: algebra_simps)
text \<open>To proceed, we need to know that $\psi$ is measurable.\<close>
have phi_mono: "phi x \<le> phi y" if "x \<le> y" "x \<in> I" "y \<in> I" for x y
proof (cases "x < y")
case True
have "q x + phi x * (y-x) \<le> q y"
unfolding phi_def apply (rule convex_le_Inf_differential) using \<open>convex_on I q\<close> that \<open>interior I = I\<close> by auto
then have "phi x \<le> (q x - q y) / (x - y)"
using that \<open>x < y\<close> by (auto simp add: field_split_simps algebra_simps)
moreover have "(q x - q y)/(x - y) \<le> phi y"
unfolding phi_def proof (rule cInf_greatest, auto)
fix t assume "t \<in> I" "y < t"
have "(q x - q y) / (x - y) \<le> (q x - q t) / (x - t)"
apply (rule convex_on_diff[OF q(2)]) using \<open>y < t\<close> \<open>x < y\<close> \<open>t \<in> I\<close> \<open>x \<in> I\<close> by auto
also have "... \<le> (q y - q t) / (y - t)"
apply (rule convex_on_diff[OF q(2)]) using \<open>y < t\<close> \<open>x < y\<close> \<open>t \<in> I\<close> \<open>x \<in> I\<close> by auto
finally show "(q x - q y) / (x - y) \<le> (q y - q t) / (y - t)" by simp
next
obtain e where "0 < e" "ball y e \<subseteq> I" using \<open>open I\<close> \<open>y \<in> I\<close> openE by blast
then have "y + e/2 \<in> {y<..} \<inter> I" by (auto simp: dist_real_def)
then show "{y<..} \<inter> I = {} \<Longrightarrow> False" by auto
qed
ultimately show "phi x \<le> phi y" by auto
next
case False
then have "x = y" using \<open>x \<le> y\<close> by auto
then show ?thesis by auto
qed
have [measurable]: "psi \<in> borel_measurable borel"
by (rule borel_measurable_piecewise_mono[of "{I, -I}"])
(auto simp add: psi_def indicator_def phi_mono intro: mono_onI)
have [measurable]: "q \<in> borel_measurable borel" using q by simp
have [measurable]: "X \<in> borel_measurable M"
"real_cond_exp M F X \<in> borel_measurable F"
"g \<in> borel_measurable F" "g \<in> borel_measurable M"
"G \<in> borel_measurable F" "G \<in> borel_measurable M"
using X measurable_from_subalg[OF subalg] unfolding G_def g_def by auto
have int1: "integrable (restr_to_subalg M F) (\<lambda>x. g x * q (real_cond_exp M F X x))"
apply (rule Bochner_Integration.integrable_bound[of _ f], auto simp add: subalg \<open>integrable (restr_to_subalg M F) f\<close>)
unfolding g_def by (auto simp add: field_split_simps abs_mult algebra_simps)
have int2: "integrable M (\<lambda>x. G x * (X x - real_cond_exp M F X x))"
apply (rule Bochner_Integration.integrable_bound[of _ "\<lambda>x. \<bar>X x\<bar> + \<bar>real_cond_exp M F X x\<bar>"])
apply (auto intro!: Bochner_Integration.integrable_add integrable_abs real_cond_exp_int \<open>integrable M X\<close> AE_I2)
using G unfolding abs_mult by (meson abs_ge_zero abs_triangle_ineq4 dual_order.trans mult_left_le_one_le)
have int3: "integrable M (\<lambda>x. g x * q (X x))"
apply (rule Bochner_Integration.integrable_bound[of _ "\<lambda>x. q(X x)"], auto simp add: q(1) abs_mult)
using g by (simp add: less_imp_le mult_left_le_one_le)
text \<open>Taking the conditional expectation of the main convexity inequality \verb+main_G+, we get
the following.\<close>
have "AE x in M. real_cond_exp M F (\<lambda>x. g x * q (X x)) x \<ge> real_cond_exp M F (\<lambda>x. g x * q (real_cond_exp M F X x) + G x * (X x - real_cond_exp M F X x)) x"
apply (rule real_cond_exp_mono[OF main_G])
apply (rule Bochner_Integration.integrable_add[OF integrable_from_subalg[OF subalg int1]])
using int2 int3 by auto
text \<open>This reduces to the desired inequality thanks to the properties of conditional expectation,
i.e., the conditional expectation of an $F$-measurable function is this function, and one can
multiply an $F$-measurable function outside of conditional expectations.
Since all these equalities only hold almost everywhere, we formulate them separately,
and then combine all of them to simplify the above equation, again almost everywhere.\<close>
moreover have "AE x in M. real_cond_exp M F (\<lambda>x. g x * q (X x)) x = g x * real_cond_exp M F (\<lambda>x. q (X x)) x"
by (rule real_cond_exp_mult, auto simp add: int3)
moreover have "AE x in M. real_cond_exp M F (\<lambda>x. g x * q (real_cond_exp M F X x) + G x * (X x - real_cond_exp M F X x)) x
= real_cond_exp M F (\<lambda>x. g x * q (real_cond_exp M F X x)) x + real_cond_exp M F (\<lambda>x. G x * (X x - real_cond_exp M F X x)) x"
by (rule real_cond_exp_add, auto simp add: integrable_from_subalg[OF subalg int1] int2)
moreover have "AE x in M. real_cond_exp M F (\<lambda>x. g x * q (real_cond_exp M F X x)) x = g x * q (real_cond_exp M F X x)"
by (rule real_cond_exp_F_meas, auto simp add: integrable_from_subalg[OF subalg int1])
moreover have "AE x in M. real_cond_exp M F (\<lambda>x. G x * (X x - real_cond_exp M F X x)) x = G x * real_cond_exp M F (\<lambda>x. (X x - real_cond_exp M F X x)) x"
by (rule real_cond_exp_mult, auto simp add: int2)
moreover have "AE x in M. real_cond_exp M F (\<lambda>x. (X x - real_cond_exp M F X x)) x = real_cond_exp M F X x - real_cond_exp M F (\<lambda>x. real_cond_exp M F X x) x"
by (rule real_cond_exp_diff, auto intro!: real_cond_exp_int \<open>integrable M X\<close>)
moreover have "AE x in M. real_cond_exp M F (\<lambda>x. real_cond_exp M F X x) x = real_cond_exp M F X x "
by (rule real_cond_exp_F_meas, auto intro!: real_cond_exp_int \<open>integrable M X\<close>)
ultimately have "AE x in M. g x * real_cond_exp M F (\<lambda>x. q (X x)) x \<ge> g x * q (real_cond_exp M F X x)"
by auto
then show "AE x in M. real_cond_exp M F (\<lambda>x. q (X x)) x \<ge> q (real_cond_exp M F X x)"
using g(1) by (auto simp add: field_split_simps)
qed
text \<open>Jensen's inequality does not imply that $q(E(X|F))$ is integrable, as it only proves an upper
bound for it. Indeed, this is not true in general, as the following counterexample shows:
on $[1,\infty)$ with Lebesgue measure, let $F$ be the sigma-algebra generated by the intervals $[n, n+1)$
for integer $n$. Let $q(x) = - \sqrt{x}$ for $x\geq 0$. Define $X$ which is equal to $1/n$ over
$[n, n+1/n)$ and $2^{-n}$ on $[n+1/n, n+1)$. Then $X$ is integrable as $\sum 1/n^2 < \infty$, and
$q(X)$ is integrable as $\sum 1/n^{3/2} < \infty$. On the other hand, $E(X|F)$ is essentially equal
to $1/n^2$ on $[n, n+1)$ (we neglect the term $2^{-n}$, we only put it there because $X$ should take
its values in $I=(0,\infty)$). Hence, $q(E(X|F))$ is equal to $-1/n$ on $[n, n+1)$, hence it is not
integrable.
However, this counterexample is essentially the only situation where this function is not
integrable, as shown by the next lemma.
\<close>
lemma integrable_convex_cond_exp:
fixes q :: "real \<Rightarrow> real"
assumes X: "integrable M X" "AE x in M. X x \<in> I"
assumes I: "I = {a <..< b} \<or> I = {a <..} \<or> I = {..< b} \<or> I = UNIV"
assumes q: "integrable M (\<lambda>x. q (X x))" "convex_on I q" "q \<in> borel_measurable borel"
assumes H: "emeasure M (space M) = \<infinity> \<Longrightarrow> 0 \<in> I"
shows "integrable M (\<lambda>x. q (real_cond_exp M F X x))"
proof -
have [measurable]: "(\<lambda>x. q (real_cond_exp M F X x)) \<in> borel_measurable M"
"q \<in> borel_measurable borel"
"X \<in> borel_measurable M"
using X(1) q(3) by auto
have "open I" using I by auto
then have "interior I = I" by (simp add: interior_eq)
consider "emeasure M (space M) = 0" | "emeasure M (space M) > 0 \<and> emeasure M (space M) < \<infinity>" | "emeasure M (space M) = \<infinity>"
by (metis infinity_ennreal_def not_gr_zero top.not_eq_extremum)
then show ?thesis
proof (cases)
case 1
show ?thesis by (subst integrable_cong_AE[of _ _ "\<lambda>x. 0"], auto intro: emeasure_0_AE[OF 1])
next
case 2
interpret finite_measure M using 2 by (auto intro!: finite_measureI)
have "I \<noteq> {}"
using \<open>AE x in M. X x \<in> I\<close> 2 eventually_mono integral_less_AE_space by fastforce
then obtain z where "z \<in> I" by auto
define A where "A = Inf ((\<lambda>t. (q z - q t) / (z - t)) ` ({z<..} \<inter> I))"
have "q y \<ge> q z + A * (y - z)" if "y \<in> I" for y unfolding A_def apply (rule convex_le_Inf_differential)
using \<open>z \<in> I\<close> \<open>y \<in> I\<close> \<open>interior I = I\<close> q(2) by auto
then have "AE x in M. q (real_cond_exp M F X x) \<ge> q z + A * (real_cond_exp M F X x - z)"
using real_cond_exp_jensens_inequality(1)[OF X I q] by auto
moreover have "AE x in M. q (real_cond_exp M F X x) \<le> real_cond_exp M F (\<lambda>x. q (X x)) x"
using real_cond_exp_jensens_inequality(2)[OF X I q] by auto
moreover have "\<bar>a\<bar> \<le> \<bar>b\<bar> + \<bar>c\<bar>" if "b \<le> a \<and> a \<le> c" for a b c::real
using that by auto
ultimately have *: "AE x in M. \<bar>q (real_cond_exp M F X x)\<bar>
\<le> \<bar>real_cond_exp M F (\<lambda>x. q (X x)) x\<bar> + \<bar>q z + A * (real_cond_exp M F X x - z)\<bar>"
by auto
show "integrable M (\<lambda>x. q (real_cond_exp M F X x))"
apply (rule Bochner_Integration.integrable_bound[of _ "\<lambda>x. \<bar>real_cond_exp M F (\<lambda>x. q (X x)) x\<bar> + \<bar>q z + A * (real_cond_exp M F X x - z)\<bar>"])
apply (auto intro!: Bochner_Integration.integrable_add integrable_abs integrable_mult_right Bochner_Integration.integrable_diff real_cond_exp_int(1))
using X(1) q(1) * by auto
next
case 3
then have "0 \<in> I" using H finite_measure.finite_emeasure_space by auto
have "q(0) = 0"
proof (rule ccontr)
assume *: "\<not>(q(0) = 0)"
define e where "e = \<bar>q(0)\<bar> / 2"
then have "e > 0" using * by auto
have "continuous (at 0) q"
using q(2) \<open>0 \<in> I\<close> \<open>open I\<close> \<open>interior I = I\<close> continuous_on_interior convex_on_continuous by blast
then obtain d where d: "d > 0" "\<And>y. \<bar>y - 0\<bar> < d \<Longrightarrow> \<bar>q y - q 0\<bar> < e" using \<open>e > 0\<close>
by (metis continuous_at_real_range real_norm_def)
then have *: "\<bar>q(y)\<bar> > e" if "\<bar>y\<bar> < d" for y
proof -
have "\<bar>q 0\<bar> \<le> \<bar>q 0 - q y\<bar> + \<bar>q y\<bar>" by auto
also have "... < e + \<bar>q y\<bar>" using d(2) that by force
finally have "\<bar>q y\<bar> > \<bar>q 0\<bar> - e" by auto
then show ?thesis unfolding e_def by simp
qed
have "emeasure M {x \<in> space M. \<bar>X x\<bar> < d} \<le> emeasure M ({x \<in> space M. 1 \<le> ennreal(1/e) * \<bar>q(X x)\<bar>})"
by (rule emeasure_mono, auto simp add: * \<open>e>0\<close> less_imp_le ennreal_mult''[symmetric])
also have "... \<le> (1/e) * (\<integral>\<^sup>+x. ennreal(\<bar>q(X x)\<bar>) * indicator (space M) x \<partial>M)"
by (rule nn_integral_Markov_inequality, auto)
also have "... = (1/e) * (\<integral>\<^sup>+x. ennreal(\<bar>q(X x)\<bar>) \<partial>M)" by auto
also have "... = (1/e) * ennreal(\<integral>x. \<bar>q(X x)\<bar> \<partial>M)"
using nn_integral_eq_integral[OF integrable_abs[OF q(1)]] by auto
also have "... < \<infinity>"
by (simp add: ennreal_mult_less_top)
finally have A: "emeasure M {x \<in> space M. \<bar>X x\<bar> < d} < \<infinity>" by simp
have "{x \<in> space M. \<bar>X x\<bar> \<ge> d} = {x \<in> space M. 1 \<le> ennreal(1/d) * \<bar>X x\<bar>} \<inter> space M"
by (auto simp add: \<open>d>0\<close> ennreal_mult''[symmetric])
then have "emeasure M {x \<in> space M. \<bar>X x\<bar> \<ge> d} = emeasure M ({x \<in> space M. 1 \<le> ennreal(1/d) * \<bar>X x\<bar>})"
by auto
also have "... \<le> (1/d) * (\<integral>\<^sup>+x. ennreal(\<bar>X x\<bar>) * indicator (space M) x \<partial>M)"
by (rule nn_integral_Markov_inequality, auto)
also have "... = (1/d) * (\<integral>\<^sup>+x. ennreal(\<bar>X x\<bar>) \<partial>M)" by auto
also have "... = (1/d) * ennreal(\<integral>x. \<bar>X x\<bar> \<partial>M)"
using nn_integral_eq_integral[OF integrable_abs[OF X(1)]] by auto
also have "... < \<infinity>"
by (simp add: ennreal_mult_less_top)
finally have B: "emeasure M {x \<in> space M. \<bar>X x\<bar> \<ge> d} < \<infinity>" by simp
have "space M = {x \<in> space M. \<bar>X x\<bar> < d} \<union> {x \<in> space M. \<bar>X x\<bar> \<ge> d}" by auto
then have "emeasure M (space M) = emeasure M ({x \<in> space M. \<bar>X x\<bar> < d} \<union> {x \<in> space M. \<bar>X x\<bar> \<ge> d})"
by simp
also have "... \<le> emeasure M {x \<in> space M. \<bar>X x\<bar> < d} + emeasure M {x \<in> space M. \<bar>X x\<bar> \<ge> d}"
by (auto intro!: emeasure_subadditive)
also have "... < \<infinity>" using A B by auto
finally show False using \<open>emeasure M (space M) = \<infinity>\<close> by auto
qed
define A where "A = Inf ((\<lambda>t. (q 0 - q t) / (0 - t)) ` ({0<..} \<inter> I))"
have "q y \<ge> q 0 + A * (y - 0)" if "y \<in> I" for y unfolding A_def apply (rule convex_le_Inf_differential)
using \<open>0 \<in> I\<close> \<open>y \<in> I\<close> \<open>interior I = I\<close> q(2) by auto
then have "q y \<ge> A * y" if "y \<in> I" for y using \<open>q 0 = 0\<close> that by auto
then have "AE x in M. q (real_cond_exp M F X x) \<ge> A * real_cond_exp M F X x"
using real_cond_exp_jensens_inequality(1)[OF X I q] by auto
moreover have "AE x in M. q (real_cond_exp M F X x) \<le> real_cond_exp M F (\<lambda>x. q (X x)) x"
using real_cond_exp_jensens_inequality(2)[OF X I q] by auto
moreover have "\<bar>a\<bar> \<le> \<bar>b\<bar> + \<bar>c\<bar>" if "b \<le> a \<and> a \<le> c" for a b c::real
using that by auto
ultimately have *: "AE x in M. \<bar>q (real_cond_exp M F X x)\<bar>
\<le> \<bar>real_cond_exp M F (\<lambda>x. q (X x)) x\<bar> + \<bar>A * real_cond_exp M F X x\<bar>"
by auto
show "integrable M (\<lambda>x. q (real_cond_exp M F X x))"
apply (rule Bochner_Integration.integrable_bound[of _ "\<lambda>x. \<bar>real_cond_exp M F (\<lambda>x. q (X x)) x\<bar> + \<bar>A * real_cond_exp M F X x \<bar>"])
apply (auto intro!: Bochner_Integration.integrable_add integrable_abs integrable_mult_right Bochner_Integration.integrable_diff real_cond_exp_int(1))
using X(1) q(1) * by auto
qed
qed
end
end