(* Title: HOL/Complete_Partial_Order.thy
Author: Brian Huffman, Portland State University
Author: Alexander Krauss, TU Muenchen
*)
header {* Chain-complete partial orders and their fixpoints *}
theory Complete_Partial_Order
imports Product_Type
begin
subsection {* Monotone functions *}
text {* Dictionary-passing version of @{const Orderings.mono}. *}
definition monotone :: "('a \<Rightarrow> 'a \<Rightarrow> bool) \<Rightarrow> ('b \<Rightarrow> 'b \<Rightarrow> bool) \<Rightarrow> ('a \<Rightarrow> 'b) \<Rightarrow> bool"
where "monotone orda ordb f \<longleftrightarrow> (\<forall>x y. orda x y \<longrightarrow> ordb (f x) (f y))"
lemma monotoneI[intro?]: "(\<And>x y. orda x y \<Longrightarrow> ordb (f x) (f y))
\<Longrightarrow> monotone orda ordb f"
unfolding monotone_def by iprover
lemma monotoneD[dest?]: "monotone orda ordb f \<Longrightarrow> orda x y \<Longrightarrow> ordb (f x) (f y)"
unfolding monotone_def by iprover
subsection {* Chains *}
text {* A chain is a totally-ordered set. Chains are parameterized over
the order for maximal flexibility, since type classes are not enough.
*}
definition
chain :: "('a \<Rightarrow> 'a \<Rightarrow> bool) \<Rightarrow> 'a set \<Rightarrow> bool"
where
"chain ord S \<longleftrightarrow> (\<forall>x\<in>S. \<forall>y\<in>S. ord x y \<or> ord y x)"
lemma chainI:
assumes "\<And>x y. x \<in> S \<Longrightarrow> y \<in> S \<Longrightarrow> ord x y \<or> ord y x"
shows "chain ord S"
using assms unfolding chain_def by fast
lemma chainD:
assumes "chain ord S" and "x \<in> S" and "y \<in> S"
shows "ord x y \<or> ord y x"
using assms unfolding chain_def by fast
lemma chainE:
assumes "chain ord S" and "x \<in> S" and "y \<in> S"
obtains "ord x y" | "ord y x"
using assms unfolding chain_def by fast
lemma chain_empty: "chain ord {}"
by(simp add: chain_def)
subsection {* Chain-complete partial orders *}
text {*
A ccpo has a least upper bound for any chain. In particular, the
empty set is a chain, so every ccpo must have a bottom element.
*}
class ccpo = order + Sup +
assumes ccpo_Sup_upper: "\<lbrakk>chain (op \<le>) A; x \<in> A\<rbrakk> \<Longrightarrow> x \<le> Sup A"
assumes ccpo_Sup_least: "\<lbrakk>chain (op \<le>) A; \<And>x. x \<in> A \<Longrightarrow> x \<le> z\<rbrakk> \<Longrightarrow> Sup A \<le> z"
begin
subsection {* Transfinite iteration of a function *}
inductive_set iterates :: "('a \<Rightarrow> 'a) \<Rightarrow> 'a set"
for f :: "'a \<Rightarrow> 'a"
where
step: "x \<in> iterates f \<Longrightarrow> f x \<in> iterates f"
| Sup: "chain (op \<le>) M \<Longrightarrow> \<forall>x\<in>M. x \<in> iterates f \<Longrightarrow> Sup M \<in> iterates f"
lemma iterates_le_f:
"x \<in> iterates f \<Longrightarrow> monotone (op \<le>) (op \<le>) f \<Longrightarrow> x \<le> f x"
by (induct x rule: iterates.induct)
(force dest: monotoneD intro!: ccpo_Sup_upper ccpo_Sup_least)+
lemma chain_iterates:
assumes f: "monotone (op \<le>) (op \<le>) f"
shows "chain (op \<le>) (iterates f)" (is "chain _ ?C")
proof (rule chainI)
fix x y assume "x \<in> ?C" "y \<in> ?C"
then show "x \<le> y \<or> y \<le> x"
proof (induct x arbitrary: y rule: iterates.induct)
fix x y assume y: "y \<in> ?C"
and IH: "\<And>z. z \<in> ?C \<Longrightarrow> x \<le> z \<or> z \<le> x"
from y show "f x \<le> y \<or> y \<le> f x"
proof (induct y rule: iterates.induct)
case (step y) with IH f show ?case by (auto dest: monotoneD)
next
case (Sup M)
then have chM: "chain (op \<le>) M"
and IH': "\<And>z. z \<in> M \<Longrightarrow> f x \<le> z \<or> z \<le> f x" by auto
show "f x \<le> Sup M \<or> Sup M \<le> f x"
proof (cases "\<exists>z\<in>M. f x \<le> z")
case True then have "f x \<le> Sup M"
apply rule
apply (erule order_trans)
by (rule ccpo_Sup_upper[OF chM])
thus ?thesis ..
next
case False with IH'
show ?thesis by (auto intro: ccpo_Sup_least[OF chM])
qed
qed
next
case (Sup M y)
show ?case
proof (cases "\<exists>x\<in>M. y \<le> x")
case True then have "y \<le> Sup M"
apply rule
apply (erule order_trans)
by (rule ccpo_Sup_upper[OF Sup(1)])
thus ?thesis ..
next
case False with Sup
show ?thesis by (auto intro: ccpo_Sup_least)
qed
qed
qed
lemma bot_in_iterates: "Sup {} \<in> iterates f"
by(auto intro: iterates.Sup simp add: chain_empty)
subsection {* Fixpoint combinator *}
definition
fixp :: "('a \<Rightarrow> 'a) \<Rightarrow> 'a"
where
"fixp f = Sup (iterates f)"
lemma iterates_fixp:
assumes f: "monotone (op \<le>) (op \<le>) f" shows "fixp f \<in> iterates f"
unfolding fixp_def
by (simp add: iterates.Sup chain_iterates f)
lemma fixp_unfold:
assumes f: "monotone (op \<le>) (op \<le>) f"
shows "fixp f = f (fixp f)"
proof (rule antisym)
show "fixp f \<le> f (fixp f)"
by (intro iterates_le_f iterates_fixp f)
have "f (fixp f) \<le> Sup (iterates f)"
by (intro ccpo_Sup_upper chain_iterates f iterates.step iterates_fixp)
thus "f (fixp f) \<le> fixp f"
unfolding fixp_def .
qed
lemma fixp_lowerbound:
assumes f: "monotone (op \<le>) (op \<le>) f" and z: "f z \<le> z" shows "fixp f \<le> z"
unfolding fixp_def
proof (rule ccpo_Sup_least[OF chain_iterates[OF f]])
fix x assume "x \<in> iterates f"
thus "x \<le> z"
proof (induct x rule: iterates.induct)
fix x assume "x \<le> z" with f have "f x \<le> f z" by (rule monotoneD)
also note z finally show "f x \<le> z" .
qed (auto intro: ccpo_Sup_least)
qed
end
subsection {* Fixpoint induction *}
setup {* Sign.map_naming (Name_Space.mandatory_path "ccpo") *}
definition admissible :: "('a set \<Rightarrow> 'a) \<Rightarrow> ('a \<Rightarrow> 'a \<Rightarrow> bool) \<Rightarrow> ('a \<Rightarrow> bool) \<Rightarrow> bool"
where "admissible lub ord P = (\<forall>A. chain ord A \<longrightarrow> (A \<noteq> {}) \<longrightarrow> (\<forall>x\<in>A. P x) \<longrightarrow> P (lub A))"
lemma admissibleI:
assumes "\<And>A. chain ord A \<Longrightarrow> A \<noteq> {} \<Longrightarrow> \<forall>x\<in>A. P x \<Longrightarrow> P (lub A)"
shows "ccpo.admissible lub ord P"
using assms unfolding ccpo.admissible_def by fast
lemma admissibleD:
assumes "ccpo.admissible lub ord P"
assumes "chain ord A"
assumes "A \<noteq> {}"
assumes "\<And>x. x \<in> A \<Longrightarrow> P x"
shows "P (lub A)"
using assms by (auto simp: ccpo.admissible_def)
setup {* Sign.map_naming Name_Space.parent_path *}
lemma (in ccpo) fixp_induct:
assumes adm: "ccpo.admissible Sup (op \<le>) P"
assumes mono: "monotone (op \<le>) (op \<le>) f"
assumes bot: "P (Sup {})"
assumes step: "\<And>x. P x \<Longrightarrow> P (f x)"
shows "P (fixp f)"
unfolding fixp_def using adm chain_iterates[OF mono]
proof (rule ccpo.admissibleD)
show "iterates f \<noteq> {}" using bot_in_iterates by auto
fix x assume "x \<in> iterates f"
thus "P x"
by (induct rule: iterates.induct)
(case_tac "M = {}", auto intro: step bot ccpo.admissibleD adm)
qed
lemma admissible_True: "ccpo.admissible lub ord (\<lambda>x. True)"
unfolding ccpo.admissible_def by simp
(*lemma admissible_False: "\<not> ccpo.admissible lub ord (\<lambda>x. False)"
unfolding ccpo.admissible_def chain_def by simp
*)
lemma admissible_const: "ccpo.admissible lub ord (\<lambda>x. t)"
by(auto intro: ccpo.admissibleI)
lemma admissible_conj:
assumes "ccpo.admissible lub ord (\<lambda>x. P x)"
assumes "ccpo.admissible lub ord (\<lambda>x. Q x)"
shows "ccpo.admissible lub ord (\<lambda>x. P x \<and> Q x)"
using assms unfolding ccpo.admissible_def by simp
lemma admissible_all:
assumes "\<And>y. ccpo.admissible lub ord (\<lambda>x. P x y)"
shows "ccpo.admissible lub ord (\<lambda>x. \<forall>y. P x y)"
using assms unfolding ccpo.admissible_def by fast
lemma admissible_ball:
assumes "\<And>y. y \<in> A \<Longrightarrow> ccpo.admissible lub ord (\<lambda>x. P x y)"
shows "ccpo.admissible lub ord (\<lambda>x. \<forall>y\<in>A. P x y)"
using assms unfolding ccpo.admissible_def by fast
lemma chain_compr: "chain ord A \<Longrightarrow> chain ord {x \<in> A. P x}"
unfolding chain_def by fast
context ccpo begin
lemma admissible_disj_lemma:
assumes A: "chain (op \<le>)A"
assumes P: "\<forall>x\<in>A. \<exists>y\<in>A. x \<le> y \<and> P y"
shows "Sup A = Sup {x \<in> A. P x}"
proof (rule antisym)
have *: "chain (op \<le>) {x \<in> A. P x}"
by (rule chain_compr [OF A])
show "Sup A \<le> Sup {x \<in> A. P x}"
apply (rule ccpo_Sup_least [OF A])
apply (drule P [rule_format], clarify)
apply (erule order_trans)
apply (simp add: ccpo_Sup_upper [OF *])
done
show "Sup {x \<in> A. P x} \<le> Sup A"
apply (rule ccpo_Sup_least [OF *])
apply clarify
apply (simp add: ccpo_Sup_upper [OF A])
done
qed
lemma admissible_disj:
fixes P Q :: "'a \<Rightarrow> bool"
assumes P: "ccpo.admissible Sup (op \<le>) (\<lambda>x. P x)"
assumes Q: "ccpo.admissible Sup (op \<le>) (\<lambda>x. Q x)"
shows "ccpo.admissible Sup (op \<le>) (\<lambda>x. P x \<or> Q x)"
proof (rule ccpo.admissibleI)
fix A :: "'a set" assume A: "chain (op \<le>) A"
assume "A \<noteq> {}"
and "\<forall>x\<in>A. P x \<or> Q x"
hence "(\<exists>x\<in>A. P x) \<and> (\<forall>x\<in>A. \<exists>y\<in>A. x \<le> y \<and> P y) \<or> (\<exists>x\<in>A. Q x) \<and> (\<forall>x\<in>A. \<exists>y\<in>A. x \<le> y \<and> Q y)"
using chainD[OF A] by blast
hence "(\<exists>x. x \<in> A \<and> P x) \<and> Sup A = Sup {x \<in> A. P x} \<or> (\<exists>x. x \<in> A \<and> Q x) \<and> Sup A = Sup {x \<in> A. Q x}"
using admissible_disj_lemma [OF A] by blast
thus "P (Sup A) \<or> Q (Sup A)"
apply (rule disjE, simp_all)
apply (rule disjI1, rule ccpo.admissibleD [OF P chain_compr [OF A]], simp, simp)
apply (rule disjI2, rule ccpo.admissibleD [OF Q chain_compr [OF A]], simp, simp)
done
qed
end
instance complete_lattice \<subseteq> ccpo
by default (fast intro: Sup_upper Sup_least)+
lemma lfp_eq_fixp:
assumes f: "mono f" shows "lfp f = fixp f"
proof (rule antisym)
from f have f': "monotone (op \<le>) (op \<le>) f"
unfolding mono_def monotone_def .
show "lfp f \<le> fixp f"
by (rule lfp_lowerbound, subst fixp_unfold [OF f'], rule order_refl)
show "fixp f \<le> lfp f"
by (rule fixp_lowerbound [OF f'], subst lfp_unfold [OF f], rule order_refl)
qed
hide_const (open) iterates fixp
end