author | traytel |
Thu, 24 Sep 2015 12:21:19 +0200 | |
changeset 61241 | 69a97fc33f7a |
parent 61233 | 1da01148d4b1 |
child 61245 | b77bf45efe21 |
permissions | -rw-r--r-- |
60036 | 1 |
(* Title: HOL/Filter.thy |
2 |
Author: Brian Huffman |
|
3 |
Author: Johannes Hölzl |
|
4 |
*) |
|
5 |
||
60758 | 6 |
section \<open>Filters on predicates\<close> |
60036 | 7 |
|
8 |
theory Filter |
|
9 |
imports Set_Interval Lifting_Set |
|
10 |
begin |
|
11 |
||
60758 | 12 |
subsection \<open>Filters\<close> |
60036 | 13 |
|
60758 | 14 |
text \<open> |
60036 | 15 |
This definition also allows non-proper filters. |
60758 | 16 |
\<close> |
60036 | 17 |
|
18 |
locale is_filter = |
|
19 |
fixes F :: "('a \<Rightarrow> bool) \<Rightarrow> bool" |
|
20 |
assumes True: "F (\<lambda>x. True)" |
|
21 |
assumes conj: "F (\<lambda>x. P x) \<Longrightarrow> F (\<lambda>x. Q x) \<Longrightarrow> F (\<lambda>x. P x \<and> Q x)" |
|
22 |
assumes mono: "\<forall>x. P x \<longrightarrow> Q x \<Longrightarrow> F (\<lambda>x. P x) \<Longrightarrow> F (\<lambda>x. Q x)" |
|
23 |
||
24 |
typedef 'a filter = "{F :: ('a \<Rightarrow> bool) \<Rightarrow> bool. is_filter F}" |
|
25 |
proof |
|
26 |
show "(\<lambda>x. True) \<in> ?filter" by (auto intro: is_filter.intro) |
|
27 |
qed |
|
28 |
||
29 |
lemma is_filter_Rep_filter: "is_filter (Rep_filter F)" |
|
30 |
using Rep_filter [of F] by simp |
|
31 |
||
32 |
lemma Abs_filter_inverse': |
|
33 |
assumes "is_filter F" shows "Rep_filter (Abs_filter F) = F" |
|
34 |
using assms by (simp add: Abs_filter_inverse) |
|
35 |
||
36 |
||
60758 | 37 |
subsubsection \<open>Eventually\<close> |
60036 | 38 |
|
39 |
definition eventually :: "('a \<Rightarrow> bool) \<Rightarrow> 'a filter \<Rightarrow> bool" |
|
40 |
where "eventually P F \<longleftrightarrow> Rep_filter F P" |
|
41 |
||
60037 | 42 |
syntax (xsymbols) |
60038 | 43 |
"_eventually" :: "pttrn => 'a filter => bool => bool" ("(3\<forall>\<^sub>F _ in _./ _)" [0, 0, 10] 10) |
60037 | 44 |
|
45 |
translations |
|
60038 | 46 |
"\<forall>\<^sub>Fx in F. P" == "CONST eventually (\<lambda>x. P) F" |
60037 | 47 |
|
60036 | 48 |
lemma eventually_Abs_filter: |
49 |
assumes "is_filter F" shows "eventually P (Abs_filter F) = F P" |
|
50 |
unfolding eventually_def using assms by (simp add: Abs_filter_inverse) |
|
51 |
||
52 |
lemma filter_eq_iff: |
|
53 |
shows "F = F' \<longleftrightarrow> (\<forall>P. eventually P F = eventually P F')" |
|
54 |
unfolding Rep_filter_inject [symmetric] fun_eq_iff eventually_def .. |
|
55 |
||
56 |
lemma eventually_True [simp]: "eventually (\<lambda>x. True) F" |
|
57 |
unfolding eventually_def |
|
58 |
by (rule is_filter.True [OF is_filter_Rep_filter]) |
|
59 |
||
60 |
lemma always_eventually: "\<forall>x. P x \<Longrightarrow> eventually P F" |
|
61 |
proof - |
|
62 |
assume "\<forall>x. P x" hence "P = (\<lambda>x. True)" by (simp add: ext) |
|
63 |
thus "eventually P F" by simp |
|
64 |
qed |
|
65 |
||
60040
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
66 |
lemma eventuallyI: "(\<And>x. P x) \<Longrightarrow> eventually P F" |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
67 |
by (auto intro: always_eventually) |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
68 |
|
60036 | 69 |
lemma eventually_mono: |
70 |
"(\<forall>x. P x \<longrightarrow> Q x) \<Longrightarrow> eventually P F \<Longrightarrow> eventually Q F" |
|
71 |
unfolding eventually_def |
|
72 |
by (rule is_filter.mono [OF is_filter_Rep_filter]) |
|
73 |
||
74 |
lemma eventually_conj: |
|
75 |
assumes P: "eventually (\<lambda>x. P x) F" |
|
76 |
assumes Q: "eventually (\<lambda>x. Q x) F" |
|
77 |
shows "eventually (\<lambda>x. P x \<and> Q x) F" |
|
78 |
using assms unfolding eventually_def |
|
79 |
by (rule is_filter.conj [OF is_filter_Rep_filter]) |
|
80 |
||
81 |
lemma eventually_mp: |
|
82 |
assumes "eventually (\<lambda>x. P x \<longrightarrow> Q x) F" |
|
83 |
assumes "eventually (\<lambda>x. P x) F" |
|
84 |
shows "eventually (\<lambda>x. Q x) F" |
|
85 |
proof (rule eventually_mono) |
|
86 |
show "\<forall>x. (P x \<longrightarrow> Q x) \<and> P x \<longrightarrow> Q x" by simp |
|
87 |
show "eventually (\<lambda>x. (P x \<longrightarrow> Q x) \<and> P x) F" |
|
88 |
using assms by (rule eventually_conj) |
|
89 |
qed |
|
90 |
||
91 |
lemma eventually_rev_mp: |
|
92 |
assumes "eventually (\<lambda>x. P x) F" |
|
93 |
assumes "eventually (\<lambda>x. P x \<longrightarrow> Q x) F" |
|
94 |
shows "eventually (\<lambda>x. Q x) F" |
|
95 |
using assms(2) assms(1) by (rule eventually_mp) |
|
96 |
||
97 |
lemma eventually_conj_iff: |
|
98 |
"eventually (\<lambda>x. P x \<and> Q x) F \<longleftrightarrow> eventually P F \<and> eventually Q F" |
|
99 |
by (auto intro: eventually_conj elim: eventually_rev_mp) |
|
100 |
||
101 |
lemma eventually_elim1: |
|
102 |
assumes "eventually (\<lambda>i. P i) F" |
|
103 |
assumes "\<And>i. P i \<Longrightarrow> Q i" |
|
104 |
shows "eventually (\<lambda>i. Q i) F" |
|
105 |
using assms by (auto elim!: eventually_rev_mp) |
|
106 |
||
107 |
lemma eventually_elim2: |
|
108 |
assumes "eventually (\<lambda>i. P i) F" |
|
109 |
assumes "eventually (\<lambda>i. Q i) F" |
|
110 |
assumes "\<And>i. P i \<Longrightarrow> Q i \<Longrightarrow> R i" |
|
111 |
shows "eventually (\<lambda>i. R i) F" |
|
112 |
using assms by (auto elim!: eventually_rev_mp) |
|
113 |
||
60040
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
114 |
lemma eventually_ball_finite_distrib: |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
115 |
"finite A \<Longrightarrow> (eventually (\<lambda>x. \<forall>y\<in>A. P x y) net) \<longleftrightarrow> (\<forall>y\<in>A. eventually (\<lambda>x. P x y) net)" |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
116 |
by (induction A rule: finite_induct) (auto simp: eventually_conj_iff) |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
117 |
|
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
118 |
lemma eventually_ball_finite: |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
119 |
"finite A \<Longrightarrow> \<forall>y\<in>A. eventually (\<lambda>x. P x y) net \<Longrightarrow> eventually (\<lambda>x. \<forall>y\<in>A. P x y) net" |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
120 |
by (auto simp: eventually_ball_finite_distrib) |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
121 |
|
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
122 |
lemma eventually_all_finite: |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
123 |
fixes P :: "'a \<Rightarrow> 'b::finite \<Rightarrow> bool" |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
124 |
assumes "\<And>y. eventually (\<lambda>x. P x y) net" |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
125 |
shows "eventually (\<lambda>x. \<forall>y. P x y) net" |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
126 |
using eventually_ball_finite [of UNIV P] assms by simp |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
127 |
|
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
128 |
lemma eventually_ex: "(\<forall>\<^sub>Fx in F. \<exists>y. P x y) \<longleftrightarrow> (\<exists>Y. \<forall>\<^sub>Fx in F. P x (Y x))" |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
129 |
proof |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
130 |
assume "\<forall>\<^sub>Fx in F. \<exists>y. P x y" |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
131 |
then have "\<forall>\<^sub>Fx in F. P x (SOME y. P x y)" |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
132 |
by (auto intro: someI_ex eventually_elim1) |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
133 |
then show "\<exists>Y. \<forall>\<^sub>Fx in F. P x (Y x)" |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
134 |
by auto |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
135 |
qed (auto intro: eventually_elim1) |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
136 |
|
60036 | 137 |
lemma not_eventually_impI: "eventually P F \<Longrightarrow> \<not> eventually Q F \<Longrightarrow> \<not> eventually (\<lambda>x. P x \<longrightarrow> Q x) F" |
138 |
by (auto intro: eventually_mp) |
|
139 |
||
140 |
lemma not_eventuallyD: "\<not> eventually P F \<Longrightarrow> \<exists>x. \<not> P x" |
|
141 |
by (metis always_eventually) |
|
142 |
||
143 |
lemma eventually_subst: |
|
144 |
assumes "eventually (\<lambda>n. P n = Q n) F" |
|
145 |
shows "eventually P F = eventually Q F" (is "?L = ?R") |
|
146 |
proof - |
|
147 |
from assms have "eventually (\<lambda>x. P x \<longrightarrow> Q x) F" |
|
148 |
and "eventually (\<lambda>x. Q x \<longrightarrow> P x) F" |
|
149 |
by (auto elim: eventually_elim1) |
|
150 |
then show ?thesis by (auto elim: eventually_elim2) |
|
151 |
qed |
|
152 |
||
60040
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
153 |
subsection \<open> Frequently as dual to eventually \<close> |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
154 |
|
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
155 |
definition frequently :: "('a \<Rightarrow> bool) \<Rightarrow> 'a filter \<Rightarrow> bool" |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
156 |
where "frequently P F \<longleftrightarrow> \<not> eventually (\<lambda>x. \<not> P x) F" |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
157 |
|
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
158 |
syntax (xsymbols) |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
159 |
"_frequently" :: "pttrn \<Rightarrow> 'a filter \<Rightarrow> bool \<Rightarrow> bool" ("(3\<exists>\<^sub>F _ in _./ _)" [0, 0, 10] 10) |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
160 |
|
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
161 |
translations |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
162 |
"\<exists>\<^sub>Fx in F. P" == "CONST frequently (\<lambda>x. P) F" |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
163 |
|
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
164 |
lemma not_frequently_False [simp]: "\<not> (\<exists>\<^sub>Fx in F. False)" |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
165 |
by (simp add: frequently_def) |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
166 |
|
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
167 |
lemma frequently_ex: "\<exists>\<^sub>Fx in F. P x \<Longrightarrow> \<exists>x. P x" |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
168 |
by (auto simp: frequently_def dest: not_eventuallyD) |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
169 |
|
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
170 |
lemma frequentlyE: assumes "frequently P F" obtains x where "P x" |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
171 |
using frequently_ex[OF assms] by auto |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
172 |
|
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
173 |
lemma frequently_mp: |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
174 |
assumes ev: "\<forall>\<^sub>Fx in F. P x \<longrightarrow> Q x" and P: "\<exists>\<^sub>Fx in F. P x" shows "\<exists>\<^sub>Fx in F. Q x" |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
175 |
proof - |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
176 |
from ev have "eventually (\<lambda>x. \<not> Q x \<longrightarrow> \<not> P x) F" |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
177 |
by (rule eventually_rev_mp) (auto intro!: always_eventually) |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
178 |
from eventually_mp[OF this] P show ?thesis |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
179 |
by (auto simp: frequently_def) |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
180 |
qed |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
181 |
|
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
182 |
lemma frequently_rev_mp: |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
183 |
assumes "\<exists>\<^sub>Fx in F. P x" |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
184 |
assumes "\<forall>\<^sub>Fx in F. P x \<longrightarrow> Q x" |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
185 |
shows "\<exists>\<^sub>Fx in F. Q x" |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
186 |
using assms(2) assms(1) by (rule frequently_mp) |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
187 |
|
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
188 |
lemma frequently_mono: "(\<forall>x. P x \<longrightarrow> Q x) \<Longrightarrow> frequently P F \<Longrightarrow> frequently Q F" |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
189 |
using frequently_mp[of P Q] by (simp add: always_eventually) |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
190 |
|
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
191 |
lemma frequently_elim1: "\<exists>\<^sub>Fx in F. P x \<Longrightarrow> (\<And>i. P i \<Longrightarrow> Q i) \<Longrightarrow> \<exists>\<^sub>Fx in F. Q x" |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
192 |
by (metis frequently_mono) |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
193 |
|
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
194 |
lemma frequently_disj_iff: "(\<exists>\<^sub>Fx in F. P x \<or> Q x) \<longleftrightarrow> (\<exists>\<^sub>Fx in F. P x) \<or> (\<exists>\<^sub>Fx in F. Q x)" |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
195 |
by (simp add: frequently_def eventually_conj_iff) |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
196 |
|
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
197 |
lemma frequently_disj: "\<exists>\<^sub>Fx in F. P x \<Longrightarrow> \<exists>\<^sub>Fx in F. Q x \<Longrightarrow> \<exists>\<^sub>Fx in F. P x \<or> Q x" |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
198 |
by (simp add: frequently_disj_iff) |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
199 |
|
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
200 |
lemma frequently_bex_finite_distrib: |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
201 |
assumes "finite A" shows "(\<exists>\<^sub>Fx in F. \<exists>y\<in>A. P x y) \<longleftrightarrow> (\<exists>y\<in>A. \<exists>\<^sub>Fx in F. P x y)" |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
202 |
using assms by induction (auto simp: frequently_disj_iff) |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
203 |
|
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
204 |
lemma frequently_bex_finite: "finite A \<Longrightarrow> \<exists>\<^sub>Fx in F. \<exists>y\<in>A. P x y \<Longrightarrow> \<exists>y\<in>A. \<exists>\<^sub>Fx in F. P x y" |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
205 |
by (simp add: frequently_bex_finite_distrib) |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
206 |
|
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
207 |
lemma frequently_all: "(\<exists>\<^sub>Fx in F. \<forall>y. P x y) \<longleftrightarrow> (\<forall>Y. \<exists>\<^sub>Fx in F. P x (Y x))" |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
208 |
using eventually_ex[of "\<lambda>x y. \<not> P x y" F] by (simp add: frequently_def) |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
209 |
|
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
210 |
lemma |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
211 |
shows not_eventually: "\<not> eventually P F \<longleftrightarrow> (\<exists>\<^sub>Fx in F. \<not> P x)" |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
212 |
and not_frequently: "\<not> frequently P F \<longleftrightarrow> (\<forall>\<^sub>Fx in F. \<not> P x)" |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
213 |
by (auto simp: frequently_def) |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
214 |
|
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
215 |
lemma frequently_imp_iff: |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
216 |
"(\<exists>\<^sub>Fx in F. P x \<longrightarrow> Q x) \<longleftrightarrow> (eventually P F \<longrightarrow> frequently Q F)" |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
217 |
unfolding imp_conv_disj frequently_disj_iff not_eventually[symmetric] .. |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
218 |
|
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
219 |
lemma eventually_frequently_const_simps: |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
220 |
"(\<exists>\<^sub>Fx in F. P x \<and> C) \<longleftrightarrow> (\<exists>\<^sub>Fx in F. P x) \<and> C" |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
221 |
"(\<exists>\<^sub>Fx in F. C \<and> P x) \<longleftrightarrow> C \<and> (\<exists>\<^sub>Fx in F. P x)" |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
222 |
"(\<forall>\<^sub>Fx in F. P x \<or> C) \<longleftrightarrow> (\<forall>\<^sub>Fx in F. P x) \<or> C" |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
223 |
"(\<forall>\<^sub>Fx in F. C \<or> P x) \<longleftrightarrow> C \<or> (\<forall>\<^sub>Fx in F. P x)" |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
224 |
"(\<forall>\<^sub>Fx in F. P x \<longrightarrow> C) \<longleftrightarrow> ((\<exists>\<^sub>Fx in F. P x) \<longrightarrow> C)" |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
225 |
"(\<forall>\<^sub>Fx in F. C \<longrightarrow> P x) \<longleftrightarrow> (C \<longrightarrow> (\<forall>\<^sub>Fx in F. P x))" |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
226 |
by (cases C; simp add: not_frequently)+ |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
227 |
|
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
228 |
lemmas eventually_frequently_simps = |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
229 |
eventually_frequently_const_simps |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
230 |
not_eventually |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
231 |
eventually_conj_iff |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
232 |
eventually_ball_finite_distrib |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
233 |
eventually_ex |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
234 |
not_frequently |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
235 |
frequently_disj_iff |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
236 |
frequently_bex_finite_distrib |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
237 |
frequently_all |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
238 |
frequently_imp_iff |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
239 |
|
60758 | 240 |
ML \<open> |
60036 | 241 |
fun eventually_elim_tac ctxt facts = SUBGOAL_CASES (fn (goal, i) => |
242 |
let |
|
243 |
val mp_thms = facts RL @{thms eventually_rev_mp} |
|
244 |
val raw_elim_thm = |
|
245 |
(@{thm allI} RS @{thm always_eventually}) |
|
246 |
|> fold (fn thm1 => fn thm2 => thm2 RS thm1) mp_thms |
|
247 |
|> fold (fn _ => fn thm => @{thm impI} RS thm) facts |
|
60589 | 248 |
val cases_prop = |
249 |
Thm.prop_of |
|
250 |
(Rule_Cases.internalize_params (raw_elim_thm RS Goal.init (Thm.cterm_of ctxt goal))) |
|
60036 | 251 |
val cases = Rule_Cases.make_common ctxt cases_prop [(("elim", []), [])] |
252 |
in |
|
60752 | 253 |
CASES cases (resolve_tac ctxt [raw_elim_thm] i) |
60036 | 254 |
end) |
60758 | 255 |
\<close> |
60036 | 256 |
|
60758 | 257 |
method_setup eventually_elim = \<open> |
60036 | 258 |
Scan.succeed (fn ctxt => METHOD_CASES (HEADGOAL o eventually_elim_tac ctxt)) |
60758 | 259 |
\<close> "elimination of eventually quantifiers" |
60036 | 260 |
|
60758 | 261 |
subsubsection \<open>Finer-than relation\<close> |
60036 | 262 |
|
60758 | 263 |
text \<open>@{term "F \<le> F'"} means that filter @{term F} is finer than |
264 |
filter @{term F'}.\<close> |
|
60036 | 265 |
|
266 |
instantiation filter :: (type) complete_lattice |
|
267 |
begin |
|
268 |
||
269 |
definition le_filter_def: |
|
270 |
"F \<le> F' \<longleftrightarrow> (\<forall>P. eventually P F' \<longrightarrow> eventually P F)" |
|
271 |
||
272 |
definition |
|
273 |
"(F :: 'a filter) < F' \<longleftrightarrow> F \<le> F' \<and> \<not> F' \<le> F" |
|
274 |
||
275 |
definition |
|
276 |
"top = Abs_filter (\<lambda>P. \<forall>x. P x)" |
|
277 |
||
278 |
definition |
|
279 |
"bot = Abs_filter (\<lambda>P. True)" |
|
280 |
||
281 |
definition |
|
282 |
"sup F F' = Abs_filter (\<lambda>P. eventually P F \<and> eventually P F')" |
|
283 |
||
284 |
definition |
|
285 |
"inf F F' = Abs_filter |
|
286 |
(\<lambda>P. \<exists>Q R. eventually Q F \<and> eventually R F' \<and> (\<forall>x. Q x \<and> R x \<longrightarrow> P x))" |
|
287 |
||
288 |
definition |
|
289 |
"Sup S = Abs_filter (\<lambda>P. \<forall>F\<in>S. eventually P F)" |
|
290 |
||
291 |
definition |
|
292 |
"Inf S = Sup {F::'a filter. \<forall>F'\<in>S. F \<le> F'}" |
|
293 |
||
294 |
lemma eventually_top [simp]: "eventually P top \<longleftrightarrow> (\<forall>x. P x)" |
|
295 |
unfolding top_filter_def |
|
296 |
by (rule eventually_Abs_filter, rule is_filter.intro, auto) |
|
297 |
||
298 |
lemma eventually_bot [simp]: "eventually P bot" |
|
299 |
unfolding bot_filter_def |
|
300 |
by (subst eventually_Abs_filter, rule is_filter.intro, auto) |
|
301 |
||
302 |
lemma eventually_sup: |
|
303 |
"eventually P (sup F F') \<longleftrightarrow> eventually P F \<and> eventually P F'" |
|
304 |
unfolding sup_filter_def |
|
305 |
by (rule eventually_Abs_filter, rule is_filter.intro) |
|
306 |
(auto elim!: eventually_rev_mp) |
|
307 |
||
308 |
lemma eventually_inf: |
|
309 |
"eventually P (inf F F') \<longleftrightarrow> |
|
310 |
(\<exists>Q R. eventually Q F \<and> eventually R F' \<and> (\<forall>x. Q x \<and> R x \<longrightarrow> P x))" |
|
311 |
unfolding inf_filter_def |
|
312 |
apply (rule eventually_Abs_filter, rule is_filter.intro) |
|
313 |
apply (fast intro: eventually_True) |
|
314 |
apply clarify |
|
315 |
apply (intro exI conjI) |
|
316 |
apply (erule (1) eventually_conj) |
|
317 |
apply (erule (1) eventually_conj) |
|
318 |
apply simp |
|
319 |
apply auto |
|
320 |
done |
|
321 |
||
322 |
lemma eventually_Sup: |
|
323 |
"eventually P (Sup S) \<longleftrightarrow> (\<forall>F\<in>S. eventually P F)" |
|
324 |
unfolding Sup_filter_def |
|
325 |
apply (rule eventually_Abs_filter, rule is_filter.intro) |
|
326 |
apply (auto intro: eventually_conj elim!: eventually_rev_mp) |
|
327 |
done |
|
328 |
||
329 |
instance proof |
|
330 |
fix F F' F'' :: "'a filter" and S :: "'a filter set" |
|
331 |
{ show "F < F' \<longleftrightarrow> F \<le> F' \<and> \<not> F' \<le> F" |
|
332 |
by (rule less_filter_def) } |
|
333 |
{ show "F \<le> F" |
|
334 |
unfolding le_filter_def by simp } |
|
335 |
{ assume "F \<le> F'" and "F' \<le> F''" thus "F \<le> F''" |
|
336 |
unfolding le_filter_def by simp } |
|
337 |
{ assume "F \<le> F'" and "F' \<le> F" thus "F = F'" |
|
338 |
unfolding le_filter_def filter_eq_iff by fast } |
|
339 |
{ show "inf F F' \<le> F" and "inf F F' \<le> F'" |
|
340 |
unfolding le_filter_def eventually_inf by (auto intro: eventually_True) } |
|
341 |
{ assume "F \<le> F'" and "F \<le> F''" thus "F \<le> inf F' F''" |
|
342 |
unfolding le_filter_def eventually_inf |
|
343 |
by (auto elim!: eventually_mono intro: eventually_conj) } |
|
344 |
{ show "F \<le> sup F F'" and "F' \<le> sup F F'" |
|
345 |
unfolding le_filter_def eventually_sup by simp_all } |
|
346 |
{ assume "F \<le> F''" and "F' \<le> F''" thus "sup F F' \<le> F''" |
|
347 |
unfolding le_filter_def eventually_sup by simp } |
|
348 |
{ assume "F'' \<in> S" thus "Inf S \<le> F''" |
|
349 |
unfolding le_filter_def Inf_filter_def eventually_Sup Ball_def by simp } |
|
350 |
{ assume "\<And>F'. F' \<in> S \<Longrightarrow> F \<le> F'" thus "F \<le> Inf S" |
|
351 |
unfolding le_filter_def Inf_filter_def eventually_Sup Ball_def by simp } |
|
352 |
{ assume "F \<in> S" thus "F \<le> Sup S" |
|
353 |
unfolding le_filter_def eventually_Sup by simp } |
|
354 |
{ assume "\<And>F. F \<in> S \<Longrightarrow> F \<le> F'" thus "Sup S \<le> F'" |
|
355 |
unfolding le_filter_def eventually_Sup by simp } |
|
356 |
{ show "Inf {} = (top::'a filter)" |
|
357 |
by (auto simp: top_filter_def Inf_filter_def Sup_filter_def) |
|
358 |
(metis (full_types) top_filter_def always_eventually eventually_top) } |
|
359 |
{ show "Sup {} = (bot::'a filter)" |
|
360 |
by (auto simp: bot_filter_def Sup_filter_def) } |
|
361 |
qed |
|
362 |
||
363 |
end |
|
364 |
||
365 |
lemma filter_leD: |
|
366 |
"F \<le> F' \<Longrightarrow> eventually P F' \<Longrightarrow> eventually P F" |
|
367 |
unfolding le_filter_def by simp |
|
368 |
||
369 |
lemma filter_leI: |
|
370 |
"(\<And>P. eventually P F' \<Longrightarrow> eventually P F) \<Longrightarrow> F \<le> F'" |
|
371 |
unfolding le_filter_def by simp |
|
372 |
||
373 |
lemma eventually_False: |
|
374 |
"eventually (\<lambda>x. False) F \<longleftrightarrow> F = bot" |
|
375 |
unfolding filter_eq_iff by (auto elim: eventually_rev_mp) |
|
376 |
||
60040
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
377 |
lemma eventually_frequently: "F \<noteq> bot \<Longrightarrow> eventually P F \<Longrightarrow> frequently P F" |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
378 |
using eventually_conj[of P F "\<lambda>x. \<not> P x"] |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
379 |
by (auto simp add: frequently_def eventually_False) |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
380 |
|
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
381 |
lemma eventually_const_iff: "eventually (\<lambda>x. P) F \<longleftrightarrow> P \<or> F = bot" |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
382 |
by (cases P) (auto simp: eventually_False) |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
383 |
|
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
384 |
lemma eventually_const[simp]: "F \<noteq> bot \<Longrightarrow> eventually (\<lambda>x. P) F \<longleftrightarrow> P" |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
385 |
by (simp add: eventually_const_iff) |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
386 |
|
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
387 |
lemma frequently_const_iff: "frequently (\<lambda>x. P) F \<longleftrightarrow> P \<and> F \<noteq> bot" |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
388 |
by (simp add: frequently_def eventually_const_iff) |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
389 |
|
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
390 |
lemma frequently_const[simp]: "F \<noteq> bot \<Longrightarrow> frequently (\<lambda>x. P) F \<longleftrightarrow> P" |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
391 |
by (simp add: frequently_const_iff) |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
392 |
|
60036 | 393 |
abbreviation (input) trivial_limit :: "'a filter \<Rightarrow> bool" |
394 |
where "trivial_limit F \<equiv> F = bot" |
|
395 |
||
396 |
lemma trivial_limit_def: "trivial_limit F \<longleftrightarrow> eventually (\<lambda>x. False) F" |
|
397 |
by (rule eventually_False [symmetric]) |
|
398 |
||
399 |
lemma eventually_Inf: "eventually P (Inf B) \<longleftrightarrow> (\<exists>X\<subseteq>B. finite X \<and> eventually P (Inf X))" |
|
400 |
proof - |
|
401 |
let ?F = "\<lambda>P. \<exists>X\<subseteq>B. finite X \<and> eventually P (Inf X)" |
|
402 |
||
403 |
{ fix P have "eventually P (Abs_filter ?F) \<longleftrightarrow> ?F P" |
|
404 |
proof (rule eventually_Abs_filter is_filter.intro)+ |
|
405 |
show "?F (\<lambda>x. True)" |
|
406 |
by (rule exI[of _ "{}"]) (simp add: le_fun_def) |
|
407 |
next |
|
408 |
fix P Q |
|
409 |
assume "?F P" then guess X .. |
|
410 |
moreover |
|
411 |
assume "?F Q" then guess Y .. |
|
412 |
ultimately show "?F (\<lambda>x. P x \<and> Q x)" |
|
413 |
by (intro exI[of _ "X \<union> Y"]) |
|
414 |
(auto simp: Inf_union_distrib eventually_inf) |
|
415 |
next |
|
416 |
fix P Q |
|
417 |
assume "?F P" then guess X .. |
|
418 |
moreover assume "\<forall>x. P x \<longrightarrow> Q x" |
|
419 |
ultimately show "?F Q" |
|
420 |
by (intro exI[of _ X]) (auto elim: eventually_elim1) |
|
421 |
qed } |
|
422 |
note eventually_F = this |
|
423 |
||
424 |
have "Inf B = Abs_filter ?F" |
|
425 |
proof (intro antisym Inf_greatest) |
|
426 |
show "Inf B \<le> Abs_filter ?F" |
|
427 |
by (auto simp: le_filter_def eventually_F dest: Inf_superset_mono) |
|
428 |
next |
|
429 |
fix F assume "F \<in> B" then show "Abs_filter ?F \<le> F" |
|
430 |
by (auto simp add: le_filter_def eventually_F intro!: exI[of _ "{F}"]) |
|
431 |
qed |
|
432 |
then show ?thesis |
|
433 |
by (simp add: eventually_F) |
|
434 |
qed |
|
435 |
||
436 |
lemma eventually_INF: "eventually P (INF b:B. F b) \<longleftrightarrow> (\<exists>X\<subseteq>B. finite X \<and> eventually P (INF b:X. F b))" |
|
437 |
unfolding INF_def[of B] eventually_Inf[of P "F`B"] |
|
438 |
by (metis Inf_image_eq finite_imageI image_mono finite_subset_image) |
|
439 |
||
440 |
lemma Inf_filter_not_bot: |
|
441 |
fixes B :: "'a filter set" |
|
442 |
shows "(\<And>X. X \<subseteq> B \<Longrightarrow> finite X \<Longrightarrow> Inf X \<noteq> bot) \<Longrightarrow> Inf B \<noteq> bot" |
|
443 |
unfolding trivial_limit_def eventually_Inf[of _ B] |
|
444 |
bot_bool_def [symmetric] bot_fun_def [symmetric] bot_unique by simp |
|
445 |
||
446 |
lemma INF_filter_not_bot: |
|
447 |
fixes F :: "'i \<Rightarrow> 'a filter" |
|
448 |
shows "(\<And>X. X \<subseteq> B \<Longrightarrow> finite X \<Longrightarrow> (INF b:X. F b) \<noteq> bot) \<Longrightarrow> (INF b:B. F b) \<noteq> bot" |
|
449 |
unfolding trivial_limit_def eventually_INF[of _ B] |
|
450 |
bot_bool_def [symmetric] bot_fun_def [symmetric] bot_unique by simp |
|
451 |
||
452 |
lemma eventually_Inf_base: |
|
453 |
assumes "B \<noteq> {}" and base: "\<And>F G. F \<in> B \<Longrightarrow> G \<in> B \<Longrightarrow> \<exists>x\<in>B. x \<le> inf F G" |
|
454 |
shows "eventually P (Inf B) \<longleftrightarrow> (\<exists>b\<in>B. eventually P b)" |
|
455 |
proof (subst eventually_Inf, safe) |
|
456 |
fix X assume "finite X" "X \<subseteq> B" |
|
457 |
then have "\<exists>b\<in>B. \<forall>x\<in>X. b \<le> x" |
|
458 |
proof induct |
|
459 |
case empty then show ?case |
|
60758 | 460 |
using \<open>B \<noteq> {}\<close> by auto |
60036 | 461 |
next |
462 |
case (insert x X) |
|
463 |
then obtain b where "b \<in> B" "\<And>x. x \<in> X \<Longrightarrow> b \<le> x" |
|
464 |
by auto |
|
60758 | 465 |
with \<open>insert x X \<subseteq> B\<close> base[of b x] show ?case |
60036 | 466 |
by (auto intro: order_trans) |
467 |
qed |
|
468 |
then obtain b where "b \<in> B" "b \<le> Inf X" |
|
469 |
by (auto simp: le_Inf_iff) |
|
470 |
then show "eventually P (Inf X) \<Longrightarrow> Bex B (eventually P)" |
|
471 |
by (intro bexI[of _ b]) (auto simp: le_filter_def) |
|
472 |
qed (auto intro!: exI[of _ "{x}" for x]) |
|
473 |
||
474 |
lemma eventually_INF_base: |
|
475 |
"B \<noteq> {} \<Longrightarrow> (\<And>a b. a \<in> B \<Longrightarrow> b \<in> B \<Longrightarrow> \<exists>x\<in>B. F x \<le> inf (F a) (F b)) \<Longrightarrow> |
|
476 |
eventually P (INF b:B. F b) \<longleftrightarrow> (\<exists>b\<in>B. eventually P (F b))" |
|
477 |
unfolding INF_def by (subst eventually_Inf_base) auto |
|
478 |
||
479 |
||
60758 | 480 |
subsubsection \<open>Map function for filters\<close> |
60036 | 481 |
|
482 |
definition filtermap :: "('a \<Rightarrow> 'b) \<Rightarrow> 'a filter \<Rightarrow> 'b filter" |
|
483 |
where "filtermap f F = Abs_filter (\<lambda>P. eventually (\<lambda>x. P (f x)) F)" |
|
484 |
||
485 |
lemma eventually_filtermap: |
|
486 |
"eventually P (filtermap f F) = eventually (\<lambda>x. P (f x)) F" |
|
487 |
unfolding filtermap_def |
|
488 |
apply (rule eventually_Abs_filter) |
|
489 |
apply (rule is_filter.intro) |
|
490 |
apply (auto elim!: eventually_rev_mp) |
|
491 |
done |
|
492 |
||
493 |
lemma filtermap_ident: "filtermap (\<lambda>x. x) F = F" |
|
494 |
by (simp add: filter_eq_iff eventually_filtermap) |
|
495 |
||
496 |
lemma filtermap_filtermap: |
|
497 |
"filtermap f (filtermap g F) = filtermap (\<lambda>x. f (g x)) F" |
|
498 |
by (simp add: filter_eq_iff eventually_filtermap) |
|
499 |
||
500 |
lemma filtermap_mono: "F \<le> F' \<Longrightarrow> filtermap f F \<le> filtermap f F'" |
|
501 |
unfolding le_filter_def eventually_filtermap by simp |
|
502 |
||
503 |
lemma filtermap_bot [simp]: "filtermap f bot = bot" |
|
504 |
by (simp add: filter_eq_iff eventually_filtermap) |
|
505 |
||
506 |
lemma filtermap_sup: "filtermap f (sup F1 F2) = sup (filtermap f F1) (filtermap f F2)" |
|
507 |
by (auto simp: filter_eq_iff eventually_filtermap eventually_sup) |
|
508 |
||
509 |
lemma filtermap_inf: "filtermap f (inf F1 F2) \<le> inf (filtermap f F1) (filtermap f F2)" |
|
510 |
by (auto simp: le_filter_def eventually_filtermap eventually_inf) |
|
511 |
||
512 |
lemma filtermap_INF: "filtermap f (INF b:B. F b) \<le> (INF b:B. filtermap f (F b))" |
|
513 |
proof - |
|
514 |
{ fix X :: "'c set" assume "finite X" |
|
515 |
then have "filtermap f (INFIMUM X F) \<le> (INF b:X. filtermap f (F b))" |
|
516 |
proof induct |
|
517 |
case (insert x X) |
|
518 |
have "filtermap f (INF a:insert x X. F a) \<le> inf (filtermap f (F x)) (filtermap f (INF a:X. F a))" |
|
519 |
by (rule order_trans[OF _ filtermap_inf]) simp |
|
520 |
also have "\<dots> \<le> inf (filtermap f (F x)) (INF a:X. filtermap f (F a))" |
|
521 |
by (intro inf_mono insert order_refl) |
|
522 |
finally show ?case |
|
523 |
by simp |
|
524 |
qed simp } |
|
525 |
then show ?thesis |
|
526 |
unfolding le_filter_def eventually_filtermap |
|
527 |
by (subst (1 2) eventually_INF) auto |
|
528 |
qed |
|
60758 | 529 |
subsubsection \<open>Standard filters\<close> |
60036 | 530 |
|
531 |
definition principal :: "'a set \<Rightarrow> 'a filter" where |
|
532 |
"principal S = Abs_filter (\<lambda>P. \<forall>x\<in>S. P x)" |
|
533 |
||
534 |
lemma eventually_principal: "eventually P (principal S) \<longleftrightarrow> (\<forall>x\<in>S. P x)" |
|
535 |
unfolding principal_def |
|
536 |
by (rule eventually_Abs_filter, rule is_filter.intro) auto |
|
537 |
||
538 |
lemma eventually_inf_principal: "eventually P (inf F (principal s)) \<longleftrightarrow> eventually (\<lambda>x. x \<in> s \<longrightarrow> P x) F" |
|
539 |
unfolding eventually_inf eventually_principal by (auto elim: eventually_elim1) |
|
540 |
||
541 |
lemma principal_UNIV[simp]: "principal UNIV = top" |
|
542 |
by (auto simp: filter_eq_iff eventually_principal) |
|
543 |
||
544 |
lemma principal_empty[simp]: "principal {} = bot" |
|
545 |
by (auto simp: filter_eq_iff eventually_principal) |
|
546 |
||
547 |
lemma principal_eq_bot_iff: "principal X = bot \<longleftrightarrow> X = {}" |
|
548 |
by (auto simp add: filter_eq_iff eventually_principal) |
|
549 |
||
550 |
lemma principal_le_iff[iff]: "principal A \<le> principal B \<longleftrightarrow> A \<subseteq> B" |
|
551 |
by (auto simp: le_filter_def eventually_principal) |
|
552 |
||
553 |
lemma le_principal: "F \<le> principal A \<longleftrightarrow> eventually (\<lambda>x. x \<in> A) F" |
|
554 |
unfolding le_filter_def eventually_principal |
|
555 |
apply safe |
|
556 |
apply (erule_tac x="\<lambda>x. x \<in> A" in allE) |
|
557 |
apply (auto elim: eventually_elim1) |
|
558 |
done |
|
559 |
||
560 |
lemma principal_inject[iff]: "principal A = principal B \<longleftrightarrow> A = B" |
|
561 |
unfolding eq_iff by simp |
|
562 |
||
563 |
lemma sup_principal[simp]: "sup (principal A) (principal B) = principal (A \<union> B)" |
|
564 |
unfolding filter_eq_iff eventually_sup eventually_principal by auto |
|
565 |
||
566 |
lemma inf_principal[simp]: "inf (principal A) (principal B) = principal (A \<inter> B)" |
|
567 |
unfolding filter_eq_iff eventually_inf eventually_principal |
|
568 |
by (auto intro: exI[of _ "\<lambda>x. x \<in> A"] exI[of _ "\<lambda>x. x \<in> B"]) |
|
569 |
||
570 |
lemma SUP_principal[simp]: "(SUP i : I. principal (A i)) = principal (\<Union>i\<in>I. A i)" |
|
571 |
unfolding filter_eq_iff eventually_Sup SUP_def by (auto simp: eventually_principal) |
|
572 |
||
573 |
lemma INF_principal_finite: "finite X \<Longrightarrow> (INF x:X. principal (f x)) = principal (\<Inter>x\<in>X. f x)" |
|
574 |
by (induct X rule: finite_induct) auto |
|
575 |
||
576 |
lemma filtermap_principal[simp]: "filtermap f (principal A) = principal (f ` A)" |
|
577 |
unfolding filter_eq_iff eventually_filtermap eventually_principal by simp |
|
578 |
||
60758 | 579 |
subsubsection \<open>Order filters\<close> |
60036 | 580 |
|
581 |
definition at_top :: "('a::order) filter" |
|
582 |
where "at_top = (INF k. principal {k ..})" |
|
583 |
||
584 |
lemma at_top_sub: "at_top = (INF k:{c::'a::linorder..}. principal {k ..})" |
|
585 |
by (auto intro!: INF_eq max.cobounded1 max.cobounded2 simp: at_top_def) |
|
586 |
||
587 |
lemma eventually_at_top_linorder: "eventually P at_top \<longleftrightarrow> (\<exists>N::'a::linorder. \<forall>n\<ge>N. P n)" |
|
588 |
unfolding at_top_def |
|
589 |
by (subst eventually_INF_base) (auto simp: eventually_principal intro: max.cobounded1 max.cobounded2) |
|
590 |
||
591 |
lemma eventually_ge_at_top: |
|
592 |
"eventually (\<lambda>x. (c::_::linorder) \<le> x) at_top" |
|
593 |
unfolding eventually_at_top_linorder by auto |
|
594 |
||
595 |
lemma eventually_at_top_dense: "eventually P at_top \<longleftrightarrow> (\<exists>N::'a::{no_top, linorder}. \<forall>n>N. P n)" |
|
596 |
proof - |
|
597 |
have "eventually P (INF k. principal {k <..}) \<longleftrightarrow> (\<exists>N::'a. \<forall>n>N. P n)" |
|
598 |
by (subst eventually_INF_base) (auto simp: eventually_principal intro: max.cobounded1 max.cobounded2) |
|
599 |
also have "(INF k. principal {k::'a <..}) = at_top" |
|
600 |
unfolding at_top_def |
|
601 |
by (intro INF_eq) (auto intro: less_imp_le simp: Ici_subset_Ioi_iff gt_ex) |
|
602 |
finally show ?thesis . |
|
603 |
qed |
|
604 |
||
60721
c1b7793c23a3
generalized filtermap_homeomorph to filtermap_fun_inverse; add eventually_at_top/bot_not_equal
hoelzl
parents:
60589
diff
changeset
|
605 |
lemma eventually_at_top_not_equal: "eventually (\<lambda>x::'a::{no_top, linorder}. x \<noteq> c) at_top" |
c1b7793c23a3
generalized filtermap_homeomorph to filtermap_fun_inverse; add eventually_at_top/bot_not_equal
hoelzl
parents:
60589
diff
changeset
|
606 |
unfolding eventually_at_top_dense by auto |
c1b7793c23a3
generalized filtermap_homeomorph to filtermap_fun_inverse; add eventually_at_top/bot_not_equal
hoelzl
parents:
60589
diff
changeset
|
607 |
|
c1b7793c23a3
generalized filtermap_homeomorph to filtermap_fun_inverse; add eventually_at_top/bot_not_equal
hoelzl
parents:
60589
diff
changeset
|
608 |
lemma eventually_gt_at_top: "eventually (\<lambda>x. (c::_::{no_top, linorder}) < x) at_top" |
60036 | 609 |
unfolding eventually_at_top_dense by auto |
610 |
||
611 |
definition at_bot :: "('a::order) filter" |
|
612 |
where "at_bot = (INF k. principal {.. k})" |
|
613 |
||
614 |
lemma at_bot_sub: "at_bot = (INF k:{.. c::'a::linorder}. principal {.. k})" |
|
615 |
by (auto intro!: INF_eq min.cobounded1 min.cobounded2 simp: at_bot_def) |
|
616 |
||
617 |
lemma eventually_at_bot_linorder: |
|
618 |
fixes P :: "'a::linorder \<Rightarrow> bool" shows "eventually P at_bot \<longleftrightarrow> (\<exists>N. \<forall>n\<le>N. P n)" |
|
619 |
unfolding at_bot_def |
|
620 |
by (subst eventually_INF_base) (auto simp: eventually_principal intro: min.cobounded1 min.cobounded2) |
|
621 |
||
622 |
lemma eventually_le_at_bot: |
|
623 |
"eventually (\<lambda>x. x \<le> (c::_::linorder)) at_bot" |
|
624 |
unfolding eventually_at_bot_linorder by auto |
|
625 |
||
626 |
lemma eventually_at_bot_dense: "eventually P at_bot \<longleftrightarrow> (\<exists>N::'a::{no_bot, linorder}. \<forall>n<N. P n)" |
|
627 |
proof - |
|
628 |
have "eventually P (INF k. principal {..< k}) \<longleftrightarrow> (\<exists>N::'a. \<forall>n<N. P n)" |
|
629 |
by (subst eventually_INF_base) (auto simp: eventually_principal intro: min.cobounded1 min.cobounded2) |
|
630 |
also have "(INF k. principal {..< k::'a}) = at_bot" |
|
631 |
unfolding at_bot_def |
|
632 |
by (intro INF_eq) (auto intro: less_imp_le simp: Iic_subset_Iio_iff lt_ex) |
|
633 |
finally show ?thesis . |
|
634 |
qed |
|
635 |
||
60721
c1b7793c23a3
generalized filtermap_homeomorph to filtermap_fun_inverse; add eventually_at_top/bot_not_equal
hoelzl
parents:
60589
diff
changeset
|
636 |
lemma eventually_at_bot_not_equal: "eventually (\<lambda>x::'a::{no_bot, linorder}. x \<noteq> c) at_bot" |
c1b7793c23a3
generalized filtermap_homeomorph to filtermap_fun_inverse; add eventually_at_top/bot_not_equal
hoelzl
parents:
60589
diff
changeset
|
637 |
unfolding eventually_at_bot_dense by auto |
c1b7793c23a3
generalized filtermap_homeomorph to filtermap_fun_inverse; add eventually_at_top/bot_not_equal
hoelzl
parents:
60589
diff
changeset
|
638 |
|
60036 | 639 |
lemma eventually_gt_at_bot: |
640 |
"eventually (\<lambda>x. x < (c::_::unbounded_dense_linorder)) at_bot" |
|
641 |
unfolding eventually_at_bot_dense by auto |
|
642 |
||
643 |
lemma trivial_limit_at_bot_linorder: "\<not> trivial_limit (at_bot ::('a::linorder) filter)" |
|
644 |
unfolding trivial_limit_def |
|
645 |
by (metis eventually_at_bot_linorder order_refl) |
|
646 |
||
647 |
lemma trivial_limit_at_top_linorder: "\<not> trivial_limit (at_top ::('a::linorder) filter)" |
|
648 |
unfolding trivial_limit_def |
|
649 |
by (metis eventually_at_top_linorder order_refl) |
|
650 |
||
60758 | 651 |
subsection \<open>Sequentially\<close> |
60036 | 652 |
|
653 |
abbreviation sequentially :: "nat filter" |
|
654 |
where "sequentially \<equiv> at_top" |
|
655 |
||
656 |
lemma eventually_sequentially: |
|
657 |
"eventually P sequentially \<longleftrightarrow> (\<exists>N. \<forall>n\<ge>N. P n)" |
|
658 |
by (rule eventually_at_top_linorder) |
|
659 |
||
660 |
lemma sequentially_bot [simp, intro]: "sequentially \<noteq> bot" |
|
661 |
unfolding filter_eq_iff eventually_sequentially by auto |
|
662 |
||
663 |
lemmas trivial_limit_sequentially = sequentially_bot |
|
664 |
||
665 |
lemma eventually_False_sequentially [simp]: |
|
666 |
"\<not> eventually (\<lambda>n. False) sequentially" |
|
667 |
by (simp add: eventually_False) |
|
668 |
||
669 |
lemma le_sequentially: |
|
670 |
"F \<le> sequentially \<longleftrightarrow> (\<forall>N. eventually (\<lambda>n. N \<le> n) F)" |
|
671 |
by (simp add: at_top_def le_INF_iff le_principal) |
|
672 |
||
60974
6a6f15d8fbc4
New material and fixes related to the forthcoming Stone-Weierstrass development
paulson <lp15@cam.ac.uk>
parents:
60758
diff
changeset
|
673 |
lemma eventually_sequentiallyI [intro?]: |
60036 | 674 |
assumes "\<And>x. c \<le> x \<Longrightarrow> P x" |
675 |
shows "eventually P sequentially" |
|
676 |
using assms by (auto simp: eventually_sequentially) |
|
677 |
||
60040
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
678 |
lemma eventually_sequentially_Suc: "eventually (\<lambda>i. P (Suc i)) sequentially \<longleftrightarrow> eventually P sequentially" |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
679 |
unfolding eventually_sequentially by (metis Suc_le_D Suc_le_mono le_Suc_eq) |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
680 |
|
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
681 |
lemma eventually_sequentially_seg: "eventually (\<lambda>n. P (n + k)) sequentially \<longleftrightarrow> eventually P sequentially" |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
682 |
using eventually_sequentially_Suc[of "\<lambda>n. P (n + k)" for k] by (induction k) auto |
60036 | 683 |
|
60039 | 684 |
subsection \<open> The cofinite filter \<close> |
685 |
||
686 |
definition "cofinite = Abs_filter (\<lambda>P. finite {x. \<not> P x})" |
|
687 |
||
60040
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
688 |
abbreviation Inf_many :: "('a \<Rightarrow> bool) \<Rightarrow> bool" (binder "INFM " 10) where |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
689 |
"Inf_many P \<equiv> frequently P cofinite" |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
690 |
|
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
691 |
abbreviation Alm_all :: "('a \<Rightarrow> bool) \<Rightarrow> bool" (binder "MOST " 10) where |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
692 |
"Alm_all P \<equiv> eventually P cofinite" |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
693 |
|
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
694 |
notation (xsymbols) |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
695 |
Inf_many (binder "\<exists>\<^sub>\<infinity>" 10) and |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
696 |
Alm_all (binder "\<forall>\<^sub>\<infinity>" 10) |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
697 |
|
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
698 |
notation (HTML output) |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
699 |
Inf_many (binder "\<exists>\<^sub>\<infinity>" 10) and |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
700 |
Alm_all (binder "\<forall>\<^sub>\<infinity>" 10) |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
701 |
|
60039 | 702 |
lemma eventually_cofinite: "eventually P cofinite \<longleftrightarrow> finite {x. \<not> P x}" |
703 |
unfolding cofinite_def |
|
704 |
proof (rule eventually_Abs_filter, rule is_filter.intro) |
|
705 |
fix P Q :: "'a \<Rightarrow> bool" assume "finite {x. \<not> P x}" "finite {x. \<not> Q x}" |
|
706 |
from finite_UnI[OF this] show "finite {x. \<not> (P x \<and> Q x)}" |
|
707 |
by (rule rev_finite_subset) auto |
|
708 |
next |
|
709 |
fix P Q :: "'a \<Rightarrow> bool" assume P: "finite {x. \<not> P x}" and *: "\<forall>x. P x \<longrightarrow> Q x" |
|
710 |
from * show "finite {x. \<not> Q x}" |
|
711 |
by (intro finite_subset[OF _ P]) auto |
|
712 |
qed simp |
|
713 |
||
60040
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
714 |
lemma frequently_cofinite: "frequently P cofinite \<longleftrightarrow> \<not> finite {x. P x}" |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
715 |
by (simp add: frequently_def eventually_cofinite) |
1fa1023b13b9
move MOST and INFM in Infinite_Set to Filter; change them to abbreviations over the cofinite filter
hoelzl
parents:
60039
diff
changeset
|
716 |
|
60039 | 717 |
lemma cofinite_bot[simp]: "cofinite = (bot::'a filter) \<longleftrightarrow> finite (UNIV :: 'a set)" |
718 |
unfolding trivial_limit_def eventually_cofinite by simp |
|
719 |
||
720 |
lemma cofinite_eq_sequentially: "cofinite = sequentially" |
|
721 |
unfolding filter_eq_iff eventually_sequentially eventually_cofinite |
|
722 |
proof safe |
|
723 |
fix P :: "nat \<Rightarrow> bool" assume [simp]: "finite {x. \<not> P x}" |
|
724 |
show "\<exists>N. \<forall>n\<ge>N. P n" |
|
725 |
proof cases |
|
726 |
assume "{x. \<not> P x} \<noteq> {}" then show ?thesis |
|
727 |
by (intro exI[of _ "Suc (Max {x. \<not> P x})"]) (auto simp: Suc_le_eq) |
|
728 |
qed auto |
|
729 |
next |
|
730 |
fix P :: "nat \<Rightarrow> bool" and N :: nat assume "\<forall>n\<ge>N. P n" |
|
731 |
then have "{x. \<not> P x} \<subseteq> {..< N}" |
|
732 |
by (auto simp: not_le) |
|
733 |
then show "finite {x. \<not> P x}" |
|
734 |
by (blast intro: finite_subset) |
|
735 |
qed |
|
60036 | 736 |
|
60758 | 737 |
subsection \<open>Limits\<close> |
60036 | 738 |
|
739 |
definition filterlim :: "('a \<Rightarrow> 'b) \<Rightarrow> 'b filter \<Rightarrow> 'a filter \<Rightarrow> bool" where |
|
740 |
"filterlim f F2 F1 \<longleftrightarrow> filtermap f F1 \<le> F2" |
|
741 |
||
742 |
syntax |
|
743 |
"_LIM" :: "pttrns \<Rightarrow> 'a \<Rightarrow> 'b \<Rightarrow> 'a \<Rightarrow> bool" ("(3LIM (_)/ (_)./ (_) :> (_))" [1000, 10, 0, 10] 10) |
|
744 |
||
745 |
translations |
|
746 |
"LIM x F1. f :> F2" == "CONST filterlim (%x. f) F2 F1" |
|
747 |
||
748 |
lemma filterlim_iff: |
|
749 |
"(LIM x F1. f x :> F2) \<longleftrightarrow> (\<forall>P. eventually P F2 \<longrightarrow> eventually (\<lambda>x. P (f x)) F1)" |
|
750 |
unfolding filterlim_def le_filter_def eventually_filtermap .. |
|
751 |
||
752 |
lemma filterlim_compose: |
|
753 |
"filterlim g F3 F2 \<Longrightarrow> filterlim f F2 F1 \<Longrightarrow> filterlim (\<lambda>x. g (f x)) F3 F1" |
|
754 |
unfolding filterlim_def filtermap_filtermap[symmetric] by (metis filtermap_mono order_trans) |
|
755 |
||
756 |
lemma filterlim_mono: |
|
757 |
"filterlim f F2 F1 \<Longrightarrow> F2 \<le> F2' \<Longrightarrow> F1' \<le> F1 \<Longrightarrow> filterlim f F2' F1'" |
|
758 |
unfolding filterlim_def by (metis filtermap_mono order_trans) |
|
759 |
||
760 |
lemma filterlim_ident: "LIM x F. x :> F" |
|
761 |
by (simp add: filterlim_def filtermap_ident) |
|
762 |
||
763 |
lemma filterlim_cong: |
|
764 |
"F1 = F1' \<Longrightarrow> F2 = F2' \<Longrightarrow> eventually (\<lambda>x. f x = g x) F2 \<Longrightarrow> filterlim f F1 F2 = filterlim g F1' F2'" |
|
765 |
by (auto simp: filterlim_def le_filter_def eventually_filtermap elim: eventually_elim2) |
|
766 |
||
767 |
lemma filterlim_mono_eventually: |
|
768 |
assumes "filterlim f F G" and ord: "F \<le> F'" "G' \<le> G" |
|
769 |
assumes eq: "eventually (\<lambda>x. f x = f' x) G'" |
|
770 |
shows "filterlim f' F' G'" |
|
771 |
apply (rule filterlim_cong[OF refl refl eq, THEN iffD1]) |
|
772 |
apply (rule filterlim_mono[OF _ ord]) |
|
773 |
apply fact |
|
774 |
done |
|
775 |
||
776 |
lemma filtermap_mono_strong: "inj f \<Longrightarrow> filtermap f F \<le> filtermap f G \<longleftrightarrow> F \<le> G" |
|
777 |
apply (auto intro!: filtermap_mono) [] |
|
778 |
apply (auto simp: le_filter_def eventually_filtermap) |
|
779 |
apply (erule_tac x="\<lambda>x. P (inv f x)" in allE) |
|
780 |
apply auto |
|
781 |
done |
|
782 |
||
783 |
lemma filtermap_eq_strong: "inj f \<Longrightarrow> filtermap f F = filtermap f G \<longleftrightarrow> F = G" |
|
784 |
by (simp add: filtermap_mono_strong eq_iff) |
|
785 |
||
60721
c1b7793c23a3
generalized filtermap_homeomorph to filtermap_fun_inverse; add eventually_at_top/bot_not_equal
hoelzl
parents:
60589
diff
changeset
|
786 |
lemma filtermap_fun_inverse: |
c1b7793c23a3
generalized filtermap_homeomorph to filtermap_fun_inverse; add eventually_at_top/bot_not_equal
hoelzl
parents:
60589
diff
changeset
|
787 |
assumes g: "filterlim g F G" |
c1b7793c23a3
generalized filtermap_homeomorph to filtermap_fun_inverse; add eventually_at_top/bot_not_equal
hoelzl
parents:
60589
diff
changeset
|
788 |
assumes f: "filterlim f G F" |
c1b7793c23a3
generalized filtermap_homeomorph to filtermap_fun_inverse; add eventually_at_top/bot_not_equal
hoelzl
parents:
60589
diff
changeset
|
789 |
assumes ev: "eventually (\<lambda>x. f (g x) = x) G" |
c1b7793c23a3
generalized filtermap_homeomorph to filtermap_fun_inverse; add eventually_at_top/bot_not_equal
hoelzl
parents:
60589
diff
changeset
|
790 |
shows "filtermap f F = G" |
c1b7793c23a3
generalized filtermap_homeomorph to filtermap_fun_inverse; add eventually_at_top/bot_not_equal
hoelzl
parents:
60589
diff
changeset
|
791 |
proof (rule antisym) |
c1b7793c23a3
generalized filtermap_homeomorph to filtermap_fun_inverse; add eventually_at_top/bot_not_equal
hoelzl
parents:
60589
diff
changeset
|
792 |
show "filtermap f F \<le> G" |
c1b7793c23a3
generalized filtermap_homeomorph to filtermap_fun_inverse; add eventually_at_top/bot_not_equal
hoelzl
parents:
60589
diff
changeset
|
793 |
using f unfolding filterlim_def . |
c1b7793c23a3
generalized filtermap_homeomorph to filtermap_fun_inverse; add eventually_at_top/bot_not_equal
hoelzl
parents:
60589
diff
changeset
|
794 |
have "G = filtermap f (filtermap g G)" |
c1b7793c23a3
generalized filtermap_homeomorph to filtermap_fun_inverse; add eventually_at_top/bot_not_equal
hoelzl
parents:
60589
diff
changeset
|
795 |
using ev by (auto elim: eventually_elim2 simp: filter_eq_iff eventually_filtermap) |
c1b7793c23a3
generalized filtermap_homeomorph to filtermap_fun_inverse; add eventually_at_top/bot_not_equal
hoelzl
parents:
60589
diff
changeset
|
796 |
also have "\<dots> \<le> filtermap f F" |
c1b7793c23a3
generalized filtermap_homeomorph to filtermap_fun_inverse; add eventually_at_top/bot_not_equal
hoelzl
parents:
60589
diff
changeset
|
797 |
using g by (intro filtermap_mono) (simp add: filterlim_def) |
c1b7793c23a3
generalized filtermap_homeomorph to filtermap_fun_inverse; add eventually_at_top/bot_not_equal
hoelzl
parents:
60589
diff
changeset
|
798 |
finally show "G \<le> filtermap f F" . |
c1b7793c23a3
generalized filtermap_homeomorph to filtermap_fun_inverse; add eventually_at_top/bot_not_equal
hoelzl
parents:
60589
diff
changeset
|
799 |
qed |
c1b7793c23a3
generalized filtermap_homeomorph to filtermap_fun_inverse; add eventually_at_top/bot_not_equal
hoelzl
parents:
60589
diff
changeset
|
800 |
|
60036 | 801 |
lemma filterlim_principal: |
802 |
"(LIM x F. f x :> principal S) \<longleftrightarrow> (eventually (\<lambda>x. f x \<in> S) F)" |
|
803 |
unfolding filterlim_def eventually_filtermap le_principal .. |
|
804 |
||
805 |
lemma filterlim_inf: |
|
806 |
"(LIM x F1. f x :> inf F2 F3) \<longleftrightarrow> ((LIM x F1. f x :> F2) \<and> (LIM x F1. f x :> F3))" |
|
807 |
unfolding filterlim_def by simp |
|
808 |
||
809 |
lemma filterlim_INF: |
|
810 |
"(LIM x F. f x :> (INF b:B. G b)) \<longleftrightarrow> (\<forall>b\<in>B. LIM x F. f x :> G b)" |
|
811 |
unfolding filterlim_def le_INF_iff .. |
|
812 |
||
813 |
lemma filterlim_INF_INF: |
|
814 |
"(\<And>m. m \<in> J \<Longrightarrow> \<exists>i\<in>I. filtermap f (F i) \<le> G m) \<Longrightarrow> LIM x (INF i:I. F i). f x :> (INF j:J. G j)" |
|
815 |
unfolding filterlim_def by (rule order_trans[OF filtermap_INF INF_mono]) |
|
816 |
||
817 |
lemma filterlim_base: |
|
818 |
"(\<And>m x. m \<in> J \<Longrightarrow> i m \<in> I) \<Longrightarrow> (\<And>m x. m \<in> J \<Longrightarrow> x \<in> F (i m) \<Longrightarrow> f x \<in> G m) \<Longrightarrow> |
|
819 |
LIM x (INF i:I. principal (F i)). f x :> (INF j:J. principal (G j))" |
|
820 |
by (force intro!: filterlim_INF_INF simp: image_subset_iff) |
|
821 |
||
822 |
lemma filterlim_base_iff: |
|
823 |
assumes "I \<noteq> {}" and chain: "\<And>i j. i \<in> I \<Longrightarrow> j \<in> I \<Longrightarrow> F i \<subseteq> F j \<or> F j \<subseteq> F i" |
|
824 |
shows "(LIM x (INF i:I. principal (F i)). f x :> INF j:J. principal (G j)) \<longleftrightarrow> |
|
825 |
(\<forall>j\<in>J. \<exists>i\<in>I. \<forall>x\<in>F i. f x \<in> G j)" |
|
826 |
unfolding filterlim_INF filterlim_principal |
|
827 |
proof (subst eventually_INF_base) |
|
828 |
fix i j assume "i \<in> I" "j \<in> I" |
|
829 |
with chain[OF this] show "\<exists>x\<in>I. principal (F x) \<le> inf (principal (F i)) (principal (F j))" |
|
830 |
by auto |
|
60758 | 831 |
qed (auto simp: eventually_principal \<open>I \<noteq> {}\<close>) |
60036 | 832 |
|
833 |
lemma filterlim_filtermap: "filterlim f F1 (filtermap g F2) = filterlim (\<lambda>x. f (g x)) F1 F2" |
|
834 |
unfolding filterlim_def filtermap_filtermap .. |
|
835 |
||
836 |
lemma filterlim_sup: |
|
837 |
"filterlim f F F1 \<Longrightarrow> filterlim f F F2 \<Longrightarrow> filterlim f F (sup F1 F2)" |
|
838 |
unfolding filterlim_def filtermap_sup by auto |
|
839 |
||
840 |
lemma filterlim_sequentially_Suc: |
|
841 |
"(LIM x sequentially. f (Suc x) :> F) \<longleftrightarrow> (LIM x sequentially. f x :> F)" |
|
842 |
unfolding filterlim_iff by (subst eventually_sequentially_Suc) simp |
|
843 |
||
844 |
lemma filterlim_Suc: "filterlim Suc sequentially sequentially" |
|
845 |
by (simp add: filterlim_iff eventually_sequentially) (metis le_Suc_eq) |
|
846 |
||
60182
e1ea5a6379c9
generalized tends over powr; added DERIV rule for powr
hoelzl
parents:
60040
diff
changeset
|
847 |
lemma filterlim_If: |
e1ea5a6379c9
generalized tends over powr; added DERIV rule for powr
hoelzl
parents:
60040
diff
changeset
|
848 |
"LIM x inf F (principal {x. P x}). f x :> G \<Longrightarrow> |
e1ea5a6379c9
generalized tends over powr; added DERIV rule for powr
hoelzl
parents:
60040
diff
changeset
|
849 |
LIM x inf F (principal {x. \<not> P x}). g x :> G \<Longrightarrow> |
e1ea5a6379c9
generalized tends over powr; added DERIV rule for powr
hoelzl
parents:
60040
diff
changeset
|
850 |
LIM x F. if P x then f x else g x :> G" |
e1ea5a6379c9
generalized tends over powr; added DERIV rule for powr
hoelzl
parents:
60040
diff
changeset
|
851 |
unfolding filterlim_iff eventually_inf_principal by (auto simp: eventually_conj_iff) |
60036 | 852 |
|
60758 | 853 |
subsection \<open>Limits to @{const at_top} and @{const at_bot}\<close> |
60036 | 854 |
|
855 |
lemma filterlim_at_top: |
|
856 |
fixes f :: "'a \<Rightarrow> ('b::linorder)" |
|
857 |
shows "(LIM x F. f x :> at_top) \<longleftrightarrow> (\<forall>Z. eventually (\<lambda>x. Z \<le> f x) F)" |
|
858 |
by (auto simp: filterlim_iff eventually_at_top_linorder elim!: eventually_elim1) |
|
859 |
||
860 |
lemma filterlim_at_top_mono: |
|
861 |
"LIM x F. f x :> at_top \<Longrightarrow> eventually (\<lambda>x. f x \<le> (g x::'a::linorder)) F \<Longrightarrow> |
|
862 |
LIM x F. g x :> at_top" |
|
863 |
by (auto simp: filterlim_at_top elim: eventually_elim2 intro: order_trans) |
|
864 |
||
865 |
lemma filterlim_at_top_dense: |
|
866 |
fixes f :: "'a \<Rightarrow> ('b::unbounded_dense_linorder)" |
|
867 |
shows "(LIM x F. f x :> at_top) \<longleftrightarrow> (\<forall>Z. eventually (\<lambda>x. Z < f x) F)" |
|
868 |
by (metis eventually_elim1[of _ F] eventually_gt_at_top order_less_imp_le |
|
869 |
filterlim_at_top[of f F] filterlim_iff[of f at_top F]) |
|
870 |
||
871 |
lemma filterlim_at_top_ge: |
|
872 |
fixes f :: "'a \<Rightarrow> ('b::linorder)" and c :: "'b" |
|
873 |
shows "(LIM x F. f x :> at_top) \<longleftrightarrow> (\<forall>Z\<ge>c. eventually (\<lambda>x. Z \<le> f x) F)" |
|
874 |
unfolding at_top_sub[of c] filterlim_INF by (auto simp add: filterlim_principal) |
|
875 |
||
876 |
lemma filterlim_at_top_at_top: |
|
877 |
fixes f :: "'a::linorder \<Rightarrow> 'b::linorder" |
|
878 |
assumes mono: "\<And>x y. Q x \<Longrightarrow> Q y \<Longrightarrow> x \<le> y \<Longrightarrow> f x \<le> f y" |
|
879 |
assumes bij: "\<And>x. P x \<Longrightarrow> f (g x) = x" "\<And>x. P x \<Longrightarrow> Q (g x)" |
|
880 |
assumes Q: "eventually Q at_top" |
|
881 |
assumes P: "eventually P at_top" |
|
882 |
shows "filterlim f at_top at_top" |
|
883 |
proof - |
|
884 |
from P obtain x where x: "\<And>y. x \<le> y \<Longrightarrow> P y" |
|
885 |
unfolding eventually_at_top_linorder by auto |
|
886 |
show ?thesis |
|
887 |
proof (intro filterlim_at_top_ge[THEN iffD2] allI impI) |
|
888 |
fix z assume "x \<le> z" |
|
889 |
with x have "P z" by auto |
|
890 |
have "eventually (\<lambda>x. g z \<le> x) at_top" |
|
891 |
by (rule eventually_ge_at_top) |
|
892 |
with Q show "eventually (\<lambda>x. z \<le> f x) at_top" |
|
60758 | 893 |
by eventually_elim (metis mono bij \<open>P z\<close>) |
60036 | 894 |
qed |
895 |
qed |
|
896 |
||
897 |
lemma filterlim_at_top_gt: |
|
898 |
fixes f :: "'a \<Rightarrow> ('b::unbounded_dense_linorder)" and c :: "'b" |
|
899 |
shows "(LIM x F. f x :> at_top) \<longleftrightarrow> (\<forall>Z>c. eventually (\<lambda>x. Z \<le> f x) F)" |
|
900 |
by (metis filterlim_at_top order_less_le_trans gt_ex filterlim_at_top_ge) |
|
901 |
||
902 |
lemma filterlim_at_bot: |
|
903 |
fixes f :: "'a \<Rightarrow> ('b::linorder)" |
|
904 |
shows "(LIM x F. f x :> at_bot) \<longleftrightarrow> (\<forall>Z. eventually (\<lambda>x. f x \<le> Z) F)" |
|
905 |
by (auto simp: filterlim_iff eventually_at_bot_linorder elim!: eventually_elim1) |
|
906 |
||
907 |
lemma filterlim_at_bot_dense: |
|
908 |
fixes f :: "'a \<Rightarrow> ('b::{dense_linorder, no_bot})" |
|
909 |
shows "(LIM x F. f x :> at_bot) \<longleftrightarrow> (\<forall>Z. eventually (\<lambda>x. f x < Z) F)" |
|
910 |
proof (auto simp add: filterlim_at_bot[of f F]) |
|
911 |
fix Z :: 'b |
|
912 |
from lt_ex [of Z] obtain Z' where 1: "Z' < Z" .. |
|
913 |
assume "\<forall>Z. eventually (\<lambda>x. f x \<le> Z) F" |
|
914 |
hence "eventually (\<lambda>x. f x \<le> Z') F" by auto |
|
915 |
thus "eventually (\<lambda>x. f x < Z) F" |
|
916 |
apply (rule eventually_mono[rotated]) |
|
917 |
using 1 by auto |
|
918 |
next |
|
919 |
fix Z :: 'b |
|
920 |
show "\<forall>Z. eventually (\<lambda>x. f x < Z) F \<Longrightarrow> eventually (\<lambda>x. f x \<le> Z) F" |
|
921 |
by (drule spec [of _ Z], erule eventually_mono[rotated], auto simp add: less_imp_le) |
|
922 |
qed |
|
923 |
||
924 |
lemma filterlim_at_bot_le: |
|
925 |
fixes f :: "'a \<Rightarrow> ('b::linorder)" and c :: "'b" |
|
926 |
shows "(LIM x F. f x :> at_bot) \<longleftrightarrow> (\<forall>Z\<le>c. eventually (\<lambda>x. Z \<ge> f x) F)" |
|
927 |
unfolding filterlim_at_bot |
|
928 |
proof safe |
|
929 |
fix Z assume *: "\<forall>Z\<le>c. eventually (\<lambda>x. Z \<ge> f x) F" |
|
930 |
with *[THEN spec, of "min Z c"] show "eventually (\<lambda>x. Z \<ge> f x) F" |
|
931 |
by (auto elim!: eventually_elim1) |
|
932 |
qed simp |
|
933 |
||
934 |
lemma filterlim_at_bot_lt: |
|
935 |
fixes f :: "'a \<Rightarrow> ('b::unbounded_dense_linorder)" and c :: "'b" |
|
936 |
shows "(LIM x F. f x :> at_bot) \<longleftrightarrow> (\<forall>Z<c. eventually (\<lambda>x. Z \<ge> f x) F)" |
|
937 |
by (metis filterlim_at_bot filterlim_at_bot_le lt_ex order_le_less_trans) |
|
938 |
||
939 |
||
60758 | 940 |
subsection \<open>Setup @{typ "'a filter"} for lifting and transfer\<close> |
60036 | 941 |
|
942 |
context begin interpretation lifting_syntax . |
|
943 |
||
944 |
definition rel_filter :: "('a \<Rightarrow> 'b \<Rightarrow> bool) \<Rightarrow> 'a filter \<Rightarrow> 'b filter \<Rightarrow> bool" |
|
945 |
where "rel_filter R F G = ((R ===> op =) ===> op =) (Rep_filter F) (Rep_filter G)" |
|
946 |
||
947 |
lemma rel_filter_eventually: |
|
948 |
"rel_filter R F G \<longleftrightarrow> |
|
949 |
((R ===> op =) ===> op =) (\<lambda>P. eventually P F) (\<lambda>P. eventually P G)" |
|
950 |
by(simp add: rel_filter_def eventually_def) |
|
951 |
||
952 |
lemma filtermap_id [simp, id_simps]: "filtermap id = id" |
|
953 |
by(simp add: fun_eq_iff id_def filtermap_ident) |
|
954 |
||
955 |
lemma filtermap_id' [simp]: "filtermap (\<lambda>x. x) = (\<lambda>F. F)" |
|
956 |
using filtermap_id unfolding id_def . |
|
957 |
||
958 |
lemma Quotient_filter [quot_map]: |
|
959 |
assumes Q: "Quotient R Abs Rep T" |
|
960 |
shows "Quotient (rel_filter R) (filtermap Abs) (filtermap Rep) (rel_filter T)" |
|
961 |
unfolding Quotient_alt_def |
|
962 |
proof(intro conjI strip) |
|
963 |
from Q have *: "\<And>x y. T x y \<Longrightarrow> Abs x = y" |
|
964 |
unfolding Quotient_alt_def by blast |
|
965 |
||
966 |
fix F G |
|
967 |
assume "rel_filter T F G" |
|
968 |
thus "filtermap Abs F = G" unfolding filter_eq_iff |
|
969 |
by(auto simp add: eventually_filtermap rel_filter_eventually * rel_funI del: iffI elim!: rel_funD) |
|
970 |
next |
|
971 |
from Q have *: "\<And>x. T (Rep x) x" unfolding Quotient_alt_def by blast |
|
972 |
||
973 |
fix F |
|
974 |
show "rel_filter T (filtermap Rep F) F" |
|
975 |
by(auto elim: rel_funD intro: * intro!: ext arg_cong[where f="\<lambda>P. eventually P F"] rel_funI |
|
976 |
del: iffI simp add: eventually_filtermap rel_filter_eventually) |
|
977 |
qed(auto simp add: map_fun_def o_def eventually_filtermap filter_eq_iff fun_eq_iff rel_filter_eventually |
|
978 |
fun_quotient[OF fun_quotient[OF Q identity_quotient] identity_quotient, unfolded Quotient_alt_def]) |
|
979 |
||
980 |
lemma eventually_parametric [transfer_rule]: |
|
981 |
"((A ===> op =) ===> rel_filter A ===> op =) eventually eventually" |
|
982 |
by(simp add: rel_fun_def rel_filter_eventually) |
|
983 |
||
60038 | 984 |
lemma frequently_parametric [transfer_rule]: |
985 |
"((A ===> op =) ===> rel_filter A ===> op =) frequently frequently" |
|
986 |
unfolding frequently_def[abs_def] by transfer_prover |
|
987 |
||
60036 | 988 |
lemma rel_filter_eq [relator_eq]: "rel_filter op = = op =" |
989 |
by(auto simp add: rel_filter_eventually rel_fun_eq fun_eq_iff filter_eq_iff) |
|
990 |
||
991 |
lemma rel_filter_mono [relator_mono]: |
|
992 |
"A \<le> B \<Longrightarrow> rel_filter A \<le> rel_filter B" |
|
993 |
unfolding rel_filter_eventually[abs_def] |
|
994 |
by(rule le_funI)+(intro fun_mono fun_mono[THEN le_funD, THEN le_funD] order.refl) |
|
995 |
||
996 |
lemma rel_filter_conversep [simp]: "rel_filter A\<inverse>\<inverse> = (rel_filter A)\<inverse>\<inverse>" |
|
61233
1da01148d4b1
Prepared two non-terminating proofs; no obvious link with my changes
paulson <lp15@cam.ac.uk>
parents:
60974
diff
changeset
|
997 |
apply (simp add: rel_filter_eventually fun_eq_iff rel_fun_def) |
1da01148d4b1
Prepared two non-terminating proofs; no obvious link with my changes
paulson <lp15@cam.ac.uk>
parents:
60974
diff
changeset
|
998 |
apply (safe; metis) |
1da01148d4b1
Prepared two non-terminating proofs; no obvious link with my changes
paulson <lp15@cam.ac.uk>
parents:
60974
diff
changeset
|
999 |
done |
60036 | 1000 |
|
1001 |
lemma is_filter_parametric_aux: |
|
1002 |
assumes "is_filter F" |
|
1003 |
assumes [transfer_rule]: "bi_total A" "bi_unique A" |
|
1004 |
and [transfer_rule]: "((A ===> op =) ===> op =) F G" |
|
1005 |
shows "is_filter G" |
|
1006 |
proof - |
|
1007 |
interpret is_filter F by fact |
|
1008 |
show ?thesis |
|
1009 |
proof |
|
1010 |
have "F (\<lambda>_. True) = G (\<lambda>x. True)" by transfer_prover |
|
1011 |
thus "G (\<lambda>x. True)" by(simp add: True) |
|
1012 |
next |
|
1013 |
fix P' Q' |
|
1014 |
assume "G P'" "G Q'" |
|
1015 |
moreover |
|
60758 | 1016 |
from bi_total_fun[OF \<open>bi_unique A\<close> bi_total_eq, unfolded bi_total_def] |
60036 | 1017 |
obtain P Q where [transfer_rule]: "(A ===> op =) P P'" "(A ===> op =) Q Q'" by blast |
1018 |
have "F P = G P'" "F Q = G Q'" by transfer_prover+ |
|
1019 |
ultimately have "F (\<lambda>x. P x \<and> Q x)" by(simp add: conj) |
|
1020 |
moreover have "F (\<lambda>x. P x \<and> Q x) = G (\<lambda>x. P' x \<and> Q' x)" by transfer_prover |
|
1021 |
ultimately show "G (\<lambda>x. P' x \<and> Q' x)" by simp |
|
1022 |
next |
|
1023 |
fix P' Q' |
|
1024 |
assume "\<forall>x. P' x \<longrightarrow> Q' x" "G P'" |
|
1025 |
moreover |
|
60758 | 1026 |
from bi_total_fun[OF \<open>bi_unique A\<close> bi_total_eq, unfolded bi_total_def] |
60036 | 1027 |
obtain P Q where [transfer_rule]: "(A ===> op =) P P'" "(A ===> op =) Q Q'" by blast |
1028 |
have "F P = G P'" by transfer_prover |
|
1029 |
moreover have "(\<forall>x. P x \<longrightarrow> Q x) \<longleftrightarrow> (\<forall>x. P' x \<longrightarrow> Q' x)" by transfer_prover |
|
1030 |
ultimately have "F Q" by(simp add: mono) |
|
1031 |
moreover have "F Q = G Q'" by transfer_prover |
|
1032 |
ultimately show "G Q'" by simp |
|
1033 |
qed |
|
1034 |
qed |
|
1035 |
||
1036 |
lemma is_filter_parametric [transfer_rule]: |
|
1037 |
"\<lbrakk> bi_total A; bi_unique A \<rbrakk> |
|
1038 |
\<Longrightarrow> (((A ===> op =) ===> op =) ===> op =) is_filter is_filter" |
|
1039 |
apply(rule rel_funI) |
|
1040 |
apply(rule iffI) |
|
1041 |
apply(erule (3) is_filter_parametric_aux) |
|
1042 |
apply(erule is_filter_parametric_aux[where A="conversep A"]) |
|
61233
1da01148d4b1
Prepared two non-terminating proofs; no obvious link with my changes
paulson <lp15@cam.ac.uk>
parents:
60974
diff
changeset
|
1043 |
apply (simp_all add: rel_fun_def) |
1da01148d4b1
Prepared two non-terminating proofs; no obvious link with my changes
paulson <lp15@cam.ac.uk>
parents:
60974
diff
changeset
|
1044 |
apply metis |
60036 | 1045 |
done |
1046 |
||
1047 |
lemma left_total_rel_filter [transfer_rule]: |
|
1048 |
assumes [transfer_rule]: "bi_total A" "bi_unique A" |
|
1049 |
shows "left_total (rel_filter A)" |
|
1050 |
proof(rule left_totalI) |
|
1051 |
fix F :: "'a filter" |
|
60758 | 1052 |
from bi_total_fun[OF bi_unique_fun[OF \<open>bi_total A\<close> bi_unique_eq] bi_total_eq] |
60036 | 1053 |
obtain G where [transfer_rule]: "((A ===> op =) ===> op =) (\<lambda>P. eventually P F) G" |
1054 |
unfolding bi_total_def by blast |
|
1055 |
moreover have "is_filter (\<lambda>P. eventually P F) \<longleftrightarrow> is_filter G" by transfer_prover |
|
1056 |
hence "is_filter G" by(simp add: eventually_def is_filter_Rep_filter) |
|
1057 |
ultimately have "rel_filter A F (Abs_filter G)" |
|
1058 |
by(simp add: rel_filter_eventually eventually_Abs_filter) |
|
1059 |
thus "\<exists>G. rel_filter A F G" .. |
|
1060 |
qed |
|
1061 |
||
1062 |
lemma right_total_rel_filter [transfer_rule]: |
|
1063 |
"\<lbrakk> bi_total A; bi_unique A \<rbrakk> \<Longrightarrow> right_total (rel_filter A)" |
|
1064 |
using left_total_rel_filter[of "A\<inverse>\<inverse>"] by simp |
|
1065 |
||
1066 |
lemma bi_total_rel_filter [transfer_rule]: |
|
1067 |
assumes "bi_total A" "bi_unique A" |
|
1068 |
shows "bi_total (rel_filter A)" |
|
1069 |
unfolding bi_total_alt_def using assms |
|
1070 |
by(simp add: left_total_rel_filter right_total_rel_filter) |
|
1071 |
||
1072 |
lemma left_unique_rel_filter [transfer_rule]: |
|
1073 |
assumes "left_unique A" |
|
1074 |
shows "left_unique (rel_filter A)" |
|
1075 |
proof(rule left_uniqueI) |
|
1076 |
fix F F' G |
|
1077 |
assume [transfer_rule]: "rel_filter A F G" "rel_filter A F' G" |
|
1078 |
show "F = F'" |
|
1079 |
unfolding filter_eq_iff |
|
1080 |
proof |
|
1081 |
fix P :: "'a \<Rightarrow> bool" |
|
1082 |
obtain P' where [transfer_rule]: "(A ===> op =) P P'" |
|
1083 |
using left_total_fun[OF assms left_total_eq] unfolding left_total_def by blast |
|
1084 |
have "eventually P F = eventually P' G" |
|
1085 |
and "eventually P F' = eventually P' G" by transfer_prover+ |
|
1086 |
thus "eventually P F = eventually P F'" by simp |
|
1087 |
qed |
|
1088 |
qed |
|
1089 |
||
1090 |
lemma right_unique_rel_filter [transfer_rule]: |
|
1091 |
"right_unique A \<Longrightarrow> right_unique (rel_filter A)" |
|
1092 |
using left_unique_rel_filter[of "A\<inverse>\<inverse>"] by simp |
|
1093 |
||
1094 |
lemma bi_unique_rel_filter [transfer_rule]: |
|
1095 |
"bi_unique A \<Longrightarrow> bi_unique (rel_filter A)" |
|
1096 |
by(simp add: bi_unique_alt_def left_unique_rel_filter right_unique_rel_filter) |
|
1097 |
||
1098 |
lemma top_filter_parametric [transfer_rule]: |
|
1099 |
"bi_total A \<Longrightarrow> (rel_filter A) top top" |
|
1100 |
by(simp add: rel_filter_eventually All_transfer) |
|
1101 |
||
1102 |
lemma bot_filter_parametric [transfer_rule]: "(rel_filter A) bot bot" |
|
1103 |
by(simp add: rel_filter_eventually rel_fun_def) |
|
1104 |
||
1105 |
lemma sup_filter_parametric [transfer_rule]: |
|
1106 |
"(rel_filter A ===> rel_filter A ===> rel_filter A) sup sup" |
|
1107 |
by(fastforce simp add: rel_filter_eventually[abs_def] eventually_sup dest: rel_funD) |
|
1108 |
||
1109 |
lemma Sup_filter_parametric [transfer_rule]: |
|
1110 |
"(rel_set (rel_filter A) ===> rel_filter A) Sup Sup" |
|
1111 |
proof(rule rel_funI) |
|
1112 |
fix S T |
|
1113 |
assume [transfer_rule]: "rel_set (rel_filter A) S T" |
|
1114 |
show "rel_filter A (Sup S) (Sup T)" |
|
1115 |
by(simp add: rel_filter_eventually eventually_Sup) transfer_prover |
|
1116 |
qed |
|
1117 |
||
1118 |
lemma principal_parametric [transfer_rule]: |
|
1119 |
"(rel_set A ===> rel_filter A) principal principal" |
|
1120 |
proof(rule rel_funI) |
|
1121 |
fix S S' |
|
1122 |
assume [transfer_rule]: "rel_set A S S'" |
|
1123 |
show "rel_filter A (principal S) (principal S')" |
|
1124 |
by(simp add: rel_filter_eventually eventually_principal) transfer_prover |
|
1125 |
qed |
|
1126 |
||
1127 |
context |
|
1128 |
fixes A :: "'a \<Rightarrow> 'b \<Rightarrow> bool" |
|
1129 |
assumes [transfer_rule]: "bi_unique A" |
|
1130 |
begin |
|
1131 |
||
1132 |
lemma le_filter_parametric [transfer_rule]: |
|
1133 |
"(rel_filter A ===> rel_filter A ===> op =) op \<le> op \<le>" |
|
1134 |
unfolding le_filter_def[abs_def] by transfer_prover |
|
1135 |
||
1136 |
lemma less_filter_parametric [transfer_rule]: |
|
1137 |
"(rel_filter A ===> rel_filter A ===> op =) op < op <" |
|
1138 |
unfolding less_filter_def[abs_def] by transfer_prover |
|
1139 |
||
1140 |
context |
|
1141 |
assumes [transfer_rule]: "bi_total A" |
|
1142 |
begin |
|
1143 |
||
1144 |
lemma Inf_filter_parametric [transfer_rule]: |
|
1145 |
"(rel_set (rel_filter A) ===> rel_filter A) Inf Inf" |
|
1146 |
unfolding Inf_filter_def[abs_def] by transfer_prover |
|
1147 |
||
1148 |
lemma inf_filter_parametric [transfer_rule]: |
|
1149 |
"(rel_filter A ===> rel_filter A ===> rel_filter A) inf inf" |
|
1150 |
proof(intro rel_funI)+ |
|
1151 |
fix F F' G G' |
|
1152 |
assume [transfer_rule]: "rel_filter A F F'" "rel_filter A G G'" |
|
1153 |
have "rel_filter A (Inf {F, G}) (Inf {F', G'})" by transfer_prover |
|
1154 |
thus "rel_filter A (inf F G) (inf F' G')" by simp |
|
1155 |
qed |
|
1156 |
||
1157 |
end |
|
1158 |
||
1159 |
end |
|
1160 |
||
1161 |
end |
|
1162 |
||
1163 |
end |