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