src/HOL/Relation.thy
author Manuel Eberl <manuel@pruvisto.org>
Tue, 15 Apr 2025 17:38:20 +0200
changeset 82518 da14e77a48b2
parent 82339 53f3e72020b9
permissions -rw-r--r--
lots of lemmas for HOL, HOL-{Complex_}Analysis, HOL-Number_Theory
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
10358
ef2a753cda2a converse: syntax \<inverse>;
wenzelm
parents: 10212
diff changeset
     1
(*  Title:      HOL/Relation.thy
63612
7195acc2fe93 misc tuning and modernization;
wenzelm
parents: 63563
diff changeset
     2
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory
7195acc2fe93 misc tuning and modernization;
wenzelm
parents: 63563
diff changeset
     3
    Author:     Stefan Berghofer, TU Muenchen
76559
4352d0ff165a introduced predicates irrefl_on and irreflp_on, and redefined irrefl and irreflp as abbreviations
desharna
parents: 76554
diff changeset
     4
    Author:     Martin Desharnais, MPI-INF Saarbruecken
1128
64b30e3cc6d4 Trancl is now based on Relation which used to be in Integ.
nipkow
parents:
diff changeset
     5
*)
64b30e3cc6d4 Trancl is now based on Relation which used to be in Integ.
nipkow
parents:
diff changeset
     6
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60057
diff changeset
     7
section \<open>Relations -- as sets of pairs, and binary predicates\<close>
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
     8
15131
c69542757a4d New theory header syntax.
nipkow
parents: 13830
diff changeset
     9
theory Relation
77695
93531ba2c784 reversed import dependency between Relation and Finite_Set; and move theorems around
desharna
parents: 77048
diff changeset
    10
  imports Product_Type Sum_Type Fields
15131
c69542757a4d New theory header syntax.
nipkow
parents: 13830
diff changeset
    11
begin
5978
fa2c2dd74f8c moved diag (diagonal relation) from Univ to Relation
paulson
parents: 5608
diff changeset
    12
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60057
diff changeset
    13
text \<open>A preliminary: classical rules for reasoning on predicates\<close>
46664
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
    14
46882
6242b4bc05bc tuned simpset
noschinl
parents: 46833
diff changeset
    15
declare predicate1I [Pure.intro!, intro!]
6242b4bc05bc tuned simpset
noschinl
parents: 46833
diff changeset
    16
declare predicate1D [Pure.dest, dest]
46664
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
    17
declare predicate2I [Pure.intro!, intro!]
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
    18
declare predicate2D [Pure.dest, dest]
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
    19
declare bot1E [elim!]
46664
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
    20
declare bot2E [elim!]
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
    21
declare top1I [intro!]
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
    22
declare top2I [intro!]
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
    23
declare inf1I [intro!]
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
    24
declare inf2I [intro!]
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
    25
declare inf1E [elim!]
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
    26
declare inf2E [elim!]
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
    27
declare sup1I1 [intro?]
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
    28
declare sup2I1 [intro?]
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
    29
declare sup1I2 [intro?]
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
    30
declare sup2I2 [intro?]
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
    31
declare sup1E [elim!]
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
    32
declare sup2E [elim!]
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
    33
declare sup1CI [intro!]
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
    34
declare sup2CI [intro!]
56742
678a52e676b6 more complete classical rules for Inf and Sup, modelled after theiry counterparts on Inter and Union (and INF and SUP)
haftmann
parents: 56545
diff changeset
    35
declare Inf1_I [intro!]
46664
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
    36
declare INF1_I [intro!]
56742
678a52e676b6 more complete classical rules for Inf and Sup, modelled after theiry counterparts on Inter and Union (and INF and SUP)
haftmann
parents: 56545
diff changeset
    37
declare Inf2_I [intro!]
46664
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
    38
declare INF2_I [intro!]
56742
678a52e676b6 more complete classical rules for Inf and Sup, modelled after theiry counterparts on Inter and Union (and INF and SUP)
haftmann
parents: 56545
diff changeset
    39
declare Inf1_D [elim]
46664
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
    40
declare INF1_D [elim]
56742
678a52e676b6 more complete classical rules for Inf and Sup, modelled after theiry counterparts on Inter and Union (and INF and SUP)
haftmann
parents: 56545
diff changeset
    41
declare Inf2_D [elim]
46664
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
    42
declare INF2_D [elim]
56742
678a52e676b6 more complete classical rules for Inf and Sup, modelled after theiry counterparts on Inter and Union (and INF and SUP)
haftmann
parents: 56545
diff changeset
    43
declare Inf1_E [elim]
46664
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
    44
declare INF1_E [elim]
56742
678a52e676b6 more complete classical rules for Inf and Sup, modelled after theiry counterparts on Inter and Union (and INF and SUP)
haftmann
parents: 56545
diff changeset
    45
declare Inf2_E [elim]
46664
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
    46
declare INF2_E [elim]
56742
678a52e676b6 more complete classical rules for Inf and Sup, modelled after theiry counterparts on Inter and Union (and INF and SUP)
haftmann
parents: 56545
diff changeset
    47
declare Sup1_I [intro]
46664
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
    48
declare SUP1_I [intro]
56742
678a52e676b6 more complete classical rules for Inf and Sup, modelled after theiry counterparts on Inter and Union (and INF and SUP)
haftmann
parents: 56545
diff changeset
    49
declare Sup2_I [intro]
46664
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
    50
declare SUP2_I [intro]
56742
678a52e676b6 more complete classical rules for Inf and Sup, modelled after theiry counterparts on Inter and Union (and INF and SUP)
haftmann
parents: 56545
diff changeset
    51
declare Sup1_E [elim!]
46664
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
    52
declare SUP1_E [elim!]
56742
678a52e676b6 more complete classical rules for Inf and Sup, modelled after theiry counterparts on Inter and Union (and INF and SUP)
haftmann
parents: 56545
diff changeset
    53
declare Sup2_E [elim!]
46664
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
    54
declare SUP2_E [elim!]
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
    55
63376
4c0cc2b356f0 default one-step rules for predicates on relations;
haftmann
parents: 62343
diff changeset
    56
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60057
diff changeset
    57
subsection \<open>Fundamental\<close>
46664
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
    58
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60057
diff changeset
    59
subsubsection \<open>Relations as sets of pairs\<close>
46694
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
    60
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
    61
type_synonym 'a rel = "('a \<times> 'a) set"
46694
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
    62
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
    63
lemma subrelI: "(\<And>x y. (x, y) \<in> r \<Longrightarrow> (x, y) \<in> s) \<Longrightarrow> r \<subseteq> s"
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
    64
  \<comment> \<open>Version of @{thm [source] subsetI} for binary relations\<close>
46694
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
    65
  by auto
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
    66
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
    67
lemma lfp_induct2:
46694
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
    68
  "(a, b) \<in> lfp f \<Longrightarrow> mono f \<Longrightarrow>
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
    69
    (\<And>a b. (a, b) \<in> f (lfp f \<inter> {(x, y). P x y}) \<Longrightarrow> P a b) \<Longrightarrow> P a b"
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
    70
  \<comment> \<open>Version of @{thm [source] lfp_induct} for binary relations\<close>
55414
eab03e9cee8a renamed '{prod,sum,bool,unit}_case' to 'case_...'
blanchet
parents: 55096
diff changeset
    71
  using lfp_induct_set [of "(a, b)" f "case_prod P"] by auto
46694
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
    72
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
    73
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60057
diff changeset
    74
subsubsection \<open>Conversions between set and predicate relations\<close>
46664
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
    75
46833
85619a872ab5 tuned syntax; more candidates
haftmann
parents: 46767
diff changeset
    76
lemma pred_equals_eq [pred_set_conv]: "(\<lambda>x. x \<in> R) = (\<lambda>x. x \<in> S) \<longleftrightarrow> R = S"
46664
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
    77
  by (simp add: set_eq_iff fun_eq_iff)
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
    78
46833
85619a872ab5 tuned syntax; more candidates
haftmann
parents: 46767
diff changeset
    79
lemma pred_equals_eq2 [pred_set_conv]: "(\<lambda>x y. (x, y) \<in> R) = (\<lambda>x y. (x, y) \<in> S) \<longleftrightarrow> R = S"
46664
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
    80
  by (simp add: set_eq_iff fun_eq_iff)
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
    81
46833
85619a872ab5 tuned syntax; more candidates
haftmann
parents: 46767
diff changeset
    82
lemma pred_subset_eq [pred_set_conv]: "(\<lambda>x. x \<in> R) \<le> (\<lambda>x. x \<in> S) \<longleftrightarrow> R \<subseteq> S"
46664
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
    83
  by (simp add: subset_iff le_fun_def)
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
    84
46833
85619a872ab5 tuned syntax; more candidates
haftmann
parents: 46767
diff changeset
    85
lemma pred_subset_eq2 [pred_set_conv]: "(\<lambda>x y. (x, y) \<in> R) \<le> (\<lambda>x y. (x, y) \<in> S) \<longleftrightarrow> R \<subseteq> S"
46664
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
    86
  by (simp add: subset_iff le_fun_def)
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
    87
46883
eec472dae593 tuned pred_set_conv lemmas. Skipped lemmas changing the lemmas generated by inductive_set
noschinl
parents: 46882
diff changeset
    88
lemma bot_empty_eq [pred_set_conv]: "\<bottom> = (\<lambda>x. x \<in> {})"
46689
f559866a7aa2 marked candidates for rule declarations
haftmann
parents: 46664
diff changeset
    89
  by (auto simp add: fun_eq_iff)
f559866a7aa2 marked candidates for rule declarations
haftmann
parents: 46664
diff changeset
    90
46883
eec472dae593 tuned pred_set_conv lemmas. Skipped lemmas changing the lemmas generated by inductive_set
noschinl
parents: 46882
diff changeset
    91
lemma bot_empty_eq2 [pred_set_conv]: "\<bottom> = (\<lambda>x y. (x, y) \<in> {})"
46664
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
    92
  by (auto simp add: fun_eq_iff)
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
    93
76554
a7d9e34c85e6 removed prod_set_conv attribute from top_empty_eq and top_empty_eq2
desharna
parents: 76522
diff changeset
    94
lemma top_empty_eq: "\<top> = (\<lambda>x. x \<in> UNIV)"
46883
eec472dae593 tuned pred_set_conv lemmas. Skipped lemmas changing the lemmas generated by inductive_set
noschinl
parents: 46882
diff changeset
    95
  by (auto simp add: fun_eq_iff)
46689
f559866a7aa2 marked candidates for rule declarations
haftmann
parents: 46664
diff changeset
    96
76554
a7d9e34c85e6 removed prod_set_conv attribute from top_empty_eq and top_empty_eq2
desharna
parents: 76522
diff changeset
    97
lemma top_empty_eq2: "\<top> = (\<lambda>x y. (x, y) \<in> UNIV)"
46883
eec472dae593 tuned pred_set_conv lemmas. Skipped lemmas changing the lemmas generated by inductive_set
noschinl
parents: 46882
diff changeset
    98
  by (auto simp add: fun_eq_iff)
46664
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
    99
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
   100
lemma inf_Int_eq [pred_set_conv]: "(\<lambda>x. x \<in> R) \<sqinter> (\<lambda>x. x \<in> S) = (\<lambda>x. x \<in> R \<inter> S)"
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
   101
  by (simp add: inf_fun_def)
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
   102
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
   103
lemma inf_Int_eq2 [pred_set_conv]: "(\<lambda>x y. (x, y) \<in> R) \<sqinter> (\<lambda>x y. (x, y) \<in> S) = (\<lambda>x y. (x, y) \<in> R \<inter> S)"
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
   104
  by (simp add: inf_fun_def)
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
   105
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
   106
lemma sup_Un_eq [pred_set_conv]: "(\<lambda>x. x \<in> R) \<squnion> (\<lambda>x. x \<in> S) = (\<lambda>x. x \<in> R \<union> S)"
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
   107
  by (simp add: sup_fun_def)
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
   108
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
   109
lemma sup_Un_eq2 [pred_set_conv]: "(\<lambda>x y. (x, y) \<in> R) \<squnion> (\<lambda>x y. (x, y) \<in> S) = (\<lambda>x y. (x, y) \<in> R \<union> S)"
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
   110
  by (simp add: sup_fun_def)
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
   111
46981
d54cea5b64e4 generalized INF_INT_eq, SUP_UN_eq
haftmann
parents: 46884
diff changeset
   112
lemma INF_INT_eq [pred_set_conv]: "(\<Sqinter>i\<in>S. (\<lambda>x. x \<in> r i)) = (\<lambda>x. x \<in> (\<Inter>i\<in>S. r i))"
d54cea5b64e4 generalized INF_INT_eq, SUP_UN_eq
haftmann
parents: 46884
diff changeset
   113
  by (simp add: fun_eq_iff)
d54cea5b64e4 generalized INF_INT_eq, SUP_UN_eq
haftmann
parents: 46884
diff changeset
   114
d54cea5b64e4 generalized INF_INT_eq, SUP_UN_eq
haftmann
parents: 46884
diff changeset
   115
lemma INF_INT_eq2 [pred_set_conv]: "(\<Sqinter>i\<in>S. (\<lambda>x y. (x, y) \<in> r i)) = (\<lambda>x y. (x, y) \<in> (\<Inter>i\<in>S. r i))"
d54cea5b64e4 generalized INF_INT_eq, SUP_UN_eq
haftmann
parents: 46884
diff changeset
   116
  by (simp add: fun_eq_iff)
d54cea5b64e4 generalized INF_INT_eq, SUP_UN_eq
haftmann
parents: 46884
diff changeset
   117
d54cea5b64e4 generalized INF_INT_eq, SUP_UN_eq
haftmann
parents: 46884
diff changeset
   118
lemma SUP_UN_eq [pred_set_conv]: "(\<Squnion>i\<in>S. (\<lambda>x. x \<in> r i)) = (\<lambda>x. x \<in> (\<Union>i\<in>S. r i))"
d54cea5b64e4 generalized INF_INT_eq, SUP_UN_eq
haftmann
parents: 46884
diff changeset
   119
  by (simp add: fun_eq_iff)
d54cea5b64e4 generalized INF_INT_eq, SUP_UN_eq
haftmann
parents: 46884
diff changeset
   120
d54cea5b64e4 generalized INF_INT_eq, SUP_UN_eq
haftmann
parents: 46884
diff changeset
   121
lemma SUP_UN_eq2 [pred_set_conv]: "(\<Squnion>i\<in>S. (\<lambda>x y. (x, y) \<in> r i)) = (\<lambda>x y. (x, y) \<in> (\<Union>i\<in>S. r i))"
d54cea5b64e4 generalized INF_INT_eq, SUP_UN_eq
haftmann
parents: 46884
diff changeset
   122
  by (simp add: fun_eq_iff)
d54cea5b64e4 generalized INF_INT_eq, SUP_UN_eq
haftmann
parents: 46884
diff changeset
   123
69275
9bbd5497befd clarified status of legacy input abbreviations
haftmann
parents: 68455
diff changeset
   124
lemma Inf_INT_eq [pred_set_conv]: "\<Sqinter>S = (\<lambda>x. x \<in> (\<Inter>(Collect ` S)))"
46884
154dc6ec0041 tuned proofs
noschinl
parents: 46883
diff changeset
   125
  by (simp add: fun_eq_iff)
46833
85619a872ab5 tuned syntax; more candidates
haftmann
parents: 46767
diff changeset
   126
85619a872ab5 tuned syntax; more candidates
haftmann
parents: 46767
diff changeset
   127
lemma INF_Int_eq [pred_set_conv]: "(\<Sqinter>i\<in>S. (\<lambda>x. x \<in> i)) = (\<lambda>x. x \<in> \<Inter>S)"
46884
154dc6ec0041 tuned proofs
noschinl
parents: 46883
diff changeset
   128
  by (simp add: fun_eq_iff)
46833
85619a872ab5 tuned syntax; more candidates
haftmann
parents: 46767
diff changeset
   129
69275
9bbd5497befd clarified status of legacy input abbreviations
haftmann
parents: 68455
diff changeset
   130
lemma Inf_INT_eq2 [pred_set_conv]: "\<Sqinter>S = (\<lambda>x y. (x, y) \<in> (\<Inter>(Collect ` case_prod ` S)))"
46884
154dc6ec0041 tuned proofs
noschinl
parents: 46883
diff changeset
   131
  by (simp add: fun_eq_iff)
46833
85619a872ab5 tuned syntax; more candidates
haftmann
parents: 46767
diff changeset
   132
85619a872ab5 tuned syntax; more candidates
haftmann
parents: 46767
diff changeset
   133
lemma INF_Int_eq2 [pred_set_conv]: "(\<Sqinter>i\<in>S. (\<lambda>x y. (x, y) \<in> i)) = (\<lambda>x y. (x, y) \<in> \<Inter>S)"
46884
154dc6ec0041 tuned proofs
noschinl
parents: 46883
diff changeset
   134
  by (simp add: fun_eq_iff)
46833
85619a872ab5 tuned syntax; more candidates
haftmann
parents: 46767
diff changeset
   135
69275
9bbd5497befd clarified status of legacy input abbreviations
haftmann
parents: 68455
diff changeset
   136
lemma Sup_SUP_eq [pred_set_conv]: "\<Squnion>S = (\<lambda>x. x \<in> \<Union>(Collect ` S))"
46884
154dc6ec0041 tuned proofs
noschinl
parents: 46883
diff changeset
   137
  by (simp add: fun_eq_iff)
46833
85619a872ab5 tuned syntax; more candidates
haftmann
parents: 46767
diff changeset
   138
85619a872ab5 tuned syntax; more candidates
haftmann
parents: 46767
diff changeset
   139
lemma SUP_Sup_eq [pred_set_conv]: "(\<Squnion>i\<in>S. (\<lambda>x. x \<in> i)) = (\<lambda>x. x \<in> \<Union>S)"
46884
154dc6ec0041 tuned proofs
noschinl
parents: 46883
diff changeset
   140
  by (simp add: fun_eq_iff)
46833
85619a872ab5 tuned syntax; more candidates
haftmann
parents: 46767
diff changeset
   141
69275
9bbd5497befd clarified status of legacy input abbreviations
haftmann
parents: 68455
diff changeset
   142
lemma Sup_SUP_eq2 [pred_set_conv]: "\<Squnion>S = (\<lambda>x y. (x, y) \<in> (\<Union>(Collect ` case_prod ` S)))"
46884
154dc6ec0041 tuned proofs
noschinl
parents: 46883
diff changeset
   143
  by (simp add: fun_eq_iff)
46833
85619a872ab5 tuned syntax; more candidates
haftmann
parents: 46767
diff changeset
   144
85619a872ab5 tuned syntax; more candidates
haftmann
parents: 46767
diff changeset
   145
lemma SUP_Sup_eq2 [pred_set_conv]: "(\<Squnion>i\<in>S. (\<lambda>x y. (x, y) \<in> i)) = (\<lambda>x y. (x, y) \<in> \<Union>S)"
46884
154dc6ec0041 tuned proofs
noschinl
parents: 46883
diff changeset
   146
  by (simp add: fun_eq_iff)
46833
85619a872ab5 tuned syntax; more candidates
haftmann
parents: 46767
diff changeset
   147
63376
4c0cc2b356f0 default one-step rules for predicates on relations;
haftmann
parents: 62343
diff changeset
   148
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60057
diff changeset
   149
subsection \<open>Properties of relations\<close>
5978
fa2c2dd74f8c moved diag (diagonal relation) from Univ to Relation
paulson
parents: 5608
diff changeset
   150
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60057
diff changeset
   151
subsubsection \<open>Reflexivity\<close>
10786
04ee73606993 Field of a relation, and some Domain/Range rules
paulson
parents: 10358
diff changeset
   152
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
   153
definition refl_on :: "'a set \<Rightarrow> 'a rel \<Rightarrow> bool"
82248
e8c96013ea8a changed definition of refl_on
desharna
parents: 81134
diff changeset
   154
  where "refl_on A r \<longleftrightarrow> (\<forall>x\<in>A. (x, x) \<in> r)"
6806
43c081a0858d new preficates refl, sym [from Integ/Equiv], antisym
paulson
parents: 5978
diff changeset
   155
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
   156
abbreviation refl :: "'a rel \<Rightarrow> bool" \<comment> \<open>reflexivity over a type\<close>
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
   157
  where "refl \<equiv> refl_on UNIV"
26297
74012d599204 added lemmas
nipkow
parents: 26271
diff changeset
   158
75503
e5d88927e017 introduced predicate reflp_on and redefined reflp to be an abbreviation
desharna
parents: 75466
diff changeset
   159
definition reflp_on :: "'a set \<Rightarrow> ('a \<Rightarrow> 'a \<Rightarrow> bool) \<Rightarrow> bool"
e5d88927e017 introduced predicate reflp_on and redefined reflp to be an abbreviation
desharna
parents: 75466
diff changeset
   160
  where "reflp_on A R \<longleftrightarrow> (\<forall>x\<in>A. R x x)"
e5d88927e017 introduced predicate reflp_on and redefined reflp to be an abbreviation
desharna
parents: 75466
diff changeset
   161
e5d88927e017 introduced predicate reflp_on and redefined reflp to be an abbreviation
desharna
parents: 75466
diff changeset
   162
abbreviation reflp :: "('a \<Rightarrow> 'a \<Rightarrow> bool) \<Rightarrow> bool"
e5d88927e017 introduced predicate reflp_on and redefined reflp to be an abbreviation
desharna
parents: 75466
diff changeset
   163
  where "reflp \<equiv> reflp_on UNIV"
e5d88927e017 introduced predicate reflp_on and redefined reflp to be an abbreviation
desharna
parents: 75466
diff changeset
   164
e5d88927e017 introduced predicate reflp_on and redefined reflp to be an abbreviation
desharna
parents: 75466
diff changeset
   165
lemma reflp_def[no_atp]: "reflp R \<longleftrightarrow> (\<forall>x. R x x)"
e5d88927e017 introduced predicate reflp_on and redefined reflp to be an abbreviation
desharna
parents: 75466
diff changeset
   166
  by (simp add: reflp_on_def)
e5d88927e017 introduced predicate reflp_on and redefined reflp to be an abbreviation
desharna
parents: 75466
diff changeset
   167
e5d88927e017 introduced predicate reflp_on and redefined reflp to be an abbreviation
desharna
parents: 75466
diff changeset
   168
text \<open>@{thm [source] reflp_def} is for backward compatibility.\<close>
46694
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
   169
82270
4355a2afa7a3 added lemma reflp_on_refl_on_eq [pred_set_conv]
desharna
parents: 82248
diff changeset
   170
lemma reflp_on_refl_on_eq[pred_set_conv]: "reflp_on A (\<lambda>a b. (a, b) \<in> r) \<longleftrightarrow> refl_on A r"
4355a2afa7a3 added lemma reflp_on_refl_on_eq [pred_set_conv]
desharna
parents: 82248
diff changeset
   171
  by (simp add: refl_on_def reflp_on_def)
4355a2afa7a3 added lemma reflp_on_refl_on_eq [pred_set_conv]
desharna
parents: 82248
diff changeset
   172
4355a2afa7a3 added lemma reflp_on_refl_on_eq [pred_set_conv]
desharna
parents: 82248
diff changeset
   173
lemmas reflp_refl_eq = reflp_on_refl_on_eq[of UNIV]
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
   174
82248
e8c96013ea8a changed definition of refl_on
desharna
parents: 81134
diff changeset
   175
lemma refl_onI [intro?]: "(\<And>x. x \<in> A \<Longrightarrow> (x, x) \<in> r) \<Longrightarrow> refl_on A r"
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
   176
  unfolding refl_on_def by (iprover intro!: ballI)
46692
1f8b766224f6 tuned structure; dropped already existing syntax declarations
haftmann
parents: 46691
diff changeset
   177
76697
e19a3dbbf5de added lemmas reflI and reflD
desharna
parents: 76693
diff changeset
   178
lemma reflI: "(\<And>x. (x, x) \<in> r) \<Longrightarrow> refl r"
e19a3dbbf5de added lemmas reflI and reflD
desharna
parents: 76693
diff changeset
   179
  by (auto intro: refl_onI)
e19a3dbbf5de added lemmas reflI and reflD
desharna
parents: 76693
diff changeset
   180
75503
e5d88927e017 introduced predicate reflp_on and redefined reflp to be an abbreviation
desharna
parents: 75466
diff changeset
   181
lemma reflp_onI:
76256
207b6fcfc47d removed unused universal variable from lemma reflp_onI
desharna
parents: 76255
diff changeset
   182
  "(\<And>x. x \<in> A \<Longrightarrow> R x x) \<Longrightarrow> reflp_on A R"
75503
e5d88927e017 introduced predicate reflp_on and redefined reflp to be an abbreviation
desharna
parents: 75466
diff changeset
   183
  by (simp add: reflp_on_def)
e5d88927e017 introduced predicate reflp_on and redefined reflp to be an abbreviation
desharna
parents: 75466
diff changeset
   184
e5d88927e017 introduced predicate reflp_on and redefined reflp to be an abbreviation
desharna
parents: 75466
diff changeset
   185
lemma reflpI[intro?]: "(\<And>x. R x x) \<Longrightarrow> reflp R"
e5d88927e017 introduced predicate reflp_on and redefined reflp to be an abbreviation
desharna
parents: 75466
diff changeset
   186
  by (rule reflp_onI)
e5d88927e017 introduced predicate reflp_on and redefined reflp to be an abbreviation
desharna
parents: 75466
diff changeset
   187
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
   188
lemma refl_onD: "refl_on A r \<Longrightarrow> a \<in> A \<Longrightarrow> (a, a) \<in> r"
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
   189
  unfolding refl_on_def by blast
46692
1f8b766224f6 tuned structure; dropped already existing syntax declarations
haftmann
parents: 46691
diff changeset
   190
76697
e19a3dbbf5de added lemmas reflI and reflD
desharna
parents: 76693
diff changeset
   191
lemma reflD: "refl r \<Longrightarrow> (a, a) \<in> r"
e19a3dbbf5de added lemmas reflI and reflD
desharna
parents: 76693
diff changeset
   192
  unfolding refl_on_def by blast
e19a3dbbf5de added lemmas reflI and reflD
desharna
parents: 76693
diff changeset
   193
75503
e5d88927e017 introduced predicate reflp_on and redefined reflp to be an abbreviation
desharna
parents: 75466
diff changeset
   194
lemma reflp_onD:
e5d88927e017 introduced predicate reflp_on and redefined reflp to be an abbreviation
desharna
parents: 75466
diff changeset
   195
  "reflp_on A R \<Longrightarrow> x \<in> A \<Longrightarrow> R x x"
e5d88927e017 introduced predicate reflp_on and redefined reflp to be an abbreviation
desharna
parents: 75466
diff changeset
   196
  by (simp add: reflp_on_def)
e5d88927e017 introduced predicate reflp_on and redefined reflp to be an abbreviation
desharna
parents: 75466
diff changeset
   197
e5d88927e017 introduced predicate reflp_on and redefined reflp to be an abbreviation
desharna
parents: 75466
diff changeset
   198
lemma reflpD[dest?]: "reflp R \<Longrightarrow> R x x"
e5d88927e017 introduced predicate reflp_on and redefined reflp to be an abbreviation
desharna
parents: 75466
diff changeset
   199
  by (simp add: reflp_onD)
46694
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
   200
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
   201
lemma reflpE:
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
   202
  assumes "reflp r"
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
   203
  obtains "r x x"
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
   204
  using assms by (auto dest: refl_onD simp add: reflp_def)
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
   205
82297
d10a49b7b620 added lemmas, refl_on_top[simp], reflp_on_top[simp], sym_on_top[simp], symp_on_top[simp], trans_on_top[simp], transp_on_top[simp], total_on_top[simp], totalp_on_top[simp]
desharna
parents: 82295
diff changeset
   206
lemma refl_on_top[simp]: "refl_on A \<top>"
d10a49b7b620 added lemmas, refl_on_top[simp], reflp_on_top[simp], sym_on_top[simp], symp_on_top[simp], trans_on_top[simp], transp_on_top[simp], total_on_top[simp], totalp_on_top[simp]
desharna
parents: 82295
diff changeset
   207
  by (simp add: refl_on_def)
d10a49b7b620 added lemmas, refl_on_top[simp], reflp_on_top[simp], sym_on_top[simp], symp_on_top[simp], trans_on_top[simp], transp_on_top[simp], total_on_top[simp], totalp_on_top[simp]
desharna
parents: 82295
diff changeset
   208
d10a49b7b620 added lemmas, refl_on_top[simp], reflp_on_top[simp], sym_on_top[simp], symp_on_top[simp], trans_on_top[simp], transp_on_top[simp], total_on_top[simp], totalp_on_top[simp]
desharna
parents: 82295
diff changeset
   209
lemma reflp_on_top[simp]: "reflp_on A \<top>"
d10a49b7b620 added lemmas, refl_on_top[simp], reflp_on_top[simp], sym_on_top[simp], symp_on_top[simp], trans_on_top[simp], transp_on_top[simp], total_on_top[simp], totalp_on_top[simp]
desharna
parents: 82295
diff changeset
   210
  by (simp add: reflp_on_def)
d10a49b7b620 added lemmas, refl_on_top[simp], reflp_on_top[simp], sym_on_top[simp], symp_on_top[simp], trans_on_top[simp], transp_on_top[simp], total_on_top[simp], totalp_on_top[simp]
desharna
parents: 82295
diff changeset
   211
82332
df714fc6c6bb moved lemmas around
desharna
parents: 82331
diff changeset
   212
lemma reflp_on_mono_strong:
df714fc6c6bb moved lemmas around
desharna
parents: 82331
diff changeset
   213
  "reflp_on B R \<Longrightarrow> A \<subseteq> B \<Longrightarrow> (\<And>x y. x \<in> A \<Longrightarrow> y \<in> A \<Longrightarrow> R x y \<Longrightarrow> Q x y) \<Longrightarrow> reflp_on A Q"
df714fc6c6bb moved lemmas around
desharna
parents: 82331
diff changeset
   214
  by (rule reflp_onI) (auto dest: reflp_onD)
df714fc6c6bb moved lemmas around
desharna
parents: 82331
diff changeset
   215
df714fc6c6bb moved lemmas around
desharna
parents: 82331
diff changeset
   216
lemma reflp_on_mono[mono]: "A \<subseteq> B \<Longrightarrow> R \<le> Q \<Longrightarrow> reflp_on B R \<le> reflp_on A Q"
df714fc6c6bb moved lemmas around
desharna
parents: 82331
diff changeset
   217
  by (simp add: reflp_on_mono_strong le_fun_def)
df714fc6c6bb moved lemmas around
desharna
parents: 82331
diff changeset
   218
82334
fce6872bd4d2 tuned variable names
desharna
parents: 82333
diff changeset
   219
lemma reflp_on_subset: "reflp_on B R \<Longrightarrow> A \<subseteq> B \<Longrightarrow> reflp_on A R"
82333
06c1c163b66c tuned proof
desharna
parents: 82332
diff changeset
   220
  using reflp_on_mono_strong .
75504
75e1b94396c6 added lemmas reflp_on_subset, totalp_on_subset, and total_on_subset
desharna
parents: 75503
diff changeset
   221
79905
1f509d01c9e3 added lemmas antisymp_on_image, asymp_on_image, irreflp_on_image, reflp_on_image, symp_on_image, totalp_on_image, and transp_on_image
desharna
parents: 77695
diff changeset
   222
lemma reflp_on_image: "reflp_on (f ` A) R \<longleftrightarrow> reflp_on A (\<lambda>a b. R (f a) (f b))"
1f509d01c9e3 added lemmas antisymp_on_image, asymp_on_image, irreflp_on_image, reflp_on_image, symp_on_image, totalp_on_image, and transp_on_image
desharna
parents: 77695
diff changeset
   223
  by (simp add: reflp_on_def)
1f509d01c9e3 added lemmas antisymp_on_image, asymp_on_image, irreflp_on_image, reflp_on_image, symp_on_image, totalp_on_image, and transp_on_image
desharna
parents: 77695
diff changeset
   224
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
   225
lemma refl_on_Int: "refl_on A r \<Longrightarrow> refl_on B s \<Longrightarrow> refl_on (A \<inter> B) (r \<inter> s)"
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
   226
  unfolding refl_on_def by blast
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
   227
75530
6bd264ff410f added lemmas reflp_on_inf, reflp_on_sup, and reflp_on_mono
desharna
parents: 75504
diff changeset
   228
lemma reflp_on_inf: "reflp_on A R \<Longrightarrow> reflp_on B S \<Longrightarrow> reflp_on (A \<inter> B) (R \<sqinter> S)"
6bd264ff410f added lemmas reflp_on_inf, reflp_on_sup, and reflp_on_mono
desharna
parents: 75504
diff changeset
   229
  by (auto intro: reflp_onI dest: reflp_onD)
6bd264ff410f added lemmas reflp_on_inf, reflp_on_sup, and reflp_on_mono
desharna
parents: 75504
diff changeset
   230
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
   231
lemma reflp_inf: "reflp r \<Longrightarrow> reflp s \<Longrightarrow> reflp (r \<sqinter> s)"
75530
6bd264ff410f added lemmas reflp_on_inf, reflp_on_sup, and reflp_on_mono
desharna
parents: 75504
diff changeset
   232
  by (rule reflp_on_inf[of UNIV _ UNIV, unfolded Int_absorb])
46692
1f8b766224f6 tuned structure; dropped already existing syntax declarations
haftmann
parents: 46691
diff changeset
   233
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
   234
lemma refl_on_Un: "refl_on A r \<Longrightarrow> refl_on B s \<Longrightarrow> refl_on (A \<union> B) (r \<union> s)"
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
   235
  unfolding refl_on_def by blast
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
   236
75530
6bd264ff410f added lemmas reflp_on_inf, reflp_on_sup, and reflp_on_mono
desharna
parents: 75504
diff changeset
   237
lemma reflp_on_sup: "reflp_on A R \<Longrightarrow> reflp_on B S \<Longrightarrow> reflp_on (A \<union> B) (R \<squnion> S)"
6bd264ff410f added lemmas reflp_on_inf, reflp_on_sup, and reflp_on_mono
desharna
parents: 75504
diff changeset
   238
  by (auto intro: reflp_onI dest: reflp_onD)
6bd264ff410f added lemmas reflp_on_inf, reflp_on_sup, and reflp_on_mono
desharna
parents: 75504
diff changeset
   239
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
   240
lemma reflp_sup: "reflp r \<Longrightarrow> reflp s \<Longrightarrow> reflp (r \<squnion> s)"
75530
6bd264ff410f added lemmas reflp_on_inf, reflp_on_sup, and reflp_on_mono
desharna
parents: 75504
diff changeset
   241
  by (rule reflp_on_sup[of UNIV _ UNIV, unfolded Un_absorb])
46692
1f8b766224f6 tuned structure; dropped already existing syntax declarations
haftmann
parents: 46691
diff changeset
   242
69275
9bbd5497befd clarified status of legacy input abbreviations
haftmann
parents: 68455
diff changeset
   243
lemma refl_on_INTER: "\<forall>x\<in>S. refl_on (A x) (r x) \<Longrightarrow> refl_on (\<Inter>(A ` S)) (\<Inter>(r ` S))"
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
   244
  unfolding refl_on_def by fast
46692
1f8b766224f6 tuned structure; dropped already existing syntax declarations
haftmann
parents: 46691
diff changeset
   245
75532
f0dfcd8329d0 added lemmas reflp_on_Inf and reflp_on_Sup
desharna
parents: 75531
diff changeset
   246
lemma reflp_on_Inf: "\<forall>x\<in>S. reflp_on (A x) (R x) \<Longrightarrow> reflp_on (\<Inter>(A ` S)) (\<Sqinter>(R ` S))"
f0dfcd8329d0 added lemmas reflp_on_Inf and reflp_on_Sup
desharna
parents: 75531
diff changeset
   247
  by (auto intro: reflp_onI dest: reflp_onD)
f0dfcd8329d0 added lemmas reflp_on_Inf and reflp_on_Sup
desharna
parents: 75531
diff changeset
   248
69275
9bbd5497befd clarified status of legacy input abbreviations
haftmann
parents: 68455
diff changeset
   249
lemma refl_on_UNION: "\<forall>x\<in>S. refl_on (A x) (r x) \<Longrightarrow> refl_on (\<Union>(A ` S)) (\<Union>(r ` S))"
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
   250
  unfolding refl_on_def by blast
46692
1f8b766224f6 tuned structure; dropped already existing syntax declarations
haftmann
parents: 46691
diff changeset
   251
75532
f0dfcd8329d0 added lemmas reflp_on_Inf and reflp_on_Sup
desharna
parents: 75531
diff changeset
   252
lemma reflp_on_Sup: "\<forall>x\<in>S. reflp_on (A x) (R x) \<Longrightarrow> reflp_on (\<Union>(A ` S)) (\<Squnion>(R ` S))"
f0dfcd8329d0 added lemmas reflp_on_Inf and reflp_on_Sup
desharna
parents: 75531
diff changeset
   253
  by (auto intro: reflp_onI dest: reflp_onD)
f0dfcd8329d0 added lemmas reflp_on_Inf and reflp_on_Sup
desharna
parents: 75531
diff changeset
   254
82271
f7e08143eea2 strengthened lemma refl_on_empty[simp]
desharna
parents: 82270
diff changeset
   255
lemma refl_on_empty [simp]: "refl_on {} r"
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
   256
  by (simp add: refl_on_def)
46692
1f8b766224f6 tuned structure; dropped already existing syntax declarations
haftmann
parents: 46691
diff changeset
   257
75540
02719bd7b4e6 added lemma reflp_on_empty[simp] and totalp_on_empty[simp]
desharna
parents: 75532
diff changeset
   258
lemma reflp_on_empty [simp]: "reflp_on {} R"
02719bd7b4e6 added lemma reflp_on_empty[simp] and totalp_on_empty[simp]
desharna
parents: 75532
diff changeset
   259
  by (auto intro: reflp_onI)
02719bd7b4e6 added lemma reflp_on_empty[simp] and totalp_on_empty[simp]
desharna
parents: 75532
diff changeset
   260
63563
0bcd79da075b prefer [simp] over [iff] as [iff] break HOL-UNITY
Andreas Lochbihler
parents: 63561
diff changeset
   261
lemma refl_on_singleton [simp]: "refl_on {x} {(x, x)}"
63561
fba08009ff3e add lemmas contributed by Peter Gammie
Andreas Lochbihler
parents: 63404
diff changeset
   262
by (blast intro: refl_onI)
fba08009ff3e add lemmas contributed by Peter Gammie
Andreas Lochbihler
parents: 63404
diff changeset
   263
76522
3fc92362fbb5 strengthened and renamed lemma reflp_on_equality
desharna
parents: 76521
diff changeset
   264
lemma reflp_on_equality [simp]: "reflp_on A (=)"
3fc92362fbb5 strengthened and renamed lemma reflp_on_equality
desharna
parents: 76521
diff changeset
   265
  by (simp add: reflp_on_def)
46692
1f8b766224f6 tuned structure; dropped already existing syntax declarations
haftmann
parents: 46691
diff changeset
   266
76521
15f868460de9 renamed lemmas linorder.totalp_on_(ge|greater|le|less) and preorder.reflp_(ge|le)
desharna
parents: 76499
diff changeset
   267
lemma (in preorder) reflp_on_le[simp]: "reflp_on A (\<le>)"
76286
a00c80314b06 strengthened lemmas preorder.reflp_ge[simp] and preorder.reflp_le[simp]
desharna
parents: 76285
diff changeset
   268
  by (simp add: reflp_onI)
76257
61a5b5ad3a6e added lemmas reflp_ge[simp] and reflp_le[simp]
desharna
parents: 76256
diff changeset
   269
76521
15f868460de9 renamed lemmas linorder.totalp_on_(ge|greater|le|less) and preorder.reflp_(ge|le)
desharna
parents: 76499
diff changeset
   270
lemma (in preorder) reflp_on_ge[simp]: "reflp_on A (\<ge>)"
76286
a00c80314b06 strengthened lemmas preorder.reflp_ge[simp] and preorder.reflp_le[simp]
desharna
parents: 76285
diff changeset
   271
  by (simp add: reflp_onI)
76257
61a5b5ad3a6e added lemmas reflp_ge[simp] and reflp_le[simp]
desharna
parents: 76256
diff changeset
   272
63376
4c0cc2b356f0 default one-step rules for predicates on relations;
haftmann
parents: 62343
diff changeset
   273
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60057
diff changeset
   274
subsubsection \<open>Irreflexivity\<close>
6806
43c081a0858d new preficates refl, sym [from Integ/Equiv], antisym
paulson
parents: 5978
diff changeset
   275
76559
4352d0ff165a introduced predicates irrefl_on and irreflp_on, and redefined irrefl and irreflp as abbreviations
desharna
parents: 76554
diff changeset
   276
definition irrefl_on :: "'a set \<Rightarrow> 'a rel \<Rightarrow> bool" where
4352d0ff165a introduced predicates irrefl_on and irreflp_on, and redefined irrefl and irreflp as abbreviations
desharna
parents: 76554
diff changeset
   277
  "irrefl_on A r \<longleftrightarrow> (\<forall>a \<in> A. (a, a) \<notin> r)"
4352d0ff165a introduced predicates irrefl_on and irreflp_on, and redefined irrefl and irreflp as abbreviations
desharna
parents: 76554
diff changeset
   278
4352d0ff165a introduced predicates irrefl_on and irreflp_on, and redefined irrefl and irreflp as abbreviations
desharna
parents: 76554
diff changeset
   279
abbreviation irrefl :: "'a rel \<Rightarrow> bool" where
4352d0ff165a introduced predicates irrefl_on and irreflp_on, and redefined irrefl and irreflp as abbreviations
desharna
parents: 76554
diff changeset
   280
  "irrefl \<equiv> irrefl_on UNIV"
4352d0ff165a introduced predicates irrefl_on and irreflp_on, and redefined irrefl and irreflp as abbreviations
desharna
parents: 76554
diff changeset
   281
4352d0ff165a introduced predicates irrefl_on and irreflp_on, and redefined irrefl and irreflp as abbreviations
desharna
parents: 76554
diff changeset
   282
definition irreflp_on :: "'a set \<Rightarrow> ('a \<Rightarrow> 'a \<Rightarrow> bool) \<Rightarrow> bool" where
4352d0ff165a introduced predicates irrefl_on and irreflp_on, and redefined irrefl and irreflp as abbreviations
desharna
parents: 76554
diff changeset
   283
  "irreflp_on A R \<longleftrightarrow> (\<forall>a \<in> A. \<not> R a a)"
56545
8f1e7596deb7 more operations and lemmas
haftmann
parents: 56218
diff changeset
   284
76559
4352d0ff165a introduced predicates irrefl_on and irreflp_on, and redefined irrefl and irreflp as abbreviations
desharna
parents: 76554
diff changeset
   285
abbreviation irreflp :: "('a \<Rightarrow> 'a \<Rightarrow> bool) \<Rightarrow> bool" where
4352d0ff165a introduced predicates irrefl_on and irreflp_on, and redefined irrefl and irreflp as abbreviations
desharna
parents: 76554
diff changeset
   286
  "irreflp \<equiv> irreflp_on UNIV"
4352d0ff165a introduced predicates irrefl_on and irreflp_on, and redefined irrefl and irreflp as abbreviations
desharna
parents: 76554
diff changeset
   287
4352d0ff165a introduced predicates irrefl_on and irreflp_on, and redefined irrefl and irreflp as abbreviations
desharna
parents: 76554
diff changeset
   288
lemma irrefl_def[no_atp]: "irrefl r \<longleftrightarrow> (\<forall>a. (a, a) \<notin> r)"
4352d0ff165a introduced predicates irrefl_on and irreflp_on, and redefined irrefl and irreflp as abbreviations
desharna
parents: 76554
diff changeset
   289
  by (simp add: irrefl_on_def)
4352d0ff165a introduced predicates irrefl_on and irreflp_on, and redefined irrefl and irreflp as abbreviations
desharna
parents: 76554
diff changeset
   290
4352d0ff165a introduced predicates irrefl_on and irreflp_on, and redefined irrefl and irreflp as abbreviations
desharna
parents: 76554
diff changeset
   291
lemma irreflp_def[no_atp]: "irreflp R \<longleftrightarrow> (\<forall>a. \<not> R a a)"
4352d0ff165a introduced predicates irrefl_on and irreflp_on, and redefined irrefl and irreflp as abbreviations
desharna
parents: 76554
diff changeset
   292
  by (simp add: irreflp_on_def)
4352d0ff165a introduced predicates irrefl_on and irreflp_on, and redefined irrefl and irreflp as abbreviations
desharna
parents: 76554
diff changeset
   293
4352d0ff165a introduced predicates irrefl_on and irreflp_on, and redefined irrefl and irreflp as abbreviations
desharna
parents: 76554
diff changeset
   294
text \<open>@{thm [source] irrefl_def} and @{thm [source] irreflp_def} are for backward compatibility.\<close>
56545
8f1e7596deb7 more operations and lemmas
haftmann
parents: 56218
diff changeset
   295
76559
4352d0ff165a introduced predicates irrefl_on and irreflp_on, and redefined irrefl and irreflp as abbreviations
desharna
parents: 76554
diff changeset
   296
lemma irreflp_on_irrefl_on_eq [pred_set_conv]: "irreflp_on A (\<lambda>a b. (a, b) \<in> r) \<longleftrightarrow> irrefl_on A r"
4352d0ff165a introduced predicates irrefl_on and irreflp_on, and redefined irrefl and irreflp as abbreviations
desharna
parents: 76554
diff changeset
   297
  by (simp add: irrefl_on_def irreflp_on_def)
4352d0ff165a introduced predicates irrefl_on and irreflp_on, and redefined irrefl and irreflp as abbreviations
desharna
parents: 76554
diff changeset
   298
4352d0ff165a introduced predicates irrefl_on and irreflp_on, and redefined irrefl and irreflp as abbreviations
desharna
parents: 76554
diff changeset
   299
lemmas irreflp_irrefl_eq = irreflp_on_irrefl_on_eq[of UNIV]
4352d0ff165a introduced predicates irrefl_on and irreflp_on, and redefined irrefl and irreflp as abbreviations
desharna
parents: 76554
diff changeset
   300
4352d0ff165a introduced predicates irrefl_on and irreflp_on, and redefined irrefl and irreflp as abbreviations
desharna
parents: 76554
diff changeset
   301
lemma irrefl_onI: "(\<And>a. a \<in> A \<Longrightarrow> (a, a) \<notin> r) \<Longrightarrow> irrefl_on A r"
4352d0ff165a introduced predicates irrefl_on and irreflp_on, and redefined irrefl and irreflp as abbreviations
desharna
parents: 76554
diff changeset
   302
  by (simp add: irrefl_on_def)
56545
8f1e7596deb7 more operations and lemmas
haftmann
parents: 56218
diff changeset
   303
76559
4352d0ff165a introduced predicates irrefl_on and irreflp_on, and redefined irrefl and irreflp as abbreviations
desharna
parents: 76554
diff changeset
   304
lemma irreflI[intro?]: "(\<And>a. (a, a) \<notin> r) \<Longrightarrow> irrefl r"
4352d0ff165a introduced predicates irrefl_on and irreflp_on, and redefined irrefl and irreflp as abbreviations
desharna
parents: 76554
diff changeset
   305
  by (rule irrefl_onI[of UNIV, simplified])
4352d0ff165a introduced predicates irrefl_on and irreflp_on, and redefined irrefl and irreflp as abbreviations
desharna
parents: 76554
diff changeset
   306
4352d0ff165a introduced predicates irrefl_on and irreflp_on, and redefined irrefl and irreflp as abbreviations
desharna
parents: 76554
diff changeset
   307
lemma irreflp_onI: "(\<And>a. a \<in> A \<Longrightarrow> \<not> R a a) \<Longrightarrow> irreflp_on A R"
76588
82a36e3d1b55 rewrite proofs using to_pred attribute on existing lemmas
desharna
parents: 76574
diff changeset
   308
  by (rule irrefl_onI[to_pred])
56545
8f1e7596deb7 more operations and lemmas
haftmann
parents: 56218
diff changeset
   309
76559
4352d0ff165a introduced predicates irrefl_on and irreflp_on, and redefined irrefl and irreflp as abbreviations
desharna
parents: 76554
diff changeset
   310
lemma irreflpI[intro?]: "(\<And>a. \<not> R a a) \<Longrightarrow> irreflp R"
76588
82a36e3d1b55 rewrite proofs using to_pred attribute on existing lemmas
desharna
parents: 76574
diff changeset
   311
  by (rule irreflI[to_pred])
76559
4352d0ff165a introduced predicates irrefl_on and irreflp_on, and redefined irrefl and irreflp as abbreviations
desharna
parents: 76554
diff changeset
   312
4352d0ff165a introduced predicates irrefl_on and irreflp_on, and redefined irrefl and irreflp as abbreviations
desharna
parents: 76554
diff changeset
   313
lemma irrefl_onD: "irrefl_on A r \<Longrightarrow> a \<in> A \<Longrightarrow> (a, a) \<notin> r"
4352d0ff165a introduced predicates irrefl_on and irreflp_on, and redefined irrefl and irreflp as abbreviations
desharna
parents: 76554
diff changeset
   314
  by (simp add: irrefl_on_def)
46692
1f8b766224f6 tuned structure; dropped already existing syntax declarations
haftmann
parents: 46691
diff changeset
   315
76255
b3ff4f171eda added lemmas irreflD and irreflpD
desharna
parents: 76254
diff changeset
   316
lemma irreflD: "irrefl r \<Longrightarrow> (x, x) \<notin> r"
76559
4352d0ff165a introduced predicates irrefl_on and irreflp_on, and redefined irrefl and irreflp as abbreviations
desharna
parents: 76554
diff changeset
   317
  by (rule irrefl_onD[of UNIV, simplified])
4352d0ff165a introduced predicates irrefl_on and irreflp_on, and redefined irrefl and irreflp as abbreviations
desharna
parents: 76554
diff changeset
   318
4352d0ff165a introduced predicates irrefl_on and irreflp_on, and redefined irrefl and irreflp as abbreviations
desharna
parents: 76554
diff changeset
   319
lemma irreflp_onD: "irreflp_on A R \<Longrightarrow> a \<in> A \<Longrightarrow> \<not> R a a"
76588
82a36e3d1b55 rewrite proofs using to_pred attribute on existing lemmas
desharna
parents: 76574
diff changeset
   320
  by (rule irrefl_onD[to_pred])
76255
b3ff4f171eda added lemmas irreflD and irreflpD
desharna
parents: 76254
diff changeset
   321
b3ff4f171eda added lemmas irreflD and irreflpD
desharna
parents: 76254
diff changeset
   322
lemma irreflpD: "irreflp R \<Longrightarrow> \<not> R x x"
76588
82a36e3d1b55 rewrite proofs using to_pred attribute on existing lemmas
desharna
parents: 76574
diff changeset
   323
  by (rule irreflD[to_pred])
76255
b3ff4f171eda added lemmas irreflD and irreflpD
desharna
parents: 76254
diff changeset
   324
82294
b36353e62b90 added lemmas antisym_on_bot[simp], asym_on_bot[simp], irrefl_on_bot[simp], sym_on_bot[simp], trans_on_bot[simp]
desharna
parents: 82287
diff changeset
   325
lemma irrefl_on_bot[simp]: "irrefl_on A \<bottom>"
b36353e62b90 added lemmas antisym_on_bot[simp], asym_on_bot[simp], irrefl_on_bot[simp], sym_on_bot[simp], trans_on_bot[simp]
desharna
parents: 82287
diff changeset
   326
  by (simp add: irrefl_on_def)
b36353e62b90 added lemmas antisym_on_bot[simp], asym_on_bot[simp], irrefl_on_bot[simp], sym_on_bot[simp], trans_on_bot[simp]
desharna
parents: 82287
diff changeset
   327
82287
6ace531790b4 added lemmas, antisymp_on_bot[simp], asymp_on_bot[simp], irreflp_on_bot[simp], left_unique_bot[simp], symp_on_bot[simp], transp_on_bot[simp]
desharna
parents: 82286
diff changeset
   328
lemma irreflp_on_bot[simp]: "irreflp_on A \<bottom>"
82294
b36353e62b90 added lemmas antisym_on_bot[simp], asym_on_bot[simp], irrefl_on_bot[simp], sym_on_bot[simp], trans_on_bot[simp]
desharna
parents: 82287
diff changeset
   329
  using irrefl_on_bot[to_pred] .
82287
6ace531790b4 added lemmas, antisymp_on_bot[simp], asymp_on_bot[simp], irreflp_on_bot[simp], left_unique_bot[simp], symp_on_bot[simp], transp_on_bot[simp]
desharna
parents: 82286
diff changeset
   330
76559
4352d0ff165a introduced predicates irrefl_on and irreflp_on, and redefined irrefl and irreflp as abbreviations
desharna
parents: 76554
diff changeset
   331
lemma irrefl_on_distinct [code]: "irrefl_on A r \<longleftrightarrow> (\<forall>(a, b) \<in> r. a \<in> A \<longrightarrow> b \<in> A \<longrightarrow> a \<noteq> b)"
4352d0ff165a introduced predicates irrefl_on and irreflp_on, and redefined irrefl and irreflp as abbreviations
desharna
parents: 76554
diff changeset
   332
  by (auto simp add: irrefl_on_def)
4352d0ff165a introduced predicates irrefl_on and irreflp_on, and redefined irrefl and irreflp as abbreviations
desharna
parents: 76554
diff changeset
   333
4352d0ff165a introduced predicates irrefl_on and irreflp_on, and redefined irrefl and irreflp as abbreviations
desharna
parents: 76554
diff changeset
   334
lemmas irrefl_distinct = irrefl_on_distinct \<comment> \<open>For backward compatibility\<close>
46692
1f8b766224f6 tuned structure; dropped already existing syntax declarations
haftmann
parents: 46691
diff changeset
   335
82335
3bdfdadf3a52 added lemmas irreflp_on_mono_strong and irreflp_on_mono[mono]
desharna
parents: 82334
diff changeset
   336
lemma irreflp_on_mono_strong:
3bdfdadf3a52 added lemmas irreflp_on_mono_strong and irreflp_on_mono[mono]
desharna
parents: 82334
diff changeset
   337
  "irreflp_on B Q \<Longrightarrow> A \<subseteq> B \<Longrightarrow> (\<And>x y. x \<in> A \<Longrightarrow> y \<in> A \<Longrightarrow> R x y \<Longrightarrow> Q x y) \<Longrightarrow> irreflp_on A R"
3bdfdadf3a52 added lemmas irreflp_on_mono_strong and irreflp_on_mono[mono]
desharna
parents: 82334
diff changeset
   338
  by (rule irreflp_onI) (auto dest: irreflp_onD)
3bdfdadf3a52 added lemmas irreflp_on_mono_strong and irreflp_on_mono[mono]
desharna
parents: 82334
diff changeset
   339
3bdfdadf3a52 added lemmas irreflp_on_mono_strong and irreflp_on_mono[mono]
desharna
parents: 82334
diff changeset
   340
lemma irreflp_on_mono[mono]: "A \<subseteq> B \<Longrightarrow> R \<le> Q \<Longrightarrow> irreflp_on B Q \<le> irreflp_on A R"
3bdfdadf3a52 added lemmas irreflp_on_mono_strong and irreflp_on_mono[mono]
desharna
parents: 82334
diff changeset
   341
  by (simp add: irreflp_on_mono_strong le_fun_def)
3bdfdadf3a52 added lemmas irreflp_on_mono_strong and irreflp_on_mono[mono]
desharna
parents: 82334
diff changeset
   342
82339
53f3e72020b9 tuned variable names such that A \<subseteq> B
desharna
parents: 82337
diff changeset
   343
lemma irrefl_on_subset: "irrefl_on B r \<Longrightarrow> A \<subseteq> B \<Longrightarrow> irrefl_on A r"
76560
df6ba3cf7874 added lemmas irrefl_on_subset and irreflp_on_subset
desharna
parents: 76559
diff changeset
   344
  by (auto simp: irrefl_on_def)
df6ba3cf7874 added lemmas irrefl_on_subset and irreflp_on_subset
desharna
parents: 76559
diff changeset
   345
82339
53f3e72020b9 tuned variable names such that A \<subseteq> B
desharna
parents: 82337
diff changeset
   346
lemma irreflp_on_subset: "irreflp_on B R \<Longrightarrow> A \<subseteq> B \<Longrightarrow> irreflp_on A R"
82335
3bdfdadf3a52 added lemmas irreflp_on_mono_strong and irreflp_on_mono[mono]
desharna
parents: 82334
diff changeset
   347
  using irreflp_on_mono_strong .
76560
df6ba3cf7874 added lemmas irrefl_on_subset and irreflp_on_subset
desharna
parents: 76559
diff changeset
   348
79905
1f509d01c9e3 added lemmas antisymp_on_image, asymp_on_image, irreflp_on_image, reflp_on_image, symp_on_image, totalp_on_image, and transp_on_image
desharna
parents: 77695
diff changeset
   349
lemma irreflp_on_image: "irreflp_on (f ` A) R \<longleftrightarrow> irreflp_on A (\<lambda>a b. R (f a) (f b))"
1f509d01c9e3 added lemmas antisymp_on_image, asymp_on_image, irreflp_on_image, reflp_on_image, symp_on_image, totalp_on_image, and transp_on_image
desharna
parents: 77695
diff changeset
   350
  by (simp add: irreflp_on_def)
1f509d01c9e3 added lemmas antisymp_on_image, asymp_on_image, irreflp_on_image, reflp_on_image, symp_on_image, totalp_on_image, and transp_on_image
desharna
parents: 77695
diff changeset
   351
76570
608489919ecf strengthened and renamed irreflp_greater[simp] and irreflp_less[simp]
desharna
parents: 76560
diff changeset
   352
lemma (in preorder) irreflp_on_less[simp]: "irreflp_on A (<)"
608489919ecf strengthened and renamed irreflp_greater[simp] and irreflp_less[simp]
desharna
parents: 76560
diff changeset
   353
  by (simp add: irreflp_onI)
74865
b5031a8f7718 added lemmas irreflp_{less,greater} to preorder and {trans,irrefl}_mult{,p} to Multiset
desharna
parents: 74806
diff changeset
   354
76570
608489919ecf strengthened and renamed irreflp_greater[simp] and irreflp_less[simp]
desharna
parents: 76560
diff changeset
   355
lemma (in preorder) irreflp_on_greater[simp]: "irreflp_on A (>)"
608489919ecf strengthened and renamed irreflp_greater[simp] and irreflp_less[simp]
desharna
parents: 76560
diff changeset
   356
  by (simp add: irreflp_onI)
46692
1f8b766224f6 tuned structure; dropped already existing syntax declarations
haftmann
parents: 46691
diff changeset
   357
76682
e260dabc88e6 added predicates asym_on and asymp_on and redefined asym and asymp to be abbreviations
desharna
parents: 76648
diff changeset
   358
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60057
diff changeset
   359
subsubsection \<open>Asymmetry\<close>
56545
8f1e7596deb7 more operations and lemmas
haftmann
parents: 56218
diff changeset
   360
76682
e260dabc88e6 added predicates asym_on and asymp_on and redefined asym and asymp to be abbreviations
desharna
parents: 76648
diff changeset
   361
definition asym_on :: "'a set \<Rightarrow> 'a rel \<Rightarrow> bool" where
e260dabc88e6 added predicates asym_on and asymp_on and redefined asym and asymp to be abbreviations
desharna
parents: 76648
diff changeset
   362
  "asym_on A r \<longleftrightarrow> (\<forall>x \<in> A. \<forall>y \<in> A. (x, y) \<in> r \<longrightarrow> (y, x) \<notin> r)"
e260dabc88e6 added predicates asym_on and asymp_on and redefined asym and asymp to be abbreviations
desharna
parents: 76648
diff changeset
   363
e260dabc88e6 added predicates asym_on and asymp_on and redefined asym and asymp to be abbreviations
desharna
parents: 76648
diff changeset
   364
abbreviation asym :: "'a rel \<Rightarrow> bool" where
e260dabc88e6 added predicates asym_on and asymp_on and redefined asym and asymp to be abbreviations
desharna
parents: 76648
diff changeset
   365
  "asym \<equiv> asym_on UNIV"
e260dabc88e6 added predicates asym_on and asymp_on and redefined asym and asymp to be abbreviations
desharna
parents: 76648
diff changeset
   366
e260dabc88e6 added predicates asym_on and asymp_on and redefined asym and asymp to be abbreviations
desharna
parents: 76648
diff changeset
   367
definition asymp_on :: "'a set \<Rightarrow> ('a \<Rightarrow> 'a \<Rightarrow> bool) \<Rightarrow> bool" where
e260dabc88e6 added predicates asym_on and asymp_on and redefined asym and asymp to be abbreviations
desharna
parents: 76648
diff changeset
   368
  "asymp_on A R \<longleftrightarrow> (\<forall>x \<in> A. \<forall>y \<in> A. R x y \<longrightarrow> \<not> R y x)"
56545
8f1e7596deb7 more operations and lemmas
haftmann
parents: 56218
diff changeset
   369
76682
e260dabc88e6 added predicates asym_on and asymp_on and redefined asym and asymp to be abbreviations
desharna
parents: 76648
diff changeset
   370
abbreviation asymp :: "('a \<Rightarrow> 'a \<Rightarrow> bool) \<Rightarrow> bool" where
e260dabc88e6 added predicates asym_on and asymp_on and redefined asym and asymp to be abbreviations
desharna
parents: 76648
diff changeset
   371
  "asymp \<equiv> asymp_on UNIV"
e260dabc88e6 added predicates asym_on and asymp_on and redefined asym and asymp to be abbreviations
desharna
parents: 76648
diff changeset
   372
76686
10c4aa9eecf8 added lemma asymp_on_asym_on_eq[pred_set_conv]
desharna
parents: 76685
diff changeset
   373
lemma asymp_on_asym_on_eq[pred_set_conv]: "asymp_on A (\<lambda>x y. (x, y) \<in> r) \<longleftrightarrow> asym_on A r"
76682
e260dabc88e6 added predicates asym_on and asymp_on and redefined asym and asymp to be abbreviations
desharna
parents: 76648
diff changeset
   374
  by (simp add: asymp_on_def asym_on_def)
56545
8f1e7596deb7 more operations and lemmas
haftmann
parents: 56218
diff changeset
   375
76686
10c4aa9eecf8 added lemma asymp_on_asym_on_eq[pred_set_conv]
desharna
parents: 76685
diff changeset
   376
lemmas asymp_asym_eq = asymp_on_asym_on_eq[of UNIV] \<comment> \<open>For backward compatibility\<close>
10c4aa9eecf8 added lemma asymp_on_asym_on_eq[pred_set_conv]
desharna
parents: 76685
diff changeset
   377
76683
cca28679bdbf added lemmas asym_onI, asymp_onI, asym_onD, and asymp_onD
desharna
parents: 76682
diff changeset
   378
lemma asym_onI[intro]:
cca28679bdbf added lemmas asym_onI, asymp_onI, asym_onD, and asymp_onD
desharna
parents: 76682
diff changeset
   379
  "(\<And>x y. x \<in> A \<Longrightarrow> y \<in> A \<Longrightarrow> (x, y) \<in> r \<Longrightarrow> (y, x) \<notin> r) \<Longrightarrow> asym_on A r"
76682
e260dabc88e6 added predicates asym_on and asymp_on and redefined asym and asymp to be abbreviations
desharna
parents: 76648
diff changeset
   380
  by (simp add: asym_on_def)
71935
82b00b8f1871 fixed the utterly weird definitions of asym / asymp, and added many asym lemmas
paulson <lp15@cam.ac.uk>
parents: 71827
diff changeset
   381
76683
cca28679bdbf added lemmas asym_onI, asymp_onI, asym_onD, and asymp_onD
desharna
parents: 76682
diff changeset
   382
lemma asymI[intro]: "(\<And>x y. (x, y) \<in> r \<Longrightarrow> (y, x) \<notin> r) \<Longrightarrow> asym r"
cca28679bdbf added lemmas asym_onI, asymp_onI, asym_onD, and asymp_onD
desharna
parents: 76682
diff changeset
   383
  by (simp add: asym_onI)
cca28679bdbf added lemmas asym_onI, asymp_onI, asym_onD, and asymp_onD
desharna
parents: 76682
diff changeset
   384
cca28679bdbf added lemmas asym_onI, asymp_onI, asym_onD, and asymp_onD
desharna
parents: 76682
diff changeset
   385
lemma asymp_onI[intro]:
cca28679bdbf added lemmas asym_onI, asymp_onI, asym_onD, and asymp_onD
desharna
parents: 76682
diff changeset
   386
  "(\<And>x y. x \<in> A \<Longrightarrow> y \<in> A \<Longrightarrow> R x y \<Longrightarrow> \<not> R y x) \<Longrightarrow> asymp_on A R"
76686
10c4aa9eecf8 added lemma asymp_on_asym_on_eq[pred_set_conv]
desharna
parents: 76685
diff changeset
   387
  by (rule asym_onI[to_pred])
76683
cca28679bdbf added lemmas asym_onI, asymp_onI, asym_onD, and asymp_onD
desharna
parents: 76682
diff changeset
   388
cca28679bdbf added lemmas asym_onI, asymp_onI, asym_onD, and asymp_onD
desharna
parents: 76682
diff changeset
   389
lemma asympI[intro]: "(\<And>x y. R x y \<Longrightarrow> \<not> R y x) \<Longrightarrow> asymp R"
76686
10c4aa9eecf8 added lemma asymp_on_asym_on_eq[pred_set_conv]
desharna
parents: 76685
diff changeset
   390
  by (rule asymI[to_pred])
76683
cca28679bdbf added lemmas asym_onI, asymp_onI, asym_onD, and asymp_onD
desharna
parents: 76682
diff changeset
   391
cca28679bdbf added lemmas asym_onI, asymp_onI, asym_onD, and asymp_onD
desharna
parents: 76682
diff changeset
   392
lemma asym_onD: "asym_on A r \<Longrightarrow> x \<in> A \<Longrightarrow> y \<in> A \<Longrightarrow> (x, y) \<in> r \<Longrightarrow> (y, x) \<notin> r"
cca28679bdbf added lemmas asym_onI, asymp_onI, asym_onD, and asymp_onD
desharna
parents: 76682
diff changeset
   393
  by (simp add: asym_on_def)
cca28679bdbf added lemmas asym_onI, asymp_onI, asym_onD, and asymp_onD
desharna
parents: 76682
diff changeset
   394
cca28679bdbf added lemmas asym_onI, asymp_onI, asym_onD, and asymp_onD
desharna
parents: 76682
diff changeset
   395
lemma asymD: "asym r \<Longrightarrow> (x, y) \<in> r \<Longrightarrow> (y, x) \<notin> r"
cca28679bdbf added lemmas asym_onI, asymp_onI, asym_onD, and asymp_onD
desharna
parents: 76682
diff changeset
   396
  by (simp add: asym_onD)
cca28679bdbf added lemmas asym_onI, asymp_onI, asym_onD, and asymp_onD
desharna
parents: 76682
diff changeset
   397
cca28679bdbf added lemmas asym_onI, asymp_onI, asym_onD, and asymp_onD
desharna
parents: 76682
diff changeset
   398
lemma asymp_onD: "asymp_on A R \<Longrightarrow> x \<in> A \<Longrightarrow> y \<in> A \<Longrightarrow> R x y \<Longrightarrow> \<not> R y x"
76686
10c4aa9eecf8 added lemma asymp_on_asym_on_eq[pred_set_conv]
desharna
parents: 76685
diff changeset
   399
  by (rule asym_onD[to_pred])
76683
cca28679bdbf added lemmas asym_onI, asymp_onI, asym_onD, and asymp_onD
desharna
parents: 76682
diff changeset
   400
74975
5d3a846bccf8 added lemma asympD
desharna
parents: 74865
diff changeset
   401
lemma asympD: "asymp R \<Longrightarrow> R x y \<Longrightarrow> \<not> R y x"
5d3a846bccf8 added lemma asympD
desharna
parents: 74865
diff changeset
   402
  by (rule asymD[to_pred])
5d3a846bccf8 added lemma asympD
desharna
parents: 74865
diff changeset
   403
82294
b36353e62b90 added lemmas antisym_on_bot[simp], asym_on_bot[simp], irrefl_on_bot[simp], sym_on_bot[simp], trans_on_bot[simp]
desharna
parents: 82287
diff changeset
   404
lemma asym_on_bot[simp]: "asym_on A \<bottom>"
b36353e62b90 added lemmas antisym_on_bot[simp], asym_on_bot[simp], irrefl_on_bot[simp], sym_on_bot[simp], trans_on_bot[simp]
desharna
parents: 82287
diff changeset
   405
  by (simp add: asym_on_def)
b36353e62b90 added lemmas antisym_on_bot[simp], asym_on_bot[simp], irrefl_on_bot[simp], sym_on_bot[simp], trans_on_bot[simp]
desharna
parents: 82287
diff changeset
   406
82287
6ace531790b4 added lemmas, antisymp_on_bot[simp], asymp_on_bot[simp], irreflp_on_bot[simp], left_unique_bot[simp], symp_on_bot[simp], transp_on_bot[simp]
desharna
parents: 82286
diff changeset
   407
lemma asymp_on_bot[simp]: "asymp_on A \<bottom>"
82294
b36353e62b90 added lemmas antisym_on_bot[simp], asym_on_bot[simp], irrefl_on_bot[simp], sym_on_bot[simp], trans_on_bot[simp]
desharna
parents: 82287
diff changeset
   408
  using asym_on_bot[to_pred] .
82287
6ace531790b4 added lemmas, antisymp_on_bot[simp], asymp_on_bot[simp], irreflp_on_bot[simp], left_unique_bot[simp], symp_on_bot[simp], transp_on_bot[simp]
desharna
parents: 82286
diff changeset
   409
76687
a84716ca8b97 tuned naming
desharna
parents: 76686
diff changeset
   410
lemma asym_iff: "asym r \<longleftrightarrow> (\<forall>x y. (x,y) \<in> r \<longrightarrow> (y,x) \<notin> r)"
76683
cca28679bdbf added lemmas asym_onI, asymp_onI, asym_onD, and asymp_onD
desharna
parents: 76682
diff changeset
   411
  by (blast dest: asymD)
56545
8f1e7596deb7 more operations and lemmas
haftmann
parents: 56218
diff changeset
   412
82336
1d0116b288e3 added lemmas asymp_on_mono_strong and asymp_on_mono[mono]
desharna
parents: 82335
diff changeset
   413
lemma asymp_on_mono_strong:
1d0116b288e3 added lemmas asymp_on_mono_strong and asymp_on_mono[mono]
desharna
parents: 82335
diff changeset
   414
  "asymp_on B Q \<Longrightarrow> A \<subseteq> B \<Longrightarrow> (\<And>x y. x \<in> A \<Longrightarrow> y \<in> A \<Longrightarrow> R x y \<Longrightarrow> Q x y) \<Longrightarrow> asymp_on A R"
1d0116b288e3 added lemmas asymp_on_mono_strong and asymp_on_mono[mono]
desharna
parents: 82335
diff changeset
   415
  by (rule asymp_onI) (auto dest: asymp_onD)
1d0116b288e3 added lemmas asymp_on_mono_strong and asymp_on_mono[mono]
desharna
parents: 82335
diff changeset
   416
1d0116b288e3 added lemmas asymp_on_mono_strong and asymp_on_mono[mono]
desharna
parents: 82335
diff changeset
   417
lemma asymp_on_mono[mono]: "A \<subseteq> B \<Longrightarrow> R \<le> Q \<Longrightarrow> asymp_on B Q \<le> asymp_on A R"
1d0116b288e3 added lemmas asymp_on_mono_strong and asymp_on_mono[mono]
desharna
parents: 82335
diff changeset
   418
  by (simp add: asymp_on_mono_strong le_fun_def)
1d0116b288e3 added lemmas asymp_on_mono_strong and asymp_on_mono[mono]
desharna
parents: 82335
diff changeset
   419
82339
53f3e72020b9 tuned variable names such that A \<subseteq> B
desharna
parents: 82337
diff changeset
   420
lemma asym_on_subset: "asym_on B r \<Longrightarrow> A \<subseteq> B \<Longrightarrow> asym_on A r"
76684
3eda063a20a4 added lemmas asym_on_subset and asymp_on_subset
desharna
parents: 76683
diff changeset
   421
  by (auto simp: asym_on_def)
3eda063a20a4 added lemmas asym_on_subset and asymp_on_subset
desharna
parents: 76683
diff changeset
   422
82339
53f3e72020b9 tuned variable names such that A \<subseteq> B
desharna
parents: 82337
diff changeset
   423
lemma asymp_on_subset: "asymp_on B R \<Longrightarrow> A \<subseteq> B \<Longrightarrow> asymp_on A R"
82336
1d0116b288e3 added lemmas asymp_on_mono_strong and asymp_on_mono[mono]
desharna
parents: 82335
diff changeset
   424
  using asymp_on_mono_strong .
76684
3eda063a20a4 added lemmas asym_on_subset and asymp_on_subset
desharna
parents: 76683
diff changeset
   425
79905
1f509d01c9e3 added lemmas antisymp_on_image, asymp_on_image, irreflp_on_image, reflp_on_image, symp_on_image, totalp_on_image, and transp_on_image
desharna
parents: 77695
diff changeset
   426
lemma asymp_on_image: "asymp_on (f ` A) R \<longleftrightarrow> asymp_on A (\<lambda>a b. R (f a) (f b))"
1f509d01c9e3 added lemmas antisymp_on_image, asymp_on_image, irreflp_on_image, reflp_on_image, symp_on_image, totalp_on_image, and transp_on_image
desharna
parents: 77695
diff changeset
   427
  by (simp add: asymp_on_def)
1f509d01c9e3 added lemmas antisymp_on_image, asymp_on_image, irreflp_on_image, reflp_on_image, symp_on_image, totalp_on_image, and transp_on_image
desharna
parents: 77695
diff changeset
   428
76737
9d9a2731a4e3 added lemmas irrefl_on_if_asym_on[simp] and irreflp_on_if_asymp_on[simp]
desharna
parents: 76697
diff changeset
   429
lemma irrefl_on_if_asym_on[simp]: "asym_on A r \<Longrightarrow> irrefl_on A r"
9d9a2731a4e3 added lemmas irrefl_on_if_asym_on[simp] and irreflp_on_if_asymp_on[simp]
desharna
parents: 76697
diff changeset
   430
  by (auto intro: irrefl_onI dest: asym_onD)
9d9a2731a4e3 added lemmas irrefl_on_if_asym_on[simp] and irreflp_on_if_asymp_on[simp]
desharna
parents: 76697
diff changeset
   431
9d9a2731a4e3 added lemmas irrefl_on_if_asym_on[simp] and irreflp_on_if_asymp_on[simp]
desharna
parents: 76697
diff changeset
   432
lemma irreflp_on_if_asymp_on[simp]: "asymp_on A r \<Longrightarrow> irreflp_on A r"
9d9a2731a4e3 added lemmas irrefl_on_if_asym_on[simp] and irreflp_on_if_asymp_on[simp]
desharna
parents: 76697
diff changeset
   433
  by (rule irrefl_on_if_asym_on[to_pred])
9d9a2731a4e3 added lemmas irrefl_on_if_asym_on[simp] and irreflp_on_if_asymp_on[simp]
desharna
parents: 76697
diff changeset
   434
76685
806d0b3aebaf strengthened and renamed asymp_less and asymp_greater
desharna
parents: 76684
diff changeset
   435
lemma (in preorder) asymp_on_less[simp]: "asymp_on A (<)"
806d0b3aebaf strengthened and renamed asymp_less and asymp_greater
desharna
parents: 76684
diff changeset
   436
  by (auto intro: dual_order.asym)
74806
ba59c691b3ee added asymp_{less,greater} to preorder and moved mult1_lessE out
desharna
parents: 73832
diff changeset
   437
76685
806d0b3aebaf strengthened and renamed asymp_less and asymp_greater
desharna
parents: 76684
diff changeset
   438
lemma (in preorder) asymp_on_greater[simp]: "asymp_on A (>)"
806d0b3aebaf strengthened and renamed asymp_less and asymp_greater
desharna
parents: 76684
diff changeset
   439
  by (auto intro: dual_order.asym)
74806
ba59c691b3ee added asymp_{less,greater} to preorder and moved mult1_lessE out
desharna
parents: 73832
diff changeset
   440
ba59c691b3ee added asymp_{less,greater} to preorder and moved mult1_lessE out
desharna
parents: 73832
diff changeset
   441
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60057
diff changeset
   442
subsubsection \<open>Symmetry\<close>
46692
1f8b766224f6 tuned structure; dropped already existing syntax declarations
haftmann
parents: 46691
diff changeset
   443
76644
99d6e9217586 added predicates sym_on and symp_on and redefined sym and symp to be abbreviations
desharna
parents: 76642
diff changeset
   444
definition sym_on :: "'a set \<Rightarrow> 'a rel \<Rightarrow> bool" where
99d6e9217586 added predicates sym_on and symp_on and redefined sym and symp to be abbreviations
desharna
parents: 76642
diff changeset
   445
  "sym_on A r \<longleftrightarrow> (\<forall>x \<in> A. \<forall>y \<in> A. (x, y) \<in> r \<longrightarrow> (y, x) \<in> r)"
99d6e9217586 added predicates sym_on and symp_on and redefined sym and symp to be abbreviations
desharna
parents: 76642
diff changeset
   446
99d6e9217586 added predicates sym_on and symp_on and redefined sym and symp to be abbreviations
desharna
parents: 76642
diff changeset
   447
abbreviation sym :: "'a rel \<Rightarrow> bool" where
99d6e9217586 added predicates sym_on and symp_on and redefined sym and symp to be abbreviations
desharna
parents: 76642
diff changeset
   448
  "sym \<equiv> sym_on UNIV"
99d6e9217586 added predicates sym_on and symp_on and redefined sym and symp to be abbreviations
desharna
parents: 76642
diff changeset
   449
99d6e9217586 added predicates sym_on and symp_on and redefined sym and symp to be abbreviations
desharna
parents: 76642
diff changeset
   450
definition symp_on :: "'a set \<Rightarrow> ('a \<Rightarrow> 'a \<Rightarrow> bool) \<Rightarrow> bool" where
99d6e9217586 added predicates sym_on and symp_on and redefined sym and symp to be abbreviations
desharna
parents: 76642
diff changeset
   451
  "symp_on A R \<longleftrightarrow> (\<forall>x \<in> A. \<forall>y \<in> A. R x y \<longrightarrow> R y x)"
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
   452
76644
99d6e9217586 added predicates sym_on and symp_on and redefined sym and symp to be abbreviations
desharna
parents: 76642
diff changeset
   453
abbreviation symp :: "('a \<Rightarrow> 'a \<Rightarrow> bool) \<Rightarrow> bool" where
99d6e9217586 added predicates sym_on and symp_on and redefined sym and symp to be abbreviations
desharna
parents: 76642
diff changeset
   454
  "symp \<equiv> symp_on UNIV"
99d6e9217586 added predicates sym_on and symp_on and redefined sym and symp to be abbreviations
desharna
parents: 76642
diff changeset
   455
99d6e9217586 added predicates sym_on and symp_on and redefined sym and symp to be abbreviations
desharna
parents: 76642
diff changeset
   456
lemma sym_def[no_atp]: "sym r \<longleftrightarrow> (\<forall>x y. (x, y) \<in> r \<longrightarrow> (y, x) \<in> r)"
99d6e9217586 added predicates sym_on and symp_on and redefined sym and symp to be abbreviations
desharna
parents: 76642
diff changeset
   457
  by (simp add: sym_on_def)
99d6e9217586 added predicates sym_on and symp_on and redefined sym and symp to be abbreviations
desharna
parents: 76642
diff changeset
   458
99d6e9217586 added predicates sym_on and symp_on and redefined sym and symp to be abbreviations
desharna
parents: 76642
diff changeset
   459
lemma symp_def[no_atp]: "symp R \<longleftrightarrow> (\<forall>x y. R x y \<longrightarrow> R y x)"
99d6e9217586 added predicates sym_on and symp_on and redefined sym and symp to be abbreviations
desharna
parents: 76642
diff changeset
   460
  by (simp add: symp_on_def)
99d6e9217586 added predicates sym_on and symp_on and redefined sym and symp to be abbreviations
desharna
parents: 76642
diff changeset
   461
99d6e9217586 added predicates sym_on and symp_on and redefined sym and symp to be abbreviations
desharna
parents: 76642
diff changeset
   462
text \<open>@{thm [source] sym_def} and @{thm [source] symp_def} are for backward compatibility.\<close>
46692
1f8b766224f6 tuned structure; dropped already existing syntax declarations
haftmann
parents: 46691
diff changeset
   463
76645
d616622812b2 added lemma symp_on_sym_on_eq[pred_set_conv]
desharna
parents: 76644
diff changeset
   464
lemma symp_on_sym_on_eq[pred_set_conv]: "symp_on A (\<lambda>x y. (x, y) \<in> r) \<longleftrightarrow> sym_on A r"
d616622812b2 added lemma symp_on_sym_on_eq[pred_set_conv]
desharna
parents: 76644
diff changeset
   465
  by (simp add: sym_on_def symp_on_def)
d616622812b2 added lemma symp_on_sym_on_eq[pred_set_conv]
desharna
parents: 76644
diff changeset
   466
d616622812b2 added lemma symp_on_sym_on_eq[pred_set_conv]
desharna
parents: 76644
diff changeset
   467
lemmas symp_sym_eq = symp_on_sym_on_eq[of UNIV] \<comment> \<open>For backward compatibility\<close>
46692
1f8b766224f6 tuned structure; dropped already existing syntax declarations
haftmann
parents: 46691
diff changeset
   468
76646
9bbc085fce86 added lemmas sym_onI and symp_onI
desharna
parents: 76645
diff changeset
   469
lemma sym_onI: "(\<And>x y. x \<in> A \<Longrightarrow> y \<in> A \<Longrightarrow> (x, y) \<in> r \<Longrightarrow> (y, x) \<in> r) \<Longrightarrow> sym_on A r"
9bbc085fce86 added lemmas sym_onI and symp_onI
desharna
parents: 76645
diff changeset
   470
  by (simp add: sym_on_def)
9bbc085fce86 added lemmas sym_onI and symp_onI
desharna
parents: 76645
diff changeset
   471
9bbc085fce86 added lemmas sym_onI and symp_onI
desharna
parents: 76645
diff changeset
   472
lemma symI [intro?]: "(\<And>x y. (x, y) \<in> r \<Longrightarrow> (y, x) \<in> r) \<Longrightarrow> sym r"
9bbc085fce86 added lemmas sym_onI and symp_onI
desharna
parents: 76645
diff changeset
   473
  by (simp add: sym_onI)
46694
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
   474
76646
9bbc085fce86 added lemmas sym_onI and symp_onI
desharna
parents: 76645
diff changeset
   475
lemma symp_onI: "(\<And>x y. x \<in> A \<Longrightarrow> y \<in> A \<Longrightarrow> R x y \<Longrightarrow> R y x) \<Longrightarrow> symp_on A R"
9bbc085fce86 added lemmas sym_onI and symp_onI
desharna
parents: 76645
diff changeset
   476
  by (rule sym_onI[to_pred])
9bbc085fce86 added lemmas sym_onI and symp_onI
desharna
parents: 76645
diff changeset
   477
9bbc085fce86 added lemmas sym_onI and symp_onI
desharna
parents: 76645
diff changeset
   478
lemma sympI [intro?]: "(\<And>x y. R x y \<Longrightarrow> R y x) \<Longrightarrow> symp R"
9bbc085fce86 added lemmas sym_onI and symp_onI
desharna
parents: 76645
diff changeset
   479
  by (rule symI[to_pred])
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
   480
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
   481
lemma symE:
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
   482
  assumes "sym r" and "(b, a) \<in> r"
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
   483
  obtains "(a, b) \<in> r"
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
   484
  using assms by (simp add: sym_def)
46694
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
   485
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
   486
lemma sympE:
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
   487
  assumes "symp r" and "r b a"
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
   488
  obtains "r a b"
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
   489
  using assms by (rule symE [to_pred])
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
   490
76647
3042416b2e65 added lemmas sym_onD and symp_onD
desharna
parents: 76646
diff changeset
   491
lemma sym_onD: "sym_on A r \<Longrightarrow> x \<in> A \<Longrightarrow> y \<in> A \<Longrightarrow> (x, y) \<in> r \<Longrightarrow> (y, x) \<in> r"
3042416b2e65 added lemmas sym_onD and symp_onD
desharna
parents: 76646
diff changeset
   492
  by (simp add: sym_on_def)
3042416b2e65 added lemmas sym_onD and symp_onD
desharna
parents: 76646
diff changeset
   493
3042416b2e65 added lemmas sym_onD and symp_onD
desharna
parents: 76646
diff changeset
   494
lemma symD [dest?]: "sym r \<Longrightarrow> (x, y) \<in> r \<Longrightarrow> (y, x) \<in> r"
3042416b2e65 added lemmas sym_onD and symp_onD
desharna
parents: 76646
diff changeset
   495
  by (simp add: sym_onD)
46694
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
   496
76647
3042416b2e65 added lemmas sym_onD and symp_onD
desharna
parents: 76646
diff changeset
   497
lemma symp_onD: "symp_on A R \<Longrightarrow> x \<in> A \<Longrightarrow> y \<in> A \<Longrightarrow> R x y \<Longrightarrow> R y x"
3042416b2e65 added lemmas sym_onD and symp_onD
desharna
parents: 76646
diff changeset
   498
  by (rule sym_onD[to_pred])
3042416b2e65 added lemmas sym_onD and symp_onD
desharna
parents: 76646
diff changeset
   499
3042416b2e65 added lemmas sym_onD and symp_onD
desharna
parents: 76646
diff changeset
   500
lemma sympD [dest?]: "symp R \<Longrightarrow> R x y \<Longrightarrow> R y x"
3042416b2e65 added lemmas sym_onD and symp_onD
desharna
parents: 76646
diff changeset
   501
  by (rule symD[to_pred])
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
   502
82337
3ae491533076 moved lemmas around
desharna
parents: 82336
diff changeset
   503
lemma sym_on_bot[simp]: "sym_on A \<bottom>"
3ae491533076 moved lemmas around
desharna
parents: 82336
diff changeset
   504
  by (simp add: sym_on_def)
3ae491533076 moved lemmas around
desharna
parents: 82336
diff changeset
   505
3ae491533076 moved lemmas around
desharna
parents: 82336
diff changeset
   506
lemma symp_on_bot[simp]: "symp_on A \<bottom>"
3ae491533076 moved lemmas around
desharna
parents: 82336
diff changeset
   507
  using sym_on_bot[to_pred] .
3ae491533076 moved lemmas around
desharna
parents: 82336
diff changeset
   508
3ae491533076 moved lemmas around
desharna
parents: 82336
diff changeset
   509
lemma sym_on_top[simp]: "sym_on A \<top>"
3ae491533076 moved lemmas around
desharna
parents: 82336
diff changeset
   510
  by (simp add: sym_on_def)
3ae491533076 moved lemmas around
desharna
parents: 82336
diff changeset
   511
3ae491533076 moved lemmas around
desharna
parents: 82336
diff changeset
   512
lemma symp_on_top[simp]: "symp_on A \<top>"
3ae491533076 moved lemmas around
desharna
parents: 82336
diff changeset
   513
  by (simp add: symp_on_def)
3ae491533076 moved lemmas around
desharna
parents: 82336
diff changeset
   514
82339
53f3e72020b9 tuned variable names such that A \<subseteq> B
desharna
parents: 82337
diff changeset
   515
lemma sym_on_subset: "sym_on B r \<Longrightarrow> A \<subseteq> B \<Longrightarrow> sym_on A r"
82337
3ae491533076 moved lemmas around
desharna
parents: 82336
diff changeset
   516
  by (auto simp: sym_on_def)
3ae491533076 moved lemmas around
desharna
parents: 82336
diff changeset
   517
82339
53f3e72020b9 tuned variable names such that A \<subseteq> B
desharna
parents: 82337
diff changeset
   518
lemma symp_on_subset: "symp_on B R \<Longrightarrow> A \<subseteq> B \<Longrightarrow> symp_on A R"
82337
3ae491533076 moved lemmas around
desharna
parents: 82336
diff changeset
   519
  by (auto simp: symp_on_def)
3ae491533076 moved lemmas around
desharna
parents: 82336
diff changeset
   520
3ae491533076 moved lemmas around
desharna
parents: 82336
diff changeset
   521
lemma symp_on_image: "symp_on (f ` A) R \<longleftrightarrow> symp_on A (\<lambda>a b. R (f a) (f b))"
3ae491533076 moved lemmas around
desharna
parents: 82336
diff changeset
   522
  by (simp add: symp_on_def)
3ae491533076 moved lemmas around
desharna
parents: 82336
diff changeset
   523
82273
365917fc6e31 added lemma symp_on_equality[simp]
desharna
parents: 82272
diff changeset
   524
lemma symp_on_equality[simp]: "symp_on A (=)"
365917fc6e31 added lemma symp_on_equality[simp]
desharna
parents: 82272
diff changeset
   525
  by (simp add: symp_on_def)
365917fc6e31 added lemma symp_on_equality[simp]
desharna
parents: 82272
diff changeset
   526
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
   527
lemma sym_Int: "sym r \<Longrightarrow> sym s \<Longrightarrow> sym (r \<inter> s)"
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
   528
  by (fast intro: symI elim: symE)
46692
1f8b766224f6 tuned structure; dropped already existing syntax declarations
haftmann
parents: 46691
diff changeset
   529
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
   530
lemma symp_inf: "symp r \<Longrightarrow> symp s \<Longrightarrow> symp (r \<sqinter> s)"
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
   531
  by (fact sym_Int [to_pred])
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
   532
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
   533
lemma sym_Un: "sym r \<Longrightarrow> sym s \<Longrightarrow> sym (r \<union> s)"
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
   534
  by (fast intro: symI elim: symE)
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
   535
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
   536
lemma symp_sup: "symp r \<Longrightarrow> symp s \<Longrightarrow> symp (r \<squnion> s)"
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
   537
  by (fact sym_Un [to_pred])
46692
1f8b766224f6 tuned structure; dropped already existing syntax declarations
haftmann
parents: 46691
diff changeset
   538
69275
9bbd5497befd clarified status of legacy input abbreviations
haftmann
parents: 68455
diff changeset
   539
lemma sym_INTER: "\<forall>x\<in>S. sym (r x) \<Longrightarrow> sym (\<Inter>(r ` S))"
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
   540
  by (fast intro: symI elim: symE)
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
   541
69275
9bbd5497befd clarified status of legacy input abbreviations
haftmann
parents: 68455
diff changeset
   542
lemma symp_INF: "\<forall>x\<in>S. symp (r x) \<Longrightarrow> symp (\<Sqinter>(r ` S))"
46982
144d94446378 spelt out missing colemmas
haftmann
parents: 46981
diff changeset
   543
  by (fact sym_INTER [to_pred])
46692
1f8b766224f6 tuned structure; dropped already existing syntax declarations
haftmann
parents: 46691
diff changeset
   544
69275
9bbd5497befd clarified status of legacy input abbreviations
haftmann
parents: 68455
diff changeset
   545
lemma sym_UNION: "\<forall>x\<in>S. sym (r x) \<Longrightarrow> sym (\<Union>(r ` S))"
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
   546
  by (fast intro: symI elim: symE)
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
   547
69275
9bbd5497befd clarified status of legacy input abbreviations
haftmann
parents: 68455
diff changeset
   548
lemma symp_SUP: "\<forall>x\<in>S. symp (r x) \<Longrightarrow> symp (\<Squnion>(r ` S))"
46982
144d94446378 spelt out missing colemmas
haftmann
parents: 46981
diff changeset
   549
  by (fact sym_UNION [to_pred])
46692
1f8b766224f6 tuned structure; dropped already existing syntax declarations
haftmann
parents: 46691
diff changeset
   550
1f8b766224f6 tuned structure; dropped already existing syntax declarations
haftmann
parents: 46691
diff changeset
   551
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60057
diff changeset
   552
subsubsection \<open>Antisymmetry\<close>
46694
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
   553
76636
e772c8e6edd0 added predicates antisym_on and antisymp_on and redefined antisym and antisymp to be abbreviations
desharna
parents: 76588
diff changeset
   554
definition antisym_on :: "'a set \<Rightarrow> 'a rel \<Rightarrow> bool" where
e772c8e6edd0 added predicates antisym_on and antisymp_on and redefined antisym and antisymp to be abbreviations
desharna
parents: 76588
diff changeset
   555
  "antisym_on A r \<longleftrightarrow> (\<forall>x \<in> A. \<forall>y \<in> A. (x, y) \<in> r \<longrightarrow> (y, x) \<in> r \<longrightarrow> x = y)"
e772c8e6edd0 added predicates antisym_on and antisymp_on and redefined antisym and antisymp to be abbreviations
desharna
parents: 76588
diff changeset
   556
e772c8e6edd0 added predicates antisym_on and antisymp_on and redefined antisym and antisymp to be abbreviations
desharna
parents: 76588
diff changeset
   557
abbreviation antisym :: "'a rel \<Rightarrow> bool" where
e772c8e6edd0 added predicates antisym_on and antisymp_on and redefined antisym and antisymp to be abbreviations
desharna
parents: 76588
diff changeset
   558
  "antisym \<equiv> antisym_on UNIV"
e772c8e6edd0 added predicates antisym_on and antisymp_on and redefined antisym and antisymp to be abbreviations
desharna
parents: 76588
diff changeset
   559
e772c8e6edd0 added predicates antisym_on and antisymp_on and redefined antisym and antisymp to be abbreviations
desharna
parents: 76588
diff changeset
   560
definition antisymp_on :: "'a set \<Rightarrow> ('a \<Rightarrow> 'a \<Rightarrow> bool) \<Rightarrow> bool" where
e772c8e6edd0 added predicates antisym_on and antisymp_on and redefined antisym and antisymp to be abbreviations
desharna
parents: 76588
diff changeset
   561
  "antisymp_on A R \<longleftrightarrow> (\<forall>x \<in> A. \<forall>y \<in> A. R x y \<longrightarrow> R y x \<longrightarrow> x = y)"
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
   562
76636
e772c8e6edd0 added predicates antisym_on and antisymp_on and redefined antisym and antisymp to be abbreviations
desharna
parents: 76588
diff changeset
   563
abbreviation antisymp :: "('a \<Rightarrow> 'a \<Rightarrow> bool) \<Rightarrow> bool" where
e772c8e6edd0 added predicates antisym_on and antisymp_on and redefined antisym and antisymp to be abbreviations
desharna
parents: 76588
diff changeset
   564
  "antisymp \<equiv> antisymp_on UNIV"
e772c8e6edd0 added predicates antisym_on and antisymp_on and redefined antisym and antisymp to be abbreviations
desharna
parents: 76588
diff changeset
   565
e772c8e6edd0 added predicates antisym_on and antisymp_on and redefined antisym and antisymp to be abbreviations
desharna
parents: 76588
diff changeset
   566
lemma antisym_def[no_atp]: "antisym r \<longleftrightarrow> (\<forall>x y. (x, y) \<in> r \<longrightarrow> (y, x) \<in> r \<longrightarrow> x = y)"
e772c8e6edd0 added predicates antisym_on and antisymp_on and redefined antisym and antisymp to be abbreviations
desharna
parents: 76588
diff changeset
   567
  by (simp add: antisym_on_def)
e772c8e6edd0 added predicates antisym_on and antisymp_on and redefined antisym and antisymp to be abbreviations
desharna
parents: 76588
diff changeset
   568
e772c8e6edd0 added predicates antisym_on and antisymp_on and redefined antisym and antisymp to be abbreviations
desharna
parents: 76588
diff changeset
   569
lemma antisymp_def[no_atp]: "antisymp R \<longleftrightarrow> (\<forall>x y. R x y \<longrightarrow> R y x \<longrightarrow> x = y)"
e772c8e6edd0 added predicates antisym_on and antisymp_on and redefined antisym and antisymp to be abbreviations
desharna
parents: 76588
diff changeset
   570
  by (simp add: antisymp_on_def)
e772c8e6edd0 added predicates antisym_on and antisymp_on and redefined antisym and antisymp to be abbreviations
desharna
parents: 76588
diff changeset
   571
e772c8e6edd0 added predicates antisym_on and antisymp_on and redefined antisym and antisymp to be abbreviations
desharna
parents: 76588
diff changeset
   572
text \<open>@{thm [source] antisym_def} and @{thm [source] antisymp_def} are for backward compatibility.\<close>
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
   573
76637
6b75499e52d1 added antisymp_on_antisym_on_eq[pred_set_conv]
desharna
parents: 76636
diff changeset
   574
lemma antisymp_on_antisym_on_eq[pred_set_conv]:
6b75499e52d1 added antisymp_on_antisym_on_eq[pred_set_conv]
desharna
parents: 76636
diff changeset
   575
  "antisymp_on A (\<lambda>x y. (x, y) \<in> r) \<longleftrightarrow> antisym_on A r"
6b75499e52d1 added antisymp_on_antisym_on_eq[pred_set_conv]
desharna
parents: 76636
diff changeset
   576
  by (simp add: antisym_on_def antisymp_on_def)
6b75499e52d1 added antisymp_on_antisym_on_eq[pred_set_conv]
desharna
parents: 76636
diff changeset
   577
76642
878ed0fcb510 added lemmas antisym_on_subset and antisymp_on_subset
desharna
parents: 76641
diff changeset
   578
lemmas antisymp_antisym_eq = antisymp_on_antisym_on_eq[of UNIV] \<comment> \<open>For backward compatibility\<close>
878ed0fcb510 added lemmas antisym_on_subset and antisymp_on_subset
desharna
parents: 76641
diff changeset
   579
76639
e322abb912af added lemmas antisym_onI and antisymp_onI
desharna
parents: 76637
diff changeset
   580
lemma antisym_onI:
e322abb912af added lemmas antisym_onI and antisymp_onI
desharna
parents: 76637
diff changeset
   581
  "(\<And>x y. x \<in> A \<Longrightarrow> y \<in> A \<Longrightarrow> (x, y) \<in> r \<Longrightarrow> (y, x) \<in> r \<Longrightarrow> x = y) \<Longrightarrow> antisym_on A r"
e322abb912af added lemmas antisym_onI and antisymp_onI
desharna
parents: 76637
diff changeset
   582
  unfolding antisym_on_def by simp
e322abb912af added lemmas antisym_onI and antisymp_onI
desharna
parents: 76637
diff changeset
   583
64634
5bd30359e46e proper logical constants
haftmann
parents: 64633
diff changeset
   584
lemma antisymI [intro?]:
5bd30359e46e proper logical constants
haftmann
parents: 64633
diff changeset
   585
  "(\<And>x y. (x, y) \<in> r \<Longrightarrow> (y, x) \<in> r \<Longrightarrow> x = y) \<Longrightarrow> antisym r"
76639
e322abb912af added lemmas antisym_onI and antisymp_onI
desharna
parents: 76637
diff changeset
   586
  by (simp add: antisym_onI)
e322abb912af added lemmas antisym_onI and antisymp_onI
desharna
parents: 76637
diff changeset
   587
e322abb912af added lemmas antisym_onI and antisymp_onI
desharna
parents: 76637
diff changeset
   588
lemma antisymp_onI:
e322abb912af added lemmas antisym_onI and antisymp_onI
desharna
parents: 76637
diff changeset
   589
  "(\<And>x y. x \<in> A \<Longrightarrow> y \<in> A \<Longrightarrow> R x y \<Longrightarrow> R y x \<Longrightarrow> x = y) \<Longrightarrow> antisymp_on A R"
e322abb912af added lemmas antisym_onI and antisymp_onI
desharna
parents: 76637
diff changeset
   590
  by (rule antisym_onI[to_pred])
46694
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
   591
64634
5bd30359e46e proper logical constants
haftmann
parents: 64633
diff changeset
   592
lemma antisympI [intro?]:
76639
e322abb912af added lemmas antisym_onI and antisymp_onI
desharna
parents: 76637
diff changeset
   593
  "(\<And>x y. R x y \<Longrightarrow> R y x \<Longrightarrow> x = y) \<Longrightarrow> antisymp R"
e322abb912af added lemmas antisym_onI and antisymp_onI
desharna
parents: 76637
diff changeset
   594
  by (rule antisymI[to_pred])
64634
5bd30359e46e proper logical constants
haftmann
parents: 64633
diff changeset
   595
    
76640
8eb23d34323b added lemmas antisym_onD and antisymp_onD
desharna
parents: 76639
diff changeset
   596
lemma antisym_onD:
8eb23d34323b added lemmas antisym_onD and antisymp_onD
desharna
parents: 76639
diff changeset
   597
  "antisym_on A r \<Longrightarrow> x \<in> A \<Longrightarrow> y \<in> A \<Longrightarrow> (x, y) \<in> r \<Longrightarrow> (y, x) \<in> r \<Longrightarrow> x = y"
8eb23d34323b added lemmas antisym_onD and antisymp_onD
desharna
parents: 76639
diff changeset
   598
  by (simp add: antisym_on_def)
8eb23d34323b added lemmas antisym_onD and antisymp_onD
desharna
parents: 76639
diff changeset
   599
64634
5bd30359e46e proper logical constants
haftmann
parents: 64633
diff changeset
   600
lemma antisymD [dest?]:
76640
8eb23d34323b added lemmas antisym_onD and antisymp_onD
desharna
parents: 76639
diff changeset
   601
  "antisym r \<Longrightarrow> (x, y) \<in> r \<Longrightarrow> (y, x) \<in> r \<Longrightarrow> x = y"
8eb23d34323b added lemmas antisym_onD and antisymp_onD
desharna
parents: 76639
diff changeset
   602
  by (simp add: antisym_onD)
8eb23d34323b added lemmas antisym_onD and antisymp_onD
desharna
parents: 76639
diff changeset
   603
8eb23d34323b added lemmas antisym_onD and antisymp_onD
desharna
parents: 76639
diff changeset
   604
lemma antisymp_onD:
8eb23d34323b added lemmas antisym_onD and antisymp_onD
desharna
parents: 76639
diff changeset
   605
  "antisymp_on A R \<Longrightarrow> x \<in> A \<Longrightarrow> y \<in> A \<Longrightarrow> R x y \<Longrightarrow> R y x \<Longrightarrow> x = y"
8eb23d34323b added lemmas antisym_onD and antisymp_onD
desharna
parents: 76639
diff changeset
   606
  by (rule antisym_onD[to_pred])
46694
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
   607
64634
5bd30359e46e proper logical constants
haftmann
parents: 64633
diff changeset
   608
lemma antisympD [dest?]:
76640
8eb23d34323b added lemmas antisym_onD and antisymp_onD
desharna
parents: 76639
diff changeset
   609
  "antisymp R \<Longrightarrow> R x y \<Longrightarrow> R y x \<Longrightarrow> x = y"
8eb23d34323b added lemmas antisym_onD and antisymp_onD
desharna
parents: 76639
diff changeset
   610
  by (rule antisymD[to_pred])
46694
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
   611
82327
3726705befa5 moved lemmas around
desharna
parents: 82325
diff changeset
   612
lemma antisym_on_bot[simp]: "antisym_on A \<bottom>"
3726705befa5 moved lemmas around
desharna
parents: 82325
diff changeset
   613
  by (simp add: antisym_on_def)
3726705befa5 moved lemmas around
desharna
parents: 82325
diff changeset
   614
3726705befa5 moved lemmas around
desharna
parents: 82325
diff changeset
   615
lemma antisymp_on_bot[simp]: "antisymp_on A \<bottom>"
3726705befa5 moved lemmas around
desharna
parents: 82325
diff changeset
   616
  using antisym_on_bot[to_pred] .
3726705befa5 moved lemmas around
desharna
parents: 82325
diff changeset
   617
82328
55e8b2a60dfa added lemmas antisymp_on_mono_stronger, antisymp_on_mono_strong, antisymp_on_mono[mono]
desharna
parents: 82327
diff changeset
   618
lemma antisymp_on_mono_stronger:
55e8b2a60dfa added lemmas antisymp_on_mono_stronger, antisymp_on_mono_strong, antisymp_on_mono[mono]
desharna
parents: 82327
diff changeset
   619
  fixes
55e8b2a60dfa added lemmas antisymp_on_mono_stronger, antisymp_on_mono_strong, antisymp_on_mono[mono]
desharna
parents: 82327
diff changeset
   620
    A :: "'a set" and R :: "'a \<Rightarrow> 'a \<Rightarrow> bool" and
55e8b2a60dfa added lemmas antisymp_on_mono_stronger, antisymp_on_mono_strong, antisymp_on_mono[mono]
desharna
parents: 82327
diff changeset
   621
    B :: "'b set" and Q :: "'b \<Rightarrow> 'b \<Rightarrow> bool" and
55e8b2a60dfa added lemmas antisymp_on_mono_stronger, antisymp_on_mono_strong, antisymp_on_mono[mono]
desharna
parents: 82327
diff changeset
   622
    f :: "'a \<Rightarrow> 'b"
55e8b2a60dfa added lemmas antisymp_on_mono_stronger, antisymp_on_mono_strong, antisymp_on_mono[mono]
desharna
parents: 82327
diff changeset
   623
  assumes "antisymp_on B Q" and "f ` A \<subseteq> B" and
55e8b2a60dfa added lemmas antisymp_on_mono_stronger, antisymp_on_mono_strong, antisymp_on_mono[mono]
desharna
parents: 82327
diff changeset
   624
    Q_imp_R: "\<And>x y. x \<in> A \<Longrightarrow> y \<in> A \<Longrightarrow> R x y \<Longrightarrow> Q (f x) (f y)" and
55e8b2a60dfa added lemmas antisymp_on_mono_stronger, antisymp_on_mono_strong, antisymp_on_mono[mono]
desharna
parents: 82327
diff changeset
   625
    inj_f: "inj_on f A"
55e8b2a60dfa added lemmas antisymp_on_mono_stronger, antisymp_on_mono_strong, antisymp_on_mono[mono]
desharna
parents: 82327
diff changeset
   626
  shows "antisymp_on A R"
55e8b2a60dfa added lemmas antisymp_on_mono_stronger, antisymp_on_mono_strong, antisymp_on_mono[mono]
desharna
parents: 82327
diff changeset
   627
proof (rule antisymp_onI)
55e8b2a60dfa added lemmas antisymp_on_mono_stronger, antisymp_on_mono_strong, antisymp_on_mono[mono]
desharna
parents: 82327
diff changeset
   628
  fix x y :: 'a
55e8b2a60dfa added lemmas antisymp_on_mono_stronger, antisymp_on_mono_strong, antisymp_on_mono[mono]
desharna
parents: 82327
diff changeset
   629
  assume "x \<in> A" and "y \<in> A" and "R x y" and "R y x"
55e8b2a60dfa added lemmas antisymp_on_mono_stronger, antisymp_on_mono_strong, antisymp_on_mono[mono]
desharna
parents: 82327
diff changeset
   630
  hence "Q (f x) (f y)" and "Q (f y) (f x)"
55e8b2a60dfa added lemmas antisymp_on_mono_stronger, antisymp_on_mono_strong, antisymp_on_mono[mono]
desharna
parents: 82327
diff changeset
   631
    using Q_imp_R by iprover+
55e8b2a60dfa added lemmas antisymp_on_mono_stronger, antisymp_on_mono_strong, antisymp_on_mono[mono]
desharna
parents: 82327
diff changeset
   632
  moreover have "f x \<in> B" and "f y \<in> B"
55e8b2a60dfa added lemmas antisymp_on_mono_stronger, antisymp_on_mono_strong, antisymp_on_mono[mono]
desharna
parents: 82327
diff changeset
   633
    using \<open>f ` A \<subseteq> B\<close> \<open>x \<in> A\<close> \<open>y \<in> A\<close> by blast+
55e8b2a60dfa added lemmas antisymp_on_mono_stronger, antisymp_on_mono_strong, antisymp_on_mono[mono]
desharna
parents: 82327
diff changeset
   634
  ultimately have "f x = f y"
55e8b2a60dfa added lemmas antisymp_on_mono_stronger, antisymp_on_mono_strong, antisymp_on_mono[mono]
desharna
parents: 82327
diff changeset
   635
    using \<open>antisymp_on B Q\<close>[THEN antisymp_onD] by iprover
55e8b2a60dfa added lemmas antisymp_on_mono_stronger, antisymp_on_mono_strong, antisymp_on_mono[mono]
desharna
parents: 82327
diff changeset
   636
  thus "x = y"
55e8b2a60dfa added lemmas antisymp_on_mono_stronger, antisymp_on_mono_strong, antisymp_on_mono[mono]
desharna
parents: 82327
diff changeset
   637
    using inj_f[THEN inj_onD] \<open>x \<in> A\<close> \<open>y \<in> A\<close> by iprover
55e8b2a60dfa added lemmas antisymp_on_mono_stronger, antisymp_on_mono_strong, antisymp_on_mono[mono]
desharna
parents: 82327
diff changeset
   638
qed
55e8b2a60dfa added lemmas antisymp_on_mono_stronger, antisymp_on_mono_strong, antisymp_on_mono[mono]
desharna
parents: 82327
diff changeset
   639
55e8b2a60dfa added lemmas antisymp_on_mono_stronger, antisymp_on_mono_strong, antisymp_on_mono[mono]
desharna
parents: 82327
diff changeset
   640
lemma antisymp_on_mono_strong:
55e8b2a60dfa added lemmas antisymp_on_mono_stronger, antisymp_on_mono_strong, antisymp_on_mono[mono]
desharna
parents: 82327
diff changeset
   641
  "antisymp_on B Q \<Longrightarrow> A \<subseteq> B \<Longrightarrow> (\<And>x y. x \<in> A \<Longrightarrow> y \<in> A \<Longrightarrow> R x y \<Longrightarrow> Q x y) \<Longrightarrow> antisymp_on A R"
55e8b2a60dfa added lemmas antisymp_on_mono_stronger, antisymp_on_mono_strong, antisymp_on_mono[mono]
desharna
parents: 82327
diff changeset
   642
  using antisymp_on_mono_stronger[of B Q "\<lambda>x. x" A R, OF _ _ _ inj_on_id2, unfolded image_ident] .
55e8b2a60dfa added lemmas antisymp_on_mono_stronger, antisymp_on_mono_strong, antisymp_on_mono[mono]
desharna
parents: 82327
diff changeset
   643
55e8b2a60dfa added lemmas antisymp_on_mono_stronger, antisymp_on_mono_strong, antisymp_on_mono[mono]
desharna
parents: 82327
diff changeset
   644
lemma antisymp_on_mono[mono]: "A \<subseteq> B \<Longrightarrow> R \<le> Q \<Longrightarrow> antisymp_on B Q \<le> antisymp_on A R"
55e8b2a60dfa added lemmas antisymp_on_mono_stronger, antisymp_on_mono_strong, antisymp_on_mono[mono]
desharna
parents: 82327
diff changeset
   645
  by (simp add: antisymp_on_mono_strong le_fun_def)
55e8b2a60dfa added lemmas antisymp_on_mono_stronger, antisymp_on_mono_strong, antisymp_on_mono[mono]
desharna
parents: 82327
diff changeset
   646
82339
53f3e72020b9 tuned variable names such that A \<subseteq> B
desharna
parents: 82337
diff changeset
   647
lemma antisym_on_subset: "antisym_on B r \<Longrightarrow> A \<subseteq> B \<Longrightarrow> antisym_on A r"
82327
3726705befa5 moved lemmas around
desharna
parents: 82325
diff changeset
   648
  by (auto simp: antisym_on_def)
3726705befa5 moved lemmas around
desharna
parents: 82325
diff changeset
   649
82339
53f3e72020b9 tuned variable names such that A \<subseteq> B
desharna
parents: 82337
diff changeset
   650
lemma antisymp_on_subset: "antisymp_on B R \<Longrightarrow> A \<subseteq> B \<Longrightarrow> antisymp_on A R"
82328
55e8b2a60dfa added lemmas antisymp_on_mono_stronger, antisymp_on_mono_strong, antisymp_on_mono[mono]
desharna
parents: 82327
diff changeset
   651
  using antisymp_on_mono_strong .
82327
3726705befa5 moved lemmas around
desharna
parents: 82325
diff changeset
   652
3726705befa5 moved lemmas around
desharna
parents: 82325
diff changeset
   653
lemma antisymp_on_image:
3726705befa5 moved lemmas around
desharna
parents: 82325
diff changeset
   654
  assumes "inj_on f A"
3726705befa5 moved lemmas around
desharna
parents: 82325
diff changeset
   655
  shows "antisymp_on (f ` A) R \<longleftrightarrow> antisymp_on A (\<lambda>a b. R (f a) (f b))"
3726705befa5 moved lemmas around
desharna
parents: 82325
diff changeset
   656
  using assms by (auto simp: antisymp_on_def inj_on_def)
3726705befa5 moved lemmas around
desharna
parents: 82325
diff changeset
   657
64634
5bd30359e46e proper logical constants
haftmann
parents: 64633
diff changeset
   658
lemma antisym_subset:
5bd30359e46e proper logical constants
haftmann
parents: 64633
diff changeset
   659
  "r \<subseteq> s \<Longrightarrow> antisym s \<Longrightarrow> antisym r"
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
   660
  unfolding antisym_def by blast
46694
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
   661
64634
5bd30359e46e proper logical constants
haftmann
parents: 64633
diff changeset
   662
lemma antisymp_less_eq:
5bd30359e46e proper logical constants
haftmann
parents: 64633
diff changeset
   663
  "r \<le> s \<Longrightarrow> antisymp s \<Longrightarrow> antisymp r"
5bd30359e46e proper logical constants
haftmann
parents: 64633
diff changeset
   664
  by (fact antisym_subset [to_pred])
5bd30359e46e proper logical constants
haftmann
parents: 64633
diff changeset
   665
    
82272
a317d9e27a03 Strengthened and renamed lemmas antisymp_equality and transp_equality
desharna
parents: 82271
diff changeset
   666
lemma antisymp_on_equality[simp]: "antisymp_on A (=)"
a317d9e27a03 Strengthened and renamed lemmas antisymp_equality and transp_equality
desharna
parents: 82271
diff changeset
   667
  by (auto intro: antisymp_onI)
64634
5bd30359e46e proper logical constants
haftmann
parents: 64633
diff changeset
   668
5bd30359e46e proper logical constants
haftmann
parents: 64633
diff changeset
   669
lemma antisym_singleton [simp]:
5bd30359e46e proper logical constants
haftmann
parents: 64633
diff changeset
   670
  "antisym {x}"
5bd30359e46e proper logical constants
haftmann
parents: 64633
diff changeset
   671
  by (blast intro: antisymI)
63561
fba08009ff3e add lemmas contributed by Peter Gammie
Andreas Lochbihler
parents: 63404
diff changeset
   672
76688
87e7ab6aa40b strengthened lemmas antisym_on_if_asym_on and antisymp_on_if_asymp_on
desharna
parents: 76687
diff changeset
   673
lemma antisym_on_if_asym_on: "asym_on A r \<Longrightarrow> antisym_on A r"
87e7ab6aa40b strengthened lemmas antisym_on_if_asym_on and antisymp_on_if_asymp_on
desharna
parents: 76687
diff changeset
   674
  by (auto intro: antisym_onI dest: asym_onD)
76254
7ae89ee919a7 added lemmas antisym_if_asym and antisymp_if_asymp
desharna
parents: 76253
diff changeset
   675
76688
87e7ab6aa40b strengthened lemmas antisym_on_if_asym_on and antisymp_on_if_asymp_on
desharna
parents: 76687
diff changeset
   676
lemma antisymp_on_if_asymp_on: "asymp_on A R \<Longrightarrow> antisymp_on A R"
87e7ab6aa40b strengthened lemmas antisym_on_if_asym_on and antisymp_on_if_asymp_on
desharna
parents: 76687
diff changeset
   677
  by (rule antisym_on_if_asym_on[to_pred])
76254
7ae89ee919a7 added lemmas antisym_if_asym and antisymp_if_asymp
desharna
parents: 76253
diff changeset
   678
76689
ca258cf6c977 strengthened and renamed lemmas antisymp_less and antisymp_greater
desharna
parents: 76688
diff changeset
   679
lemma (in preorder) antisymp_on_less[simp]: "antisymp_on A (<)"
76688
87e7ab6aa40b strengthened lemmas antisym_on_if_asym_on and antisymp_on_if_asymp_on
desharna
parents: 76687
diff changeset
   680
  by (rule antisymp_on_if_asymp_on[OF asymp_on_less])
76258
2f10e7a2ff01 added lemmas antisymp_ge[simp], antisymp_greater[simp], antisymp_le[simp], and antisymp_less[simp]
desharna
parents: 76257
diff changeset
   681
76689
ca258cf6c977 strengthened and renamed lemmas antisymp_less and antisymp_greater
desharna
parents: 76688
diff changeset
   682
lemma (in preorder) antisymp_on_greater[simp]: "antisymp_on A (>)"
76688
87e7ab6aa40b strengthened lemmas antisym_on_if_asym_on and antisymp_on_if_asymp_on
desharna
parents: 76687
diff changeset
   683
  by (rule antisymp_on_if_asymp_on[OF asymp_on_greater])
76258
2f10e7a2ff01 added lemmas antisymp_ge[simp], antisymp_greater[simp], antisymp_le[simp], and antisymp_less[simp]
desharna
parents: 76257
diff changeset
   684
76641
e9f3f2b0c0a7 strengthened antisymp_le and antisymp_ge
desharna
parents: 76640
diff changeset
   685
lemma (in order) antisymp_on_le[simp]: "antisymp_on A (\<le>)"
e9f3f2b0c0a7 strengthened antisymp_le and antisymp_ge
desharna
parents: 76640
diff changeset
   686
  by (simp add: antisymp_onI)
76258
2f10e7a2ff01 added lemmas antisymp_ge[simp], antisymp_greater[simp], antisymp_le[simp], and antisymp_less[simp]
desharna
parents: 76257
diff changeset
   687
76641
e9f3f2b0c0a7 strengthened antisymp_le and antisymp_ge
desharna
parents: 76640
diff changeset
   688
lemma (in order) antisymp_on_ge[simp]: "antisymp_on A (\<ge>)"
e9f3f2b0c0a7 strengthened antisymp_le and antisymp_ge
desharna
parents: 76640
diff changeset
   689
  by (simp add: antisymp_onI)
76258
2f10e7a2ff01 added lemmas antisymp_ge[simp], antisymp_greater[simp], antisymp_le[simp], and antisymp_less[simp]
desharna
parents: 76257
diff changeset
   690
63376
4c0cc2b356f0 default one-step rules for predicates on relations;
haftmann
parents: 62343
diff changeset
   691
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60057
diff changeset
   692
subsubsection \<open>Transitivity\<close>
46692
1f8b766224f6 tuned structure; dropped already existing syntax declarations
haftmann
parents: 46691
diff changeset
   693
76743
d33fc5228aae added predicates trans_on and transp_on and redefined trans and transp to be abbreviations
desharna
parents: 76697
diff changeset
   694
definition trans_on :: "'a set \<Rightarrow> 'a rel \<Rightarrow> bool" where
d33fc5228aae added predicates trans_on and transp_on and redefined trans and transp to be abbreviations
desharna
parents: 76697
diff changeset
   695
  "trans_on A r \<longleftrightarrow> (\<forall>x \<in> A. \<forall>y \<in> A. \<forall>z \<in> A. (x, y) \<in> r \<longrightarrow> (y, z) \<in> r \<longrightarrow> (x, z) \<in> r)"
d33fc5228aae added predicates trans_on and transp_on and redefined trans and transp to be abbreviations
desharna
parents: 76697
diff changeset
   696
d33fc5228aae added predicates trans_on and transp_on and redefined trans and transp to be abbreviations
desharna
parents: 76697
diff changeset
   697
abbreviation trans :: "'a rel \<Rightarrow> bool" where
d33fc5228aae added predicates trans_on and transp_on and redefined trans and transp to be abbreviations
desharna
parents: 76697
diff changeset
   698
  "trans \<equiv> trans_on UNIV"
d33fc5228aae added predicates trans_on and transp_on and redefined trans and transp to be abbreviations
desharna
parents: 76697
diff changeset
   699
d33fc5228aae added predicates trans_on and transp_on and redefined trans and transp to be abbreviations
desharna
parents: 76697
diff changeset
   700
definition transp_on :: "'a set \<Rightarrow> ('a \<Rightarrow> 'a \<Rightarrow> bool) \<Rightarrow> bool" where
d33fc5228aae added predicates trans_on and transp_on and redefined trans and transp to be abbreviations
desharna
parents: 76697
diff changeset
   701
  "transp_on A R \<longleftrightarrow> (\<forall>x \<in> A. \<forall>y \<in> A. \<forall>z \<in> A. R x y \<longrightarrow> R y z \<longrightarrow> R x z)"
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
   702
76743
d33fc5228aae added predicates trans_on and transp_on and redefined trans and transp to be abbreviations
desharna
parents: 76697
diff changeset
   703
abbreviation transp :: "('a \<Rightarrow> 'a \<Rightarrow> bool) \<Rightarrow> bool" where
d33fc5228aae added predicates trans_on and transp_on and redefined trans and transp to be abbreviations
desharna
parents: 76697
diff changeset
   704
  "transp \<equiv> transp_on UNIV"
d33fc5228aae added predicates trans_on and transp_on and redefined trans and transp to be abbreviations
desharna
parents: 76697
diff changeset
   705
d33fc5228aae added predicates trans_on and transp_on and redefined trans and transp to be abbreviations
desharna
parents: 76697
diff changeset
   706
lemma trans_def[no_atp]: "trans r \<longleftrightarrow> (\<forall>x y z. (x, y) \<in> r \<longrightarrow> (y, z) \<in> r \<longrightarrow> (x, z) \<in> r)"
d33fc5228aae added predicates trans_on and transp_on and redefined trans and transp to be abbreviations
desharna
parents: 76697
diff changeset
   707
  by (simp add: trans_on_def)
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
   708
76743
d33fc5228aae added predicates trans_on and transp_on and redefined trans and transp to be abbreviations
desharna
parents: 76697
diff changeset
   709
lemma transp_def: "transp R \<longleftrightarrow> (\<forall>x y z. R x y \<longrightarrow> R y z \<longrightarrow> R x z)"
d33fc5228aae added predicates trans_on and transp_on and redefined trans and transp to be abbreviations
desharna
parents: 76697
diff changeset
   710
  by (simp add: transp_on_def)
d33fc5228aae added predicates trans_on and transp_on and redefined trans and transp to be abbreviations
desharna
parents: 76697
diff changeset
   711
d33fc5228aae added predicates trans_on and transp_on and redefined trans and transp to be abbreviations
desharna
parents: 76697
diff changeset
   712
text \<open>@{thm [source] trans_def} and @{thm [source] transp_def} are for backward compatibility.\<close>
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
   713
76745
201cbd9027fc added lemma transp_on_trans_on_eq[pred_set_conv]
desharna
parents: 76744
diff changeset
   714
lemma transp_on_trans_on_eq[pred_set_conv]: "transp_on A (\<lambda>x y. (x, y) \<in> r) \<longleftrightarrow> trans_on A r"
201cbd9027fc added lemma transp_on_trans_on_eq[pred_set_conv]
desharna
parents: 76744
diff changeset
   715
  by (simp add: trans_on_def transp_on_def)
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
   716
76745
201cbd9027fc added lemma transp_on_trans_on_eq[pred_set_conv]
desharna
parents: 76744
diff changeset
   717
lemmas transp_trans_eq = transp_on_trans_on_eq[of UNIV] \<comment> \<open>For backward compatibility\<close>
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
   718
76746
76f93e2620fe added lemmas trans_onI and transp_onI
desharna
parents: 76745
diff changeset
   719
lemma trans_onI:
76f93e2620fe added lemmas trans_onI and transp_onI
desharna
parents: 76745
diff changeset
   720
  "(\<And>x y z. x \<in> A \<Longrightarrow> y \<in> A \<Longrightarrow> z \<in> A \<Longrightarrow> (x, y) \<in> r \<Longrightarrow> (y, z) \<in> r \<Longrightarrow> (x, z) \<in> r) \<Longrightarrow>
76f93e2620fe added lemmas trans_onI and transp_onI
desharna
parents: 76745
diff changeset
   721
  trans_on A r"
76f93e2620fe added lemmas trans_onI and transp_onI
desharna
parents: 76745
diff changeset
   722
  unfolding trans_on_def
76f93e2620fe added lemmas trans_onI and transp_onI
desharna
parents: 76745
diff changeset
   723
  by (intro ballI) iprover
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
   724
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
   725
lemma transI [intro?]: "(\<And>x y z. (x, y) \<in> r \<Longrightarrow> (y, z) \<in> r \<Longrightarrow> (x, z) \<in> r) \<Longrightarrow> trans r"
76746
76f93e2620fe added lemmas trans_onI and transp_onI
desharna
parents: 76745
diff changeset
   726
  by (rule trans_onI)
46694
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
   727
76746
76f93e2620fe added lemmas trans_onI and transp_onI
desharna
parents: 76745
diff changeset
   728
lemma transp_onI:
76f93e2620fe added lemmas trans_onI and transp_onI
desharna
parents: 76745
diff changeset
   729
  "(\<And>x y z. x \<in> A \<Longrightarrow> y \<in> A \<Longrightarrow> z \<in> A \<Longrightarrow> R x y \<Longrightarrow> R y z \<Longrightarrow> R x z) \<Longrightarrow> transp_on A R"
76f93e2620fe added lemmas trans_onI and transp_onI
desharna
parents: 76745
diff changeset
   730
  by (rule trans_onI[to_pred])
76f93e2620fe added lemmas trans_onI and transp_onI
desharna
parents: 76745
diff changeset
   731
76f93e2620fe added lemmas trans_onI and transp_onI
desharna
parents: 76745
diff changeset
   732
lemma transpI [intro?]: "(\<And>x y z. R x y \<Longrightarrow> R y z \<Longrightarrow> R x z) \<Longrightarrow> transp R"
76f93e2620fe added lemmas trans_onI and transp_onI
desharna
parents: 76745
diff changeset
   733
  by (rule transI[to_pred])
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
   734
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
   735
lemma transE:
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
   736
  assumes "trans r" and "(x, y) \<in> r" and "(y, z) \<in> r"
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
   737
  obtains "(x, z) \<in> r"
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
   738
  using assms by (unfold trans_def) iprover
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
   739
46694
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
   740
lemma transpE:
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
   741
  assumes "transp r" and "r x y" and "r y z"
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
   742
  obtains "r x z"
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
   743
  using assms by (rule transE [to_pred])
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
   744
76747
53e40173cae5 added lemmas trans_onD and transp_onD
desharna
parents: 76746
diff changeset
   745
lemma trans_onD:
53e40173cae5 added lemmas trans_onD and transp_onD
desharna
parents: 76746
diff changeset
   746
  "trans_on A r \<Longrightarrow> x \<in> A \<Longrightarrow> y \<in> A \<Longrightarrow> z \<in> A \<Longrightarrow> (x, y) \<in> r \<Longrightarrow> (y, z) \<in> r \<Longrightarrow> (x, z) \<in> r"
53e40173cae5 added lemmas trans_onD and transp_onD
desharna
parents: 76746
diff changeset
   747
  unfolding trans_on_def
53e40173cae5 added lemmas trans_onD and transp_onD
desharna
parents: 76746
diff changeset
   748
  by (elim ballE) iprover+
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
   749
76747
53e40173cae5 added lemmas trans_onD and transp_onD
desharna
parents: 76746
diff changeset
   750
lemma transD[dest?]: "trans r \<Longrightarrow> (x, y) \<in> r \<Longrightarrow> (y, z) \<in> r \<Longrightarrow> (x, z) \<in> r"
53e40173cae5 added lemmas trans_onD and transp_onD
desharna
parents: 76746
diff changeset
   751
  by (simp add: trans_onD[of UNIV r x y z])
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
   752
76747
53e40173cae5 added lemmas trans_onD and transp_onD
desharna
parents: 76746
diff changeset
   753
lemma transp_onD: "transp_on A R \<Longrightarrow> x \<in> A \<Longrightarrow> y \<in> A \<Longrightarrow> z \<in> A \<Longrightarrow> R x y \<Longrightarrow> R y z \<Longrightarrow> R x z"
53e40173cae5 added lemmas trans_onD and transp_onD
desharna
parents: 76746
diff changeset
   754
  by (rule trans_onD[to_pred])
53e40173cae5 added lemmas trans_onD and transp_onD
desharna
parents: 76746
diff changeset
   755
53e40173cae5 added lemmas trans_onD and transp_onD
desharna
parents: 76746
diff changeset
   756
lemma transpD[dest?]: "transp R \<Longrightarrow> R x y \<Longrightarrow> R y z \<Longrightarrow> R x z"
53e40173cae5 added lemmas trans_onD and transp_onD
desharna
parents: 76746
diff changeset
   757
  by (rule transD[to_pred])
46694
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
   758
82339
53f3e72020b9 tuned variable names such that A \<subseteq> B
desharna
parents: 82337
diff changeset
   759
lemma trans_on_subset: "trans_on B r \<Longrightarrow> A \<subseteq> B \<Longrightarrow> trans_on A r"
76748
b35ffbe82031 added lemmas trans_on_subset and transp_on_subset
desharna
parents: 76747
diff changeset
   760
  by (auto simp: trans_on_def)
b35ffbe82031 added lemmas trans_on_subset and transp_on_subset
desharna
parents: 76747
diff changeset
   761
82339
53f3e72020b9 tuned variable names such that A \<subseteq> B
desharna
parents: 82337
diff changeset
   762
lemma transp_on_subset: "transp_on B R \<Longrightarrow> A \<subseteq> B \<Longrightarrow> transp_on A R"
76748
b35ffbe82031 added lemmas trans_on_subset and transp_on_subset
desharna
parents: 76747
diff changeset
   763
  by (auto simp: transp_on_def)
46694
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
   764
79905
1f509d01c9e3 added lemmas antisymp_on_image, asymp_on_image, irreflp_on_image, reflp_on_image, symp_on_image, totalp_on_image, and transp_on_image
desharna
parents: 77695
diff changeset
   765
lemma transp_on_image: "transp_on (f ` A) R \<longleftrightarrow> transp_on A (\<lambda>a b. R (f a) (f b))"
1f509d01c9e3 added lemmas antisymp_on_image, asymp_on_image, irreflp_on_image, reflp_on_image, symp_on_image, totalp_on_image, and transp_on_image
desharna
parents: 77695
diff changeset
   766
  by (simp add: transp_on_def)
1f509d01c9e3 added lemmas antisymp_on_image, asymp_on_image, irreflp_on_image, reflp_on_image, symp_on_image, totalp_on_image, and transp_on_image
desharna
parents: 77695
diff changeset
   767
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
   768
lemma trans_Int: "trans r \<Longrightarrow> trans s \<Longrightarrow> trans (r \<inter> s)"
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
   769
  by (fast intro: transI elim: transE)
46692
1f8b766224f6 tuned structure; dropped already existing syntax declarations
haftmann
parents: 46691
diff changeset
   770
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
   771
lemma transp_inf: "transp r \<Longrightarrow> transp s \<Longrightarrow> transp (r \<sqinter> s)"
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
   772
  by (fact trans_Int [to_pred])
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
   773
69275
9bbd5497befd clarified status of legacy input abbreviations
haftmann
parents: 68455
diff changeset
   774
lemma trans_INTER: "\<forall>x\<in>S. trans (r x) \<Longrightarrow> trans (\<Inter>(r ` S))"
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
   775
  by (fast intro: transI elim: transD)
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
   776
69275
9bbd5497befd clarified status of legacy input abbreviations
haftmann
parents: 68455
diff changeset
   777
lemma transp_INF: "\<forall>x\<in>S. transp (r x) \<Longrightarrow> transp (\<Sqinter>(r ` S))"
64584
142ac30b68fe added lemmas demanded by FIXMEs
haftmann
parents: 63612
diff changeset
   778
  by (fact trans_INTER [to_pred])
76744
44a3e883ccda fixed code-generation failure
desharna
parents: 76743
diff changeset
   779
44a3e883ccda fixed code-generation failure
desharna
parents: 76743
diff changeset
   780
lemma trans_on_join [code]:
44a3e883ccda fixed code-generation failure
desharna
parents: 76743
diff changeset
   781
  "trans_on A r \<longleftrightarrow> (\<forall>(x, y1) \<in> r. x \<in> A \<longrightarrow> y1 \<in> A \<longrightarrow>
44a3e883ccda fixed code-generation failure
desharna
parents: 76743
diff changeset
   782
    (\<forall>(y2, z) \<in> r. y1 = y2 \<longrightarrow> z \<in> A \<longrightarrow> (x, z) \<in> r))"
44a3e883ccda fixed code-generation failure
desharna
parents: 76743
diff changeset
   783
  by (auto simp: trans_on_def)
44a3e883ccda fixed code-generation failure
desharna
parents: 76743
diff changeset
   784
44a3e883ccda fixed code-generation failure
desharna
parents: 76743
diff changeset
   785
lemma trans_join: "trans r \<longleftrightarrow> (\<forall>(x, y1) \<in> r. \<forall>(y2, z) \<in> r. y1 = y2 \<longrightarrow> (x, z) \<in> r)"
46694
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
   786
  by (auto simp add: trans_def)
46692
1f8b766224f6 tuned structure; dropped already existing syntax declarations
haftmann
parents: 46691
diff changeset
   787
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
   788
lemma transp_trans: "transp r \<longleftrightarrow> trans {(x, y). r x y}"
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
   789
  by (simp add: trans_def transp_def)
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
   790
82272
a317d9e27a03 Strengthened and renamed lemmas antisymp_equality and transp_equality
desharna
parents: 82271
diff changeset
   791
lemma transp_on_equality[simp]: "transp_on A (=)"
a317d9e27a03 Strengthened and renamed lemmas antisymp_equality and transp_equality
desharna
parents: 82271
diff changeset
   792
  by (auto intro: transp_onI)
46692
1f8b766224f6 tuned structure; dropped already existing syntax declarations
haftmann
parents: 46691
diff changeset
   793
82294
b36353e62b90 added lemmas antisym_on_bot[simp], asym_on_bot[simp], irrefl_on_bot[simp], sym_on_bot[simp], trans_on_bot[simp]
desharna
parents: 82287
diff changeset
   794
lemma trans_on_bot[simp]: "trans_on A \<bottom>"
b36353e62b90 added lemmas antisym_on_bot[simp], asym_on_bot[simp], irrefl_on_bot[simp], sym_on_bot[simp], trans_on_bot[simp]
desharna
parents: 82287
diff changeset
   795
  by (simp add: trans_on_def)
b36353e62b90 added lemmas antisym_on_bot[simp], asym_on_bot[simp], irrefl_on_bot[simp], sym_on_bot[simp], trans_on_bot[simp]
desharna
parents: 82287
diff changeset
   796
82287
6ace531790b4 added lemmas, antisymp_on_bot[simp], asymp_on_bot[simp], irreflp_on_bot[simp], left_unique_bot[simp], symp_on_bot[simp], transp_on_bot[simp]
desharna
parents: 82286
diff changeset
   797
lemma transp_on_bot[simp]: "transp_on A \<bottom>"
82294
b36353e62b90 added lemmas antisym_on_bot[simp], asym_on_bot[simp], irrefl_on_bot[simp], sym_on_bot[simp], trans_on_bot[simp]
desharna
parents: 82287
diff changeset
   798
  using trans_on_bot[to_pred] .
82287
6ace531790b4 added lemmas, antisymp_on_bot[simp], asymp_on_bot[simp], irreflp_on_bot[simp], left_unique_bot[simp], symp_on_bot[simp], transp_on_bot[simp]
desharna
parents: 82286
diff changeset
   799
82297
d10a49b7b620 added lemmas, refl_on_top[simp], reflp_on_top[simp], sym_on_top[simp], symp_on_top[simp], trans_on_top[simp], transp_on_top[simp], total_on_top[simp], totalp_on_top[simp]
desharna
parents: 82295
diff changeset
   800
lemma trans_on_top[simp]: "trans_on A \<top>"
d10a49b7b620 added lemmas, refl_on_top[simp], reflp_on_top[simp], sym_on_top[simp], symp_on_top[simp], trans_on_top[simp], transp_on_top[simp], total_on_top[simp], totalp_on_top[simp]
desharna
parents: 82295
diff changeset
   801
  by (simp add: trans_on_def)
d10a49b7b620 added lemmas, refl_on_top[simp], reflp_on_top[simp], sym_on_top[simp], symp_on_top[simp], trans_on_top[simp], transp_on_top[simp], total_on_top[simp], totalp_on_top[simp]
desharna
parents: 82295
diff changeset
   802
d10a49b7b620 added lemmas, refl_on_top[simp], reflp_on_top[simp], sym_on_top[simp], symp_on_top[simp], trans_on_top[simp], transp_on_top[simp], total_on_top[simp], totalp_on_top[simp]
desharna
parents: 82295
diff changeset
   803
lemma transp_on_top[simp]: "transp_on A \<top>"
d10a49b7b620 added lemmas, refl_on_top[simp], reflp_on_top[simp], sym_on_top[simp], symp_on_top[simp], trans_on_top[simp], transp_on_top[simp], total_on_top[simp], totalp_on_top[simp]
desharna
parents: 82295
diff changeset
   804
  by (simp add: transp_on_def)
d10a49b7b620 added lemmas, refl_on_top[simp], reflp_on_top[simp], sym_on_top[simp], symp_on_top[simp], trans_on_top[simp], transp_on_top[simp], total_on_top[simp], totalp_on_top[simp]
desharna
parents: 82295
diff changeset
   805
63563
0bcd79da075b prefer [simp] over [iff] as [iff] break HOL-UNITY
Andreas Lochbihler
parents: 63561
diff changeset
   806
lemma transp_empty [simp]: "transp (\<lambda>x y. False)"
82287
6ace531790b4 added lemmas, antisymp_on_bot[simp], asymp_on_bot[simp], irreflp_on_bot[simp], left_unique_bot[simp], symp_on_bot[simp], transp_on_bot[simp]
desharna
parents: 82286
diff changeset
   807
  using transp_on_bot unfolding bot_fun_def bot_bool_def .
63561
fba08009ff3e add lemmas contributed by Peter Gammie
Andreas Lochbihler
parents: 63404
diff changeset
   808
63563
0bcd79da075b prefer [simp] over [iff] as [iff] break HOL-UNITY
Andreas Lochbihler
parents: 63561
diff changeset
   809
lemma trans_singleton [simp]: "trans {(a, a)}"
63612
7195acc2fe93 misc tuning and modernization;
wenzelm
parents: 63563
diff changeset
   810
  by (blast intro: transI)
63561
fba08009ff3e add lemmas contributed by Peter Gammie
Andreas Lochbihler
parents: 63404
diff changeset
   811
63563
0bcd79da075b prefer [simp] over [iff] as [iff] break HOL-UNITY
Andreas Lochbihler
parents: 63561
diff changeset
   812
lemma transp_singleton [simp]: "transp (\<lambda>x y. x = a \<and> y = a)"
63612
7195acc2fe93 misc tuning and modernization;
wenzelm
parents: 63563
diff changeset
   813
  by (simp add: transp_def)
7195acc2fe93 misc tuning and modernization;
wenzelm
parents: 63563
diff changeset
   814
76877
c9e091867206 strengthened and renamed lemmas asym_on_iff_irrefl_on_if_trans and asymp_on_iff_irreflp_on_if_transp
desharna
parents: 76773
diff changeset
   815
lemma asym_on_iff_irrefl_on_if_trans_on: "trans_on A r \<Longrightarrow> asym_on A r \<longleftrightarrow> irrefl_on A r"
c9e091867206 strengthened and renamed lemmas asym_on_iff_irrefl_on_if_trans and asymp_on_iff_irreflp_on_if_transp
desharna
parents: 76773
diff changeset
   816
  by (auto intro: irrefl_on_if_asym_on dest: trans_onD irrefl_onD)
76574
7bc934b99faf added lemmas asym_if_irrefl_and_trans and asymp_if_irreflp_and_transp
desharna
parents: 76573
diff changeset
   817
76877
c9e091867206 strengthened and renamed lemmas asym_on_iff_irrefl_on_if_trans and asymp_on_iff_irreflp_on_if_transp
desharna
parents: 76773
diff changeset
   818
lemma asymp_on_iff_irreflp_on_if_transp_on: "transp_on A R \<Longrightarrow> asymp_on A R \<longleftrightarrow> irreflp_on A R"
c9e091867206 strengthened and renamed lemmas asym_on_iff_irrefl_on_if_trans and asymp_on_iff_irreflp_on_if_transp
desharna
parents: 76773
diff changeset
   819
  by (rule asym_on_iff_irrefl_on_if_trans_on[to_pred])
76574
7bc934b99faf added lemmas asym_if_irrefl_and_trans and asymp_if_irreflp_and_transp
desharna
parents: 76573
diff changeset
   820
76749
11a24dab1880 strengthened and renamed lemmas preorder.transp_(ge|gr|le|less)
desharna
parents: 76748
diff changeset
   821
lemma (in preorder) transp_on_le[simp]: "transp_on A (\<le>)"
11a24dab1880 strengthened and renamed lemmas preorder.transp_(ge|gr|le|less)
desharna
parents: 76748
diff changeset
   822
  by (auto intro: transp_onI order_trans)
11a24dab1880 strengthened and renamed lemmas preorder.transp_(ge|gr|le|less)
desharna
parents: 76748
diff changeset
   823
11a24dab1880 strengthened and renamed lemmas preorder.transp_(ge|gr|le|less)
desharna
parents: 76748
diff changeset
   824
lemma (in preorder) transp_on_less[simp]: "transp_on A (<)"
11a24dab1880 strengthened and renamed lemmas preorder.transp_(ge|gr|le|less)
desharna
parents: 76748
diff changeset
   825
  by (auto intro: transp_onI less_trans)
11a24dab1880 strengthened and renamed lemmas preorder.transp_(ge|gr|le|less)
desharna
parents: 76748
diff changeset
   826
11a24dab1880 strengthened and renamed lemmas preorder.transp_(ge|gr|le|less)
desharna
parents: 76748
diff changeset
   827
lemma (in preorder) transp_on_ge[simp]: "transp_on A (\<ge>)"
11a24dab1880 strengthened and renamed lemmas preorder.transp_(ge|gr|le|less)
desharna
parents: 76748
diff changeset
   828
  by (auto intro: transp_onI order_trans)
11a24dab1880 strengthened and renamed lemmas preorder.transp_(ge|gr|le|less)
desharna
parents: 76748
diff changeset
   829
11a24dab1880 strengthened and renamed lemmas preorder.transp_(ge|gr|le|less)
desharna
parents: 76748
diff changeset
   830
lemma (in preorder) transp_on_greater[simp]: "transp_on A (>)"
11a24dab1880 strengthened and renamed lemmas preorder.transp_(ge|gr|le|less)
desharna
parents: 76748
diff changeset
   831
  by (auto intro: transp_onI less_trans)
66434
5d7e770c7d5d added sorted_wrt to List; added Data_Structures/Binomial_Heap.thy
nipkow
parents: 64634
diff changeset
   832
63376
4c0cc2b356f0 default one-step rules for predicates on relations;
haftmann
parents: 62343
diff changeset
   833
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60057
diff changeset
   834
subsubsection \<open>Totality\<close>
46692
1f8b766224f6 tuned structure; dropped already existing syntax declarations
haftmann
parents: 46691
diff changeset
   835
76571
5a13f1519f5d added type annotations and tuned formatting
desharna
parents: 76570
diff changeset
   836
definition total_on :: "'a set \<Rightarrow> 'a rel \<Rightarrow> bool" where
5a13f1519f5d added type annotations and tuned formatting
desharna
parents: 76570
diff changeset
   837
  "total_on A r \<longleftrightarrow> (\<forall>x\<in>A. \<forall>y\<in>A. x \<noteq> y \<longrightarrow> (x, y) \<in> r \<or> (y, x) \<in> r)"
29859
33bff35f1335 Moved Order_Relation into Library and moved some of it into Relation.
nipkow
parents: 29609
diff changeset
   838
76571
5a13f1519f5d added type annotations and tuned formatting
desharna
parents: 76570
diff changeset
   839
abbreviation total :: "'a rel \<Rightarrow> bool" where
5a13f1519f5d added type annotations and tuned formatting
desharna
parents: 76570
diff changeset
   840
  "total \<equiv> total_on UNIV"
63561
fba08009ff3e add lemmas contributed by Peter Gammie
Andreas Lochbihler
parents: 63404
diff changeset
   841
76571
5a13f1519f5d added type annotations and tuned formatting
desharna
parents: 76570
diff changeset
   842
definition totalp_on :: "'a set \<Rightarrow> ('a \<Rightarrow> 'a \<Rightarrow> bool) \<Rightarrow> bool" where
75466
5f2a1efd0560 added predicate totalp_on and abbreviation totalp
desharna
parents: 74975
diff changeset
   843
  "totalp_on A R \<longleftrightarrow> (\<forall>x \<in> A. \<forall>y \<in> A. x \<noteq> y \<longrightarrow> R x y \<or> R y x)"
5f2a1efd0560 added predicate totalp_on and abbreviation totalp
desharna
parents: 74975
diff changeset
   844
76571
5a13f1519f5d added type annotations and tuned formatting
desharna
parents: 76570
diff changeset
   845
abbreviation totalp :: "('a \<Rightarrow> 'a \<Rightarrow> bool) \<Rightarrow> bool" where
75466
5f2a1efd0560 added predicate totalp_on and abbreviation totalp
desharna
parents: 74975
diff changeset
   846
  "totalp \<equiv> totalp_on UNIV"
5f2a1efd0560 added predicate totalp_on and abbreviation totalp
desharna
parents: 74975
diff changeset
   847
77048
1c358879bfd3 proper name for lemma totalp_on_total_on_eq
desharna
parents: 76948
diff changeset
   848
lemma totalp_on_total_on_eq[pred_set_conv]: "totalp_on A (\<lambda>x y. (x, y) \<in> r) \<longleftrightarrow> total_on A r"
75541
a4fa039a6a60 added lemma totalp_on_total_on_eq[pred_set_conv]
desharna
parents: 75540
diff changeset
   849
  by (simp add: totalp_on_def total_on_def)
a4fa039a6a60 added lemma totalp_on_total_on_eq[pred_set_conv]
desharna
parents: 75540
diff changeset
   850
76571
5a13f1519f5d added type annotations and tuned formatting
desharna
parents: 76570
diff changeset
   851
lemma total_onI [intro?]:
5a13f1519f5d added type annotations and tuned formatting
desharna
parents: 76570
diff changeset
   852
  "(\<And>x y. x \<in> A \<Longrightarrow> y \<in> A \<Longrightarrow> x \<noteq> y \<Longrightarrow> (x, y) \<in> r \<or> (y, x) \<in> r) \<Longrightarrow> total_on A r"
5a13f1519f5d added type annotations and tuned formatting
desharna
parents: 76570
diff changeset
   853
  unfolding total_on_def by blast
5a13f1519f5d added type annotations and tuned formatting
desharna
parents: 76570
diff changeset
   854
5a13f1519f5d added type annotations and tuned formatting
desharna
parents: 76570
diff changeset
   855
lemma totalI: "(\<And>x y. x \<noteq> y \<Longrightarrow> (x, y) \<in> r \<or> (y, x) \<in> r) \<Longrightarrow> total r"
5a13f1519f5d added type annotations and tuned formatting
desharna
parents: 76570
diff changeset
   856
  by (rule total_onI)
5a13f1519f5d added type annotations and tuned formatting
desharna
parents: 76570
diff changeset
   857
5a13f1519f5d added type annotations and tuned formatting
desharna
parents: 76570
diff changeset
   858
lemma totalp_onI: "(\<And>x y. x \<in> A \<Longrightarrow> y \<in> A \<Longrightarrow> x \<noteq> y \<Longrightarrow> R x y \<or> R y x) \<Longrightarrow> totalp_on A R"
76588
82a36e3d1b55 rewrite proofs using to_pred attribute on existing lemmas
desharna
parents: 76574
diff changeset
   859
  by (rule total_onI[to_pred])
75466
5f2a1efd0560 added predicate totalp_on and abbreviation totalp
desharna
parents: 74975
diff changeset
   860
5f2a1efd0560 added predicate totalp_on and abbreviation totalp
desharna
parents: 74975
diff changeset
   861
lemma totalpI: "(\<And>x y. x \<noteq> y \<Longrightarrow> R x y \<or> R y x) \<Longrightarrow> totalp R"
76588
82a36e3d1b55 rewrite proofs using to_pred attribute on existing lemmas
desharna
parents: 76574
diff changeset
   862
  by (rule totalI[to_pred])
75466
5f2a1efd0560 added predicate totalp_on and abbreviation totalp
desharna
parents: 74975
diff changeset
   863
5f2a1efd0560 added predicate totalp_on and abbreviation totalp
desharna
parents: 74975
diff changeset
   864
lemma totalp_onD:
5f2a1efd0560 added predicate totalp_on and abbreviation totalp
desharna
parents: 74975
diff changeset
   865
  "totalp_on A R \<Longrightarrow> x \<in> A \<Longrightarrow> y \<in> A \<Longrightarrow> x \<noteq> y \<Longrightarrow> R x y \<or> R y x"
5f2a1efd0560 added predicate totalp_on and abbreviation totalp
desharna
parents: 74975
diff changeset
   866
  by (simp add: totalp_on_def)
5f2a1efd0560 added predicate totalp_on and abbreviation totalp
desharna
parents: 74975
diff changeset
   867
5f2a1efd0560 added predicate totalp_on and abbreviation totalp
desharna
parents: 74975
diff changeset
   868
lemma totalpD: "totalp R \<Longrightarrow> x \<noteq> y \<Longrightarrow> R x y \<or> R y x"
5f2a1efd0560 added predicate totalp_on and abbreviation totalp
desharna
parents: 74975
diff changeset
   869
  by (simp add: totalp_onD)
5f2a1efd0560 added predicate totalp_on and abbreviation totalp
desharna
parents: 74975
diff changeset
   870
82297
d10a49b7b620 added lemmas, refl_on_top[simp], reflp_on_top[simp], sym_on_top[simp], symp_on_top[simp], trans_on_top[simp], transp_on_top[simp], total_on_top[simp], totalp_on_top[simp]
desharna
parents: 82295
diff changeset
   871
lemma total_on_top[simp]: "total_on A \<top>"
d10a49b7b620 added lemmas, refl_on_top[simp], reflp_on_top[simp], sym_on_top[simp], symp_on_top[simp], trans_on_top[simp], transp_on_top[simp], total_on_top[simp], totalp_on_top[simp]
desharna
parents: 82295
diff changeset
   872
  by (simp add: total_on_def)
d10a49b7b620 added lemmas, refl_on_top[simp], reflp_on_top[simp], sym_on_top[simp], symp_on_top[simp], trans_on_top[simp], transp_on_top[simp], total_on_top[simp], totalp_on_top[simp]
desharna
parents: 82295
diff changeset
   873
d10a49b7b620 added lemmas, refl_on_top[simp], reflp_on_top[simp], sym_on_top[simp], symp_on_top[simp], trans_on_top[simp], transp_on_top[simp], total_on_top[simp], totalp_on_top[simp]
desharna
parents: 82295
diff changeset
   874
lemma totalp_on_top[simp]: "totalp_on A \<top>"
d10a49b7b620 added lemmas, refl_on_top[simp], reflp_on_top[simp], sym_on_top[simp], symp_on_top[simp], trans_on_top[simp], transp_on_top[simp], total_on_top[simp], totalp_on_top[simp]
desharna
parents: 82295
diff changeset
   875
  by (simp add: totalp_on_def)
d10a49b7b620 added lemmas, refl_on_top[simp], reflp_on_top[simp], sym_on_top[simp], symp_on_top[simp], trans_on_top[simp], transp_on_top[simp], total_on_top[simp], totalp_on_top[simp]
desharna
parents: 82295
diff changeset
   876
82285
d804c8e78ed3 added lemmas totalp_on_mono[mono], totalp_on_mono_strong, totalp_on_mono_stronger, totalp_on_mono_stronger_alt
desharna
parents: 82283
diff changeset
   877
lemma totalp_on_mono_stronger:
d804c8e78ed3 added lemmas totalp_on_mono[mono], totalp_on_mono_strong, totalp_on_mono_stronger, totalp_on_mono_stronger_alt
desharna
parents: 82283
diff changeset
   878
  fixes
d804c8e78ed3 added lemmas totalp_on_mono[mono], totalp_on_mono_strong, totalp_on_mono_stronger, totalp_on_mono_stronger_alt
desharna
parents: 82283
diff changeset
   879
    A :: "'a set" and R :: "'a \<Rightarrow> 'a \<Rightarrow> bool" and
d804c8e78ed3 added lemmas totalp_on_mono[mono], totalp_on_mono_strong, totalp_on_mono_stronger, totalp_on_mono_stronger_alt
desharna
parents: 82283
diff changeset
   880
    B :: "'b set" and Q :: "'b \<Rightarrow> 'b \<Rightarrow> bool" and
d804c8e78ed3 added lemmas totalp_on_mono[mono], totalp_on_mono_strong, totalp_on_mono_stronger, totalp_on_mono_stronger_alt
desharna
parents: 82283
diff changeset
   881
    f :: "'a \<Rightarrow> 'b"
d804c8e78ed3 added lemmas totalp_on_mono[mono], totalp_on_mono_strong, totalp_on_mono_stronger, totalp_on_mono_stronger_alt
desharna
parents: 82283
diff changeset
   882
  assumes "totalp_on B Q" and "f ` A \<subseteq> B" and
d804c8e78ed3 added lemmas totalp_on_mono[mono], totalp_on_mono_strong, totalp_on_mono_stronger, totalp_on_mono_stronger_alt
desharna
parents: 82283
diff changeset
   883
    Q_imp_R: "\<And>x y. x \<in> A \<Longrightarrow> y \<in> A \<Longrightarrow> Q (f x) (f y) \<Longrightarrow> R x y" and
d804c8e78ed3 added lemmas totalp_on_mono[mono], totalp_on_mono_strong, totalp_on_mono_stronger, totalp_on_mono_stronger_alt
desharna
parents: 82283
diff changeset
   884
    inj_f: "inj_on f A"
d804c8e78ed3 added lemmas totalp_on_mono[mono], totalp_on_mono_strong, totalp_on_mono_stronger, totalp_on_mono_stronger_alt
desharna
parents: 82283
diff changeset
   885
  shows "totalp_on A R"
d804c8e78ed3 added lemmas totalp_on_mono[mono], totalp_on_mono_strong, totalp_on_mono_stronger, totalp_on_mono_stronger_alt
desharna
parents: 82283
diff changeset
   886
proof (rule totalp_onI)
d804c8e78ed3 added lemmas totalp_on_mono[mono], totalp_on_mono_strong, totalp_on_mono_stronger, totalp_on_mono_stronger_alt
desharna
parents: 82283
diff changeset
   887
  fix x y :: 'a
d804c8e78ed3 added lemmas totalp_on_mono[mono], totalp_on_mono_strong, totalp_on_mono_stronger, totalp_on_mono_stronger_alt
desharna
parents: 82283
diff changeset
   888
  assume "x \<in> A" and "y \<in> A" and "x \<noteq> y"
d804c8e78ed3 added lemmas totalp_on_mono[mono], totalp_on_mono_strong, totalp_on_mono_stronger, totalp_on_mono_stronger_alt
desharna
parents: 82283
diff changeset
   889
  hence "f x \<in> B" and "f y \<in> B" and "f x \<noteq> f y"
d804c8e78ed3 added lemmas totalp_on_mono[mono], totalp_on_mono_strong, totalp_on_mono_stronger, totalp_on_mono_stronger_alt
desharna
parents: 82283
diff changeset
   890
    using \<open>f ` A \<subseteq> B\<close> inj_f by (auto dest: inj_onD)
d804c8e78ed3 added lemmas totalp_on_mono[mono], totalp_on_mono_strong, totalp_on_mono_stronger, totalp_on_mono_stronger_alt
desharna
parents: 82283
diff changeset
   891
  hence "Q (f x) (f y) \<or> Q (f y) (f x)"
d804c8e78ed3 added lemmas totalp_on_mono[mono], totalp_on_mono_strong, totalp_on_mono_stronger, totalp_on_mono_stronger_alt
desharna
parents: 82283
diff changeset
   892
    using \<open>totalp_on B Q\<close> by (iprover dest: totalp_onD)
d804c8e78ed3 added lemmas totalp_on_mono[mono], totalp_on_mono_strong, totalp_on_mono_stronger, totalp_on_mono_stronger_alt
desharna
parents: 82283
diff changeset
   893
  thus "R x y \<or> R y x"
d804c8e78ed3 added lemmas totalp_on_mono[mono], totalp_on_mono_strong, totalp_on_mono_stronger, totalp_on_mono_stronger_alt
desharna
parents: 82283
diff changeset
   894
    using Q_imp_R \<open>x \<in> A\<close> \<open>y \<in> A\<close> by iprover
d804c8e78ed3 added lemmas totalp_on_mono[mono], totalp_on_mono_strong, totalp_on_mono_stronger, totalp_on_mono_stronger_alt
desharna
parents: 82283
diff changeset
   895
qed
d804c8e78ed3 added lemmas totalp_on_mono[mono], totalp_on_mono_strong, totalp_on_mono_stronger, totalp_on_mono_stronger_alt
desharna
parents: 82283
diff changeset
   896
d804c8e78ed3 added lemmas totalp_on_mono[mono], totalp_on_mono_strong, totalp_on_mono_stronger, totalp_on_mono_stronger_alt
desharna
parents: 82283
diff changeset
   897
lemma totalp_on_mono_stronger_alt:
d804c8e78ed3 added lemmas totalp_on_mono[mono], totalp_on_mono_strong, totalp_on_mono_stronger, totalp_on_mono_stronger_alt
desharna
parents: 82283
diff changeset
   898
  fixes
d804c8e78ed3 added lemmas totalp_on_mono[mono], totalp_on_mono_strong, totalp_on_mono_stronger, totalp_on_mono_stronger_alt
desharna
parents: 82283
diff changeset
   899
    A :: "'a set" and R :: "'a \<Rightarrow> 'a \<Rightarrow> bool" and
d804c8e78ed3 added lemmas totalp_on_mono[mono], totalp_on_mono_strong, totalp_on_mono_stronger, totalp_on_mono_stronger_alt
desharna
parents: 82283
diff changeset
   900
    B :: "'b set" and Q :: "'b \<Rightarrow> 'b \<Rightarrow> bool" and
d804c8e78ed3 added lemmas totalp_on_mono[mono], totalp_on_mono_strong, totalp_on_mono_stronger, totalp_on_mono_stronger_alt
desharna
parents: 82283
diff changeset
   901
    f :: "'b \<Rightarrow> 'a"
d804c8e78ed3 added lemmas totalp_on_mono[mono], totalp_on_mono_strong, totalp_on_mono_stronger, totalp_on_mono_stronger_alt
desharna
parents: 82283
diff changeset
   902
  assumes "totalp_on B Q" and "A \<subseteq> f ` B" and
d804c8e78ed3 added lemmas totalp_on_mono[mono], totalp_on_mono_strong, totalp_on_mono_stronger, totalp_on_mono_stronger_alt
desharna
parents: 82283
diff changeset
   903
    Q_imp_R: "\<And>x y. x \<in> B \<Longrightarrow> y \<in> B \<Longrightarrow> Q x y \<Longrightarrow> R (f x) (f y)"
d804c8e78ed3 added lemmas totalp_on_mono[mono], totalp_on_mono_strong, totalp_on_mono_stronger, totalp_on_mono_stronger_alt
desharna
parents: 82283
diff changeset
   904
  shows "totalp_on A R"
d804c8e78ed3 added lemmas totalp_on_mono[mono], totalp_on_mono_strong, totalp_on_mono_stronger, totalp_on_mono_stronger_alt
desharna
parents: 82283
diff changeset
   905
proof (rule totalp_onI)
d804c8e78ed3 added lemmas totalp_on_mono[mono], totalp_on_mono_strong, totalp_on_mono_stronger, totalp_on_mono_stronger_alt
desharna
parents: 82283
diff changeset
   906
  fix x y :: 'a
d804c8e78ed3 added lemmas totalp_on_mono[mono], totalp_on_mono_strong, totalp_on_mono_stronger, totalp_on_mono_stronger_alt
desharna
parents: 82283
diff changeset
   907
  assume "x \<in> A" and "y \<in> A" and "x \<noteq> y"
d804c8e78ed3 added lemmas totalp_on_mono[mono], totalp_on_mono_strong, totalp_on_mono_stronger, totalp_on_mono_stronger_alt
desharna
parents: 82283
diff changeset
   908
  then obtain x' y' where "x' \<in> B" and "x = f x'" and "y' \<in> B" and "y = f y'" and "x' \<noteq> y'"
d804c8e78ed3 added lemmas totalp_on_mono[mono], totalp_on_mono_strong, totalp_on_mono_stronger, totalp_on_mono_stronger_alt
desharna
parents: 82283
diff changeset
   909
    using \<open>A \<subseteq> f ` B\<close> by blast
d804c8e78ed3 added lemmas totalp_on_mono[mono], totalp_on_mono_strong, totalp_on_mono_stronger, totalp_on_mono_stronger_alt
desharna
parents: 82283
diff changeset
   910
  hence "Q x' y' \<or> Q y' x'"
d804c8e78ed3 added lemmas totalp_on_mono[mono], totalp_on_mono_strong, totalp_on_mono_stronger, totalp_on_mono_stronger_alt
desharna
parents: 82283
diff changeset
   911
    using \<open>totalp_on B Q\<close>[THEN totalp_onD] by blast
d804c8e78ed3 added lemmas totalp_on_mono[mono], totalp_on_mono_strong, totalp_on_mono_stronger, totalp_on_mono_stronger_alt
desharna
parents: 82283
diff changeset
   912
  hence "R (f x') (f y') \<or> R (f y') (f x')"
d804c8e78ed3 added lemmas totalp_on_mono[mono], totalp_on_mono_strong, totalp_on_mono_stronger, totalp_on_mono_stronger_alt
desharna
parents: 82283
diff changeset
   913
    using Q_imp_R \<open>x' \<in> B\<close> \<open>y' \<in> B\<close> by blast
d804c8e78ed3 added lemmas totalp_on_mono[mono], totalp_on_mono_strong, totalp_on_mono_stronger, totalp_on_mono_stronger_alt
desharna
parents: 82283
diff changeset
   914
  thus "R x y \<or> R y x"
d804c8e78ed3 added lemmas totalp_on_mono[mono], totalp_on_mono_strong, totalp_on_mono_stronger, totalp_on_mono_stronger_alt
desharna
parents: 82283
diff changeset
   915
    using \<open>x = f x'\<close> \<open>y = f y'\<close> by blast
d804c8e78ed3 added lemmas totalp_on_mono[mono], totalp_on_mono_strong, totalp_on_mono_stronger, totalp_on_mono_stronger_alt
desharna
parents: 82283
diff changeset
   916
qed
d804c8e78ed3 added lemmas totalp_on_mono[mono], totalp_on_mono_strong, totalp_on_mono_stronger, totalp_on_mono_stronger_alt
desharna
parents: 82283
diff changeset
   917
d804c8e78ed3 added lemmas totalp_on_mono[mono], totalp_on_mono_strong, totalp_on_mono_stronger, totalp_on_mono_stronger_alt
desharna
parents: 82283
diff changeset
   918
lemma totalp_on_mono_strong:
d804c8e78ed3 added lemmas totalp_on_mono[mono], totalp_on_mono_strong, totalp_on_mono_stronger, totalp_on_mono_stronger_alt
desharna
parents: 82283
diff changeset
   919
  "totalp_on B Q \<Longrightarrow> A \<subseteq> B \<Longrightarrow> (\<And>x y. x \<in> A \<Longrightarrow> y \<in> A \<Longrightarrow> Q x y \<Longrightarrow> R x y) \<Longrightarrow> totalp_on A R"
d804c8e78ed3 added lemmas totalp_on_mono[mono], totalp_on_mono_strong, totalp_on_mono_stronger, totalp_on_mono_stronger_alt
desharna
parents: 82283
diff changeset
   920
  using totalp_on_mono_stronger[of B Q "\<lambda>x. x" A R, simplified] .
d804c8e78ed3 added lemmas totalp_on_mono[mono], totalp_on_mono_strong, totalp_on_mono_stronger, totalp_on_mono_stronger_alt
desharna
parents: 82283
diff changeset
   921
d804c8e78ed3 added lemmas totalp_on_mono[mono], totalp_on_mono_strong, totalp_on_mono_stronger, totalp_on_mono_stronger_alt
desharna
parents: 82283
diff changeset
   922
lemma totalp_on_mono[mono]: "A \<subseteq> B \<Longrightarrow> Q \<le> R \<Longrightarrow> totalp_on B Q \<le> totalp_on A R"
d804c8e78ed3 added lemmas totalp_on_mono[mono], totalp_on_mono_strong, totalp_on_mono_stronger, totalp_on_mono_stronger_alt
desharna
parents: 82283
diff changeset
   923
  by (auto intro: totalp_on_mono_strong)
d804c8e78ed3 added lemmas totalp_on_mono[mono], totalp_on_mono_strong, totalp_on_mono_stronger, totalp_on_mono_stronger_alt
desharna
parents: 82283
diff changeset
   924
82339
53f3e72020b9 tuned variable names such that A \<subseteq> B
desharna
parents: 82337
diff changeset
   925
lemma total_on_subset: "total_on B r \<Longrightarrow> A \<subseteq> B \<Longrightarrow> total_on A r"
75504
75e1b94396c6 added lemmas reflp_on_subset, totalp_on_subset, and total_on_subset
desharna
parents: 75503
diff changeset
   926
  by (auto simp: total_on_def)
75e1b94396c6 added lemmas reflp_on_subset, totalp_on_subset, and total_on_subset
desharna
parents: 75503
diff changeset
   927
82339
53f3e72020b9 tuned variable names such that A \<subseteq> B
desharna
parents: 82337
diff changeset
   928
lemma totalp_on_subset: "totalp_on B R \<Longrightarrow> A \<subseteq> B \<Longrightarrow> totalp_on A R"
82285
d804c8e78ed3 added lemmas totalp_on_mono[mono], totalp_on_mono_strong, totalp_on_mono_stronger, totalp_on_mono_stronger_alt
desharna
parents: 82283
diff changeset
   929
  using totalp_on_mono_strong .
75504
75e1b94396c6 added lemmas reflp_on_subset, totalp_on_subset, and total_on_subset
desharna
parents: 75503
diff changeset
   930
79905
1f509d01c9e3 added lemmas antisymp_on_image, asymp_on_image, irreflp_on_image, reflp_on_image, symp_on_image, totalp_on_image, and transp_on_image
desharna
parents: 77695
diff changeset
   931
lemma totalp_on_image:
1f509d01c9e3 added lemmas antisymp_on_image, asymp_on_image, irreflp_on_image, reflp_on_image, symp_on_image, totalp_on_image, and transp_on_image
desharna
parents: 77695
diff changeset
   932
  assumes "inj_on f A"
1f509d01c9e3 added lemmas antisymp_on_image, asymp_on_image, irreflp_on_image, reflp_on_image, symp_on_image, totalp_on_image, and transp_on_image
desharna
parents: 77695
diff changeset
   933
  shows "totalp_on (f ` A) R \<longleftrightarrow> totalp_on A (\<lambda>a b. R (f a) (f b))"
1f509d01c9e3 added lemmas antisymp_on_image, asymp_on_image, irreflp_on_image, reflp_on_image, symp_on_image, totalp_on_image, and transp_on_image
desharna
parents: 77695
diff changeset
   934
  using assms by (auto simp: totalp_on_def inj_on_def)
1f509d01c9e3 added lemmas antisymp_on_image, asymp_on_image, irreflp_on_image, reflp_on_image, symp_on_image, totalp_on_image, and transp_on_image
desharna
parents: 77695
diff changeset
   935
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
   936
lemma total_on_empty [simp]: "total_on {} r"
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
   937
  by (simp add: total_on_def)
46692
1f8b766224f6 tuned structure; dropped already existing syntax declarations
haftmann
parents: 46691
diff changeset
   938
75540
02719bd7b4e6 added lemma reflp_on_empty[simp] and totalp_on_empty[simp]
desharna
parents: 75532
diff changeset
   939
lemma totalp_on_empty [simp]: "totalp_on {} R"
76253
08f555c6f3b5 strengthened lemma total_on_singleton and added lemma totalp_on_singleton
desharna
parents: 75669
diff changeset
   940
  by (simp add: totalp_on_def)
75540
02719bd7b4e6 added lemma reflp_on_empty[simp] and totalp_on_empty[simp]
desharna
parents: 75532
diff changeset
   941
76253
08f555c6f3b5 strengthened lemma total_on_singleton and added lemma totalp_on_singleton
desharna
parents: 75669
diff changeset
   942
lemma total_on_singleton [simp]: "total_on {x} r"
08f555c6f3b5 strengthened lemma total_on_singleton and added lemma totalp_on_singleton
desharna
parents: 75669
diff changeset
   943
  by (simp add: total_on_def)
08f555c6f3b5 strengthened lemma total_on_singleton and added lemma totalp_on_singleton
desharna
parents: 75669
diff changeset
   944
08f555c6f3b5 strengthened lemma total_on_singleton and added lemma totalp_on_singleton
desharna
parents: 75669
diff changeset
   945
lemma totalp_on_singleton [simp]: "totalp_on {x} R"
08f555c6f3b5 strengthened lemma total_on_singleton and added lemma totalp_on_singleton
desharna
parents: 75669
diff changeset
   946
  by (simp add: totalp_on_def)
63612
7195acc2fe93 misc tuning and modernization;
wenzelm
parents: 63563
diff changeset
   947
76521
15f868460de9 renamed lemmas linorder.totalp_on_(ge|greater|le|less) and preorder.reflp_(ge|le)
desharna
parents: 76499
diff changeset
   948
lemma (in linorder) totalp_on_less[simp]: "totalp_on A (<)"
76285
8e777e0e206a added lemmas linorder.totalp_ge[simp], linorder.totalp_greater[simp], linorder.totalp_le[simp], and linorder.totalp_less[simp]
desharna
parents: 76258
diff changeset
   949
  by (auto intro: totalp_onI)
8e777e0e206a added lemmas linorder.totalp_ge[simp], linorder.totalp_greater[simp], linorder.totalp_le[simp], and linorder.totalp_less[simp]
desharna
parents: 76258
diff changeset
   950
76521
15f868460de9 renamed lemmas linorder.totalp_on_(ge|greater|le|less) and preorder.reflp_(ge|le)
desharna
parents: 76499
diff changeset
   951
lemma (in linorder) totalp_on_greater[simp]: "totalp_on A (>)"
76285
8e777e0e206a added lemmas linorder.totalp_ge[simp], linorder.totalp_greater[simp], linorder.totalp_le[simp], and linorder.totalp_less[simp]
desharna
parents: 76258
diff changeset
   952
  by (auto intro: totalp_onI)
8e777e0e206a added lemmas linorder.totalp_ge[simp], linorder.totalp_greater[simp], linorder.totalp_le[simp], and linorder.totalp_less[simp]
desharna
parents: 76258
diff changeset
   953
76521
15f868460de9 renamed lemmas linorder.totalp_on_(ge|greater|le|less) and preorder.reflp_(ge|le)
desharna
parents: 76499
diff changeset
   954
lemma (in linorder) totalp_on_le[simp]: "totalp_on A (\<le>)"
76285
8e777e0e206a added lemmas linorder.totalp_ge[simp], linorder.totalp_greater[simp], linorder.totalp_le[simp], and linorder.totalp_less[simp]
desharna
parents: 76258
diff changeset
   955
  by (rule totalp_onI, rule linear)
8e777e0e206a added lemmas linorder.totalp_ge[simp], linorder.totalp_greater[simp], linorder.totalp_le[simp], and linorder.totalp_less[simp]
desharna
parents: 76258
diff changeset
   956
76521
15f868460de9 renamed lemmas linorder.totalp_on_(ge|greater|le|less) and preorder.reflp_(ge|le)
desharna
parents: 76499
diff changeset
   957
lemma (in linorder) totalp_on_ge[simp]: "totalp_on A (\<ge>)"
76285
8e777e0e206a added lemmas linorder.totalp_ge[simp], linorder.totalp_greater[simp], linorder.totalp_le[simp], and linorder.totalp_less[simp]
desharna
parents: 76258
diff changeset
   958
  by (rule totalp_onI, rule linear)
8e777e0e206a added lemmas linorder.totalp_ge[simp], linorder.totalp_greater[simp], linorder.totalp_le[simp], and linorder.totalp_less[simp]
desharna
parents: 76258
diff changeset
   959
46692
1f8b766224f6 tuned structure; dropped already existing syntax declarations
haftmann
parents: 46691
diff changeset
   960
82282
919eb0e67930 Moved predicate left_unique from HOL.Transfer to HOL.Relation
desharna
parents: 82279
diff changeset
   961
subsubsection \<open>Left uniqueness\<close>
919eb0e67930 Moved predicate left_unique from HOL.Transfer to HOL.Relation
desharna
parents: 82279
diff changeset
   962
919eb0e67930 Moved predicate left_unique from HOL.Transfer to HOL.Relation
desharna
parents: 82279
diff changeset
   963
definition left_unique :: "('a \<Rightarrow> 'b \<Rightarrow> bool) \<Rightarrow> bool" where
919eb0e67930 Moved predicate left_unique from HOL.Transfer to HOL.Relation
desharna
parents: 82279
diff changeset
   964
  "left_unique R \<longleftrightarrow> (\<forall>x y z. R x z \<longrightarrow> R y z \<longrightarrow> x = y)"
919eb0e67930 Moved predicate left_unique from HOL.Transfer to HOL.Relation
desharna
parents: 82279
diff changeset
   965
919eb0e67930 Moved predicate left_unique from HOL.Transfer to HOL.Relation
desharna
parents: 82279
diff changeset
   966
lemma left_uniqueI: "(\<And>x y z. A x z \<Longrightarrow> A y z \<Longrightarrow> x = y) \<Longrightarrow> left_unique A"
919eb0e67930 Moved predicate left_unique from HOL.Transfer to HOL.Relation
desharna
parents: 82279
diff changeset
   967
  unfolding left_unique_def by blast
919eb0e67930 Moved predicate left_unique from HOL.Transfer to HOL.Relation
desharna
parents: 82279
diff changeset
   968
919eb0e67930 Moved predicate left_unique from HOL.Transfer to HOL.Relation
desharna
parents: 82279
diff changeset
   969
lemma left_uniqueD: "left_unique A \<Longrightarrow> A x z \<Longrightarrow> A y z \<Longrightarrow> x = y"
919eb0e67930 Moved predicate left_unique from HOL.Transfer to HOL.Relation
desharna
parents: 82279
diff changeset
   970
  unfolding left_unique_def by blast
919eb0e67930 Moved predicate left_unique from HOL.Transfer to HOL.Relation
desharna
parents: 82279
diff changeset
   971
82283
f7c5a010115a added lemma left_unique_iff_Uniq
desharna
parents: 82282
diff changeset
   972
lemma left_unique_iff_Uniq: "left_unique r \<longleftrightarrow> (\<forall>y. \<exists>\<^sub>\<le>\<^sub>1x. r x y)"
f7c5a010115a added lemma left_unique_iff_Uniq
desharna
parents: 82282
diff changeset
   973
  unfolding Uniq_def left_unique_def by blast
f7c5a010115a added lemma left_unique_iff_Uniq
desharna
parents: 82282
diff changeset
   974
82287
6ace531790b4 added lemmas, antisymp_on_bot[simp], asymp_on_bot[simp], irreflp_on_bot[simp], left_unique_bot[simp], symp_on_bot[simp], transp_on_bot[simp]
desharna
parents: 82286
diff changeset
   975
lemma left_unique_bot[simp]: "left_unique \<bottom>"
6ace531790b4 added lemmas, antisymp_on_bot[simp], asymp_on_bot[simp], irreflp_on_bot[simp], left_unique_bot[simp], symp_on_bot[simp], transp_on_bot[simp]
desharna
parents: 82286
diff changeset
   976
  by (simp add: left_unique_def)
6ace531790b4 added lemmas, antisymp_on_bot[simp], asymp_on_bot[simp], irreflp_on_bot[simp], left_unique_bot[simp], symp_on_bot[simp], transp_on_bot[simp]
desharna
parents: 82286
diff changeset
   977
82325
9a9120ec4815 added lemmas left_unique_mono_strong, left_unique_mono[mono], right_unique_mono_strong, right_unique_mono[mono]
desharna
parents: 82313
diff changeset
   978
lemma left_unique_mono_strong:
9a9120ec4815 added lemmas left_unique_mono_strong, left_unique_mono[mono], right_unique_mono_strong, right_unique_mono[mono]
desharna
parents: 82313
diff changeset
   979
  "left_unique Q \<Longrightarrow> (\<And>x y. R x y \<Longrightarrow> Q x y) \<Longrightarrow> left_unique R"
9a9120ec4815 added lemmas left_unique_mono_strong, left_unique_mono[mono], right_unique_mono_strong, right_unique_mono[mono]
desharna
parents: 82313
diff changeset
   980
  by (rule left_uniqueI) (auto dest: left_uniqueD)
9a9120ec4815 added lemmas left_unique_mono_strong, left_unique_mono[mono], right_unique_mono_strong, right_unique_mono[mono]
desharna
parents: 82313
diff changeset
   981
9a9120ec4815 added lemmas left_unique_mono_strong, left_unique_mono[mono], right_unique_mono_strong, right_unique_mono[mono]
desharna
parents: 82313
diff changeset
   982
lemma left_unique_mono[mono]: "R \<le> Q \<Longrightarrow> left_unique Q \<le> left_unique R"
9a9120ec4815 added lemmas left_unique_mono_strong, left_unique_mono[mono], right_unique_mono_strong, right_unique_mono[mono]
desharna
parents: 82313
diff changeset
   983
  using left_unique_mono_strong[of Q R]
9a9120ec4815 added lemmas left_unique_mono_strong, left_unique_mono[mono], right_unique_mono_strong, right_unique_mono[mono]
desharna
parents: 82313
diff changeset
   984
  by (simp add: le_fun_def)
9a9120ec4815 added lemmas left_unique_mono_strong, left_unique_mono[mono], right_unique_mono_strong, right_unique_mono[mono]
desharna
parents: 82313
diff changeset
   985
82282
919eb0e67930 Moved predicate left_unique from HOL.Transfer to HOL.Relation
desharna
parents: 82279
diff changeset
   986
919eb0e67930 Moved predicate left_unique from HOL.Transfer to HOL.Relation
desharna
parents: 82279
diff changeset
   987
subsubsection \<open>Right uniqueness\<close>
46692
1f8b766224f6 tuned structure; dropped already existing syntax declarations
haftmann
parents: 46691
diff changeset
   988
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
   989
definition single_valued :: "('a \<times> 'b) set \<Rightarrow> bool"
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
   990
  where "single_valued r \<longleftrightarrow> (\<forall>x y. (x, y) \<in> r \<longrightarrow> (\<forall>z. (x, z) \<in> r \<longrightarrow> y = z))"
46692
1f8b766224f6 tuned structure; dropped already existing syntax declarations
haftmann
parents: 46691
diff changeset
   991
82275
c17902fcf5e7 moved predicate right_unique to theory Relation
desharna
parents: 82273
diff changeset
   992
definition right_unique :: "('a \<Rightarrow> 'b \<Rightarrow> bool) \<Rightarrow> bool" where
c17902fcf5e7 moved predicate right_unique to theory Relation
desharna
parents: 82273
diff changeset
   993
  "right_unique R \<longleftrightarrow> (\<forall>x y z. R x y \<longrightarrow> R x z \<longrightarrow> y = z)"
c17902fcf5e7 moved predicate right_unique to theory Relation
desharna
parents: 82273
diff changeset
   994
82279
d260714c4f8e removed single_valuedp (use right_unique instead)
desharna
parents: 82275
diff changeset
   995
lemma right_unique_single_valued_eq [pred_set_conv]:
d260714c4f8e removed single_valuedp (use right_unique instead)
desharna
parents: 82275
diff changeset
   996
  "right_unique (\<lambda>x y. (x, y) \<in> r) \<longleftrightarrow> single_valued r"
d260714c4f8e removed single_valuedp (use right_unique instead)
desharna
parents: 82275
diff changeset
   997
  by (simp add: single_valued_def right_unique_def)
82275
c17902fcf5e7 moved predicate right_unique to theory Relation
desharna
parents: 82273
diff changeset
   998
82279
d260714c4f8e removed single_valuedp (use right_unique instead)
desharna
parents: 82275
diff changeset
   999
lemma right_unique_iff_Uniq:
d260714c4f8e removed single_valuedp (use right_unique instead)
desharna
parents: 82275
diff changeset
  1000
  "right_unique r \<longleftrightarrow> (\<forall>x. \<exists>\<^sub>\<le>\<^sub>1y. r x y)"
d260714c4f8e removed single_valuedp (use right_unique instead)
desharna
parents: 82275
diff changeset
  1001
  unfolding Uniq_def right_unique_def by auto
71827
5e315defb038 the Uniq quantifier
paulson <lp15@cam.ac.uk>
parents: 71404
diff changeset
  1002
64634
5bd30359e46e proper logical constants
haftmann
parents: 64633
diff changeset
  1003
lemma single_valuedI:
5bd30359e46e proper logical constants
haftmann
parents: 64633
diff changeset
  1004
  "(\<And>x y. (x, y) \<in> r \<Longrightarrow> (\<And>z. (x, z) \<in> r \<Longrightarrow> y = z)) \<Longrightarrow> single_valued r"
5bd30359e46e proper logical constants
haftmann
parents: 64633
diff changeset
  1005
  unfolding single_valued_def by blast
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1006
82275
c17902fcf5e7 moved predicate right_unique to theory Relation
desharna
parents: 82273
diff changeset
  1007
lemma right_uniqueI: "(\<And>x y z. R x y \<Longrightarrow> R x z \<Longrightarrow> y = z) \<Longrightarrow> right_unique R"
c17902fcf5e7 moved predicate right_unique to theory Relation
desharna
parents: 82273
diff changeset
  1008
  unfolding right_unique_def by fast
c17902fcf5e7 moved predicate right_unique to theory Relation
desharna
parents: 82273
diff changeset
  1009
64634
5bd30359e46e proper logical constants
haftmann
parents: 64633
diff changeset
  1010
lemma single_valuedD:
5bd30359e46e proper logical constants
haftmann
parents: 64633
diff changeset
  1011
  "single_valued r \<Longrightarrow> (x, y) \<in> r \<Longrightarrow> (x, z) \<in> r \<Longrightarrow> y = z"
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1012
  by (simp add: single_valued_def)
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1013
82275
c17902fcf5e7 moved predicate right_unique to theory Relation
desharna
parents: 82273
diff changeset
  1014
lemma right_uniqueD: "right_unique R \<Longrightarrow> R x y \<Longrightarrow> R x z \<Longrightarrow> y = z"
c17902fcf5e7 moved predicate right_unique to theory Relation
desharna
parents: 82273
diff changeset
  1015
  unfolding right_unique_def by fast
c17902fcf5e7 moved predicate right_unique to theory Relation
desharna
parents: 82273
diff changeset
  1016
64634
5bd30359e46e proper logical constants
haftmann
parents: 64633
diff changeset
  1017
lemma single_valued_empty [simp]:
5bd30359e46e proper logical constants
haftmann
parents: 64633
diff changeset
  1018
  "single_valued {}"
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1019
  by (simp add: single_valued_def)
52392
ee996ca08de3 added lemma
nipkow
parents: 50420
diff changeset
  1020
82279
d260714c4f8e removed single_valuedp (use right_unique instead)
desharna
parents: 82275
diff changeset
  1021
lemma right_unique_bot[simp]: "right_unique \<bottom>"
d260714c4f8e removed single_valuedp (use right_unique instead)
desharna
parents: 82275
diff changeset
  1022
  by (fact single_valued_empty[to_pred])
64634
5bd30359e46e proper logical constants
haftmann
parents: 64633
diff changeset
  1023
82325
9a9120ec4815 added lemmas left_unique_mono_strong, left_unique_mono[mono], right_unique_mono_strong, right_unique_mono[mono]
desharna
parents: 82313
diff changeset
  1024
lemma right_unique_mono_strong:
9a9120ec4815 added lemmas left_unique_mono_strong, left_unique_mono[mono], right_unique_mono_strong, right_unique_mono[mono]
desharna
parents: 82313
diff changeset
  1025
  "right_unique Q \<Longrightarrow> (\<And>x y. R x y \<Longrightarrow> Q x y) \<Longrightarrow> right_unique R"
9a9120ec4815 added lemmas left_unique_mono_strong, left_unique_mono[mono], right_unique_mono_strong, right_unique_mono[mono]
desharna
parents: 82313
diff changeset
  1026
  by (rule right_uniqueI) (auto dest: right_uniqueD)
9a9120ec4815 added lemmas left_unique_mono_strong, left_unique_mono[mono], right_unique_mono_strong, right_unique_mono[mono]
desharna
parents: 82313
diff changeset
  1027
9a9120ec4815 added lemmas left_unique_mono_strong, left_unique_mono[mono], right_unique_mono_strong, right_unique_mono[mono]
desharna
parents: 82313
diff changeset
  1028
lemma right_unique_mono[mono]: "R \<le> Q \<Longrightarrow> right_unique Q \<le> right_unique R"
9a9120ec4815 added lemmas left_unique_mono_strong, left_unique_mono[mono], right_unique_mono_strong, right_unique_mono[mono]
desharna
parents: 82313
diff changeset
  1029
  using right_unique_mono_strong[of Q R]
9a9120ec4815 added lemmas left_unique_mono_strong, left_unique_mono[mono], right_unique_mono_strong, right_unique_mono[mono]
desharna
parents: 82313
diff changeset
  1030
  by (simp add: le_fun_def)
9a9120ec4815 added lemmas left_unique_mono_strong, left_unique_mono[mono], right_unique_mono_strong, right_unique_mono[mono]
desharna
parents: 82313
diff changeset
  1031
64634
5bd30359e46e proper logical constants
haftmann
parents: 64633
diff changeset
  1032
lemma single_valued_subset:
5bd30359e46e proper logical constants
haftmann
parents: 64633
diff changeset
  1033
  "r \<subseteq> s \<Longrightarrow> single_valued s \<Longrightarrow> single_valued r"
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1034
  unfolding single_valued_def by blast
11136
e34e7f6d9b57 moved inv_image to Relation
oheimb
parents: 10832
diff changeset
  1035
82279
d260714c4f8e removed single_valuedp (use right_unique instead)
desharna
parents: 82275
diff changeset
  1036
lemma right_unique_less_eq: "r \<le> s \<Longrightarrow> right_unique s \<Longrightarrow> right_unique r"
64634
5bd30359e46e proper logical constants
haftmann
parents: 64633
diff changeset
  1037
  by (fact single_valued_subset [to_pred])
5bd30359e46e proper logical constants
haftmann
parents: 64633
diff changeset
  1038
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
  1039
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60057
diff changeset
  1040
subsection \<open>Relation operations\<close>
46694
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
  1041
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60057
diff changeset
  1042
subsubsection \<open>The identity relation\<close>
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
  1043
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1044
definition Id :: "'a rel"
69905
06f204a2f3c2 dropped superfluous declaration attribute
haftmann
parents: 69593
diff changeset
  1045
  where "Id = {p. \<exists>x. p = (x, x)}"
46692
1f8b766224f6 tuned structure; dropped already existing syntax declarations
haftmann
parents: 46691
diff changeset
  1046
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1047
lemma IdI [intro]: "(a, a) \<in> Id"
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1048
  by (simp add: Id_def)
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
  1049
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1050
lemma IdE [elim!]: "p \<in> Id \<Longrightarrow> (\<And>x. p = (x, x) \<Longrightarrow> P) \<Longrightarrow> P"
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1051
  unfolding Id_def by (iprover elim: CollectE)
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
  1052
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1053
lemma pair_in_Id_conv [iff]: "(a, b) \<in> Id \<longleftrightarrow> a = b"
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1054
  unfolding Id_def by blast
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
  1055
30198
922f944f03b2 name changes
nipkow
parents: 29859
diff changeset
  1056
lemma refl_Id: "refl Id"
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1057
  by (simp add: refl_on_def)
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
  1058
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
  1059
lemma antisym_Id: "antisym Id"
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61630
diff changeset
  1060
  \<comment> \<open>A strange result, since \<open>Id\<close> is also symmetric.\<close>
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1061
  by (simp add: antisym_def)
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
  1062
19228
30fce6da8cbe added many simple lemmas
huffman
parents: 17589
diff changeset
  1063
lemma sym_Id: "sym Id"
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1064
  by (simp add: sym_def)
19228
30fce6da8cbe added many simple lemmas
huffman
parents: 17589
diff changeset
  1065
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
  1066
lemma trans_Id: "trans Id"
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1067
  by (simp add: trans_def)
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
  1068
46692
1f8b766224f6 tuned structure; dropped already existing syntax declarations
haftmann
parents: 46691
diff changeset
  1069
lemma single_valued_Id [simp]: "single_valued Id"
1f8b766224f6 tuned structure; dropped already existing syntax declarations
haftmann
parents: 46691
diff changeset
  1070
  by (unfold single_valued_def) blast
1f8b766224f6 tuned structure; dropped already existing syntax declarations
haftmann
parents: 46691
diff changeset
  1071
1f8b766224f6 tuned structure; dropped already existing syntax declarations
haftmann
parents: 46691
diff changeset
  1072
lemma irrefl_diff_Id [simp]: "irrefl (r - Id)"
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1073
  by (simp add: irrefl_def)
46692
1f8b766224f6 tuned structure; dropped already existing syntax declarations
haftmann
parents: 46691
diff changeset
  1074
82313
df99e867c63e added lemma trans_on_diff_Id
desharna
parents: 82297
diff changeset
  1075
lemma trans_on_diff_Id: "trans_on A r \<Longrightarrow> antisym_on A r \<Longrightarrow> trans_on A (r - Id)"
df99e867c63e added lemma trans_on_diff_Id
desharna
parents: 82297
diff changeset
  1076
  by (blast intro: trans_onI dest: trans_onD antisym_onD)
df99e867c63e added lemma trans_on_diff_Id
desharna
parents: 82297
diff changeset
  1077
df99e867c63e added lemma trans_on_diff_Id
desharna
parents: 82297
diff changeset
  1078
lemma trans_diff_Id[no_atp]: "trans r \<Longrightarrow> antisym r \<Longrightarrow> trans (r - Id)"
df99e867c63e added lemma trans_on_diff_Id
desharna
parents: 82297
diff changeset
  1079
  using trans_on_diff_Id .
46692
1f8b766224f6 tuned structure; dropped already existing syntax declarations
haftmann
parents: 46691
diff changeset
  1080
1f8b766224f6 tuned structure; dropped already existing syntax declarations
haftmann
parents: 46691
diff changeset
  1081
lemma total_on_diff_Id [simp]: "total_on A (r - Id) = total_on A r"
1f8b766224f6 tuned structure; dropped already existing syntax declarations
haftmann
parents: 46691
diff changeset
  1082
  by (simp add: total_on_def)
1f8b766224f6 tuned structure; dropped already existing syntax declarations
haftmann
parents: 46691
diff changeset
  1083
62087
44841d07ef1d revisions to limits and derivatives, plus new lemmas
paulson
parents: 61955
diff changeset
  1084
lemma Id_fstsnd_eq: "Id = {x. fst x = snd x}"
44841d07ef1d revisions to limits and derivatives, plus new lemmas
paulson
parents: 61955
diff changeset
  1085
  by force
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
  1086
63376
4c0cc2b356f0 default one-step rules for predicates on relations;
haftmann
parents: 62343
diff changeset
  1087
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60057
diff changeset
  1088
subsubsection \<open>Diagonal: identity over a set\<close>
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
  1089
63612
7195acc2fe93 misc tuning and modernization;
wenzelm
parents: 63563
diff changeset
  1090
definition Id_on :: "'a set \<Rightarrow> 'a rel"
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1091
  where "Id_on A = (\<Union>x\<in>A. {(x, x)})"
46692
1f8b766224f6 tuned structure; dropped already existing syntax declarations
haftmann
parents: 46691
diff changeset
  1092
30198
922f944f03b2 name changes
nipkow
parents: 29859
diff changeset
  1093
lemma Id_on_empty [simp]: "Id_on {} = {}"
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1094
  by (simp add: Id_on_def)
13812
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13639
diff changeset
  1095
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1096
lemma Id_on_eqI: "a = b \<Longrightarrow> a \<in> A \<Longrightarrow> (a, b) \<in> Id_on A"
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1097
  by (simp add: Id_on_def)
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
  1098
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1099
lemma Id_onI [intro!]: "a \<in> A \<Longrightarrow> (a, a) \<in> Id_on A"
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1100
  by (rule Id_on_eqI) (rule refl)
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
  1101
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1102
lemma Id_onE [elim!]: "c \<in> Id_on A \<Longrightarrow> (\<And>x. x \<in> A \<Longrightarrow> c = (x, x) \<Longrightarrow> P) \<Longrightarrow> P"
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61630
diff changeset
  1103
  \<comment> \<open>The general elimination rule.\<close>
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1104
  unfolding Id_on_def by (iprover elim!: UN_E singletonE)
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
  1105
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1106
lemma Id_on_iff: "(x, y) \<in> Id_on A \<longleftrightarrow> x = y \<and> x \<in> A"
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1107
  by blast
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
  1108
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1109
lemma Id_on_def' [nitpick_unfold]: "Id_on {x. A x} = Collect (\<lambda>(x, y). x = y \<and> A x)"
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1110
  by auto
40923
be80c93ac0a2 adding a nice definition of Id_on for quickcheck and nitpick
bulwahn
parents: 36772
diff changeset
  1111
30198
922f944f03b2 name changes
nipkow
parents: 29859
diff changeset
  1112
lemma Id_on_subset_Times: "Id_on A \<subseteq> A \<times> A"
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1113
  by blast
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
  1114
46692
1f8b766224f6 tuned structure; dropped already existing syntax declarations
haftmann
parents: 46691
diff changeset
  1115
lemma refl_on_Id_on: "refl_on A (Id_on A)"
82248
e8c96013ea8a changed definition of refl_on
desharna
parents: 81134
diff changeset
  1116
  by (rule refl_onI[OF Id_onI])
46692
1f8b766224f6 tuned structure; dropped already existing syntax declarations
haftmann
parents: 46691
diff changeset
  1117
1f8b766224f6 tuned structure; dropped already existing syntax declarations
haftmann
parents: 46691
diff changeset
  1118
lemma antisym_Id_on [simp]: "antisym (Id_on A)"
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1119
  unfolding antisym_def by blast
46692
1f8b766224f6 tuned structure; dropped already existing syntax declarations
haftmann
parents: 46691
diff changeset
  1120
1f8b766224f6 tuned structure; dropped already existing syntax declarations
haftmann
parents: 46691
diff changeset
  1121
lemma sym_Id_on [simp]: "sym (Id_on A)"
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1122
  by (rule symI) clarify
46692
1f8b766224f6 tuned structure; dropped already existing syntax declarations
haftmann
parents: 46691
diff changeset
  1123
1f8b766224f6 tuned structure; dropped already existing syntax declarations
haftmann
parents: 46691
diff changeset
  1124
lemma trans_Id_on [simp]: "trans (Id_on A)"
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1125
  by (fast intro: transI elim: transD)
46692
1f8b766224f6 tuned structure; dropped already existing syntax declarations
haftmann
parents: 46691
diff changeset
  1126
1f8b766224f6 tuned structure; dropped already existing syntax declarations
haftmann
parents: 46691
diff changeset
  1127
lemma single_valued_Id_on [simp]: "single_valued (Id_on A)"
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1128
  unfolding single_valued_def by blast
46692
1f8b766224f6 tuned structure; dropped already existing syntax declarations
haftmann
parents: 46691
diff changeset
  1129
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
  1130
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60057
diff changeset
  1131
subsubsection \<open>Composition\<close>
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
  1132
81134
d23f5a898084 more syntax bundles;
wenzelm
parents: 80934
diff changeset
  1133
inductive_set relcomp  :: "('a \<times> 'b) set \<Rightarrow> ('b \<times> 'c) set \<Rightarrow> ('a \<times> 'c) set"
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1134
  for r :: "('a \<times> 'b) set" and s :: "('b \<times> 'c) set"
81134
d23f5a898084 more syntax bundles;
wenzelm
parents: 80934
diff changeset
  1135
  where relcompI [intro]: "(a, b) \<in> r \<Longrightarrow> (b, c) \<in> s \<Longrightarrow> (a, c) \<in> relcomp r s"
46692
1f8b766224f6 tuned structure; dropped already existing syntax declarations
haftmann
parents: 46691
diff changeset
  1136
81134
d23f5a898084 more syntax bundles;
wenzelm
parents: 80934
diff changeset
  1137
open_bundle relcomp_syntax
d23f5a898084 more syntax bundles;
wenzelm
parents: 80934
diff changeset
  1138
begin
d23f5a898084 more syntax bundles;
wenzelm
parents: 80934
diff changeset
  1139
notation relcomp  (infixr \<open>O\<close> 75) and relcompp  (infixr \<open>OO\<close> 75)
d23f5a898084 more syntax bundles;
wenzelm
parents: 80934
diff changeset
  1140
end
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
  1141
47434
b75ce48a93ee dropped abbreviation "pred_comp"; introduced infix notation "P OO Q" for "relcompp P Q"
griff
parents: 47433
diff changeset
  1142
lemmas relcomppI = relcompp.intros
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
  1143
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60057
diff changeset
  1144
text \<open>
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1145
  For historic reasons, the elimination rules are not wholly corresponding.
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1146
  Feel free to consolidate this.
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60057
diff changeset
  1147
\<close>
46694
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
  1148
47433
07f4bf913230 renamed "rel_comp" to "relcomp" (to be consistent with, e.g., "relpow")
griff
parents: 47087
diff changeset
  1149
inductive_cases relcompEpair: "(a, c) \<in> r O s"
47434
b75ce48a93ee dropped abbreviation "pred_comp"; introduced infix notation "P OO Q" for "relcompp P Q"
griff
parents: 47433
diff changeset
  1150
inductive_cases relcomppE [elim!]: "(r OO s) a c"
46694
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
  1151
47433
07f4bf913230 renamed "rel_comp" to "relcomp" (to be consistent with, e.g., "relpow")
griff
parents: 47087
diff changeset
  1152
lemma relcompE [elim!]: "xz \<in> r O s \<Longrightarrow>
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1153
  (\<And>x y z. xz = (x, z) \<Longrightarrow> (x, y) \<in> r \<Longrightarrow> (y, z) \<in> s  \<Longrightarrow> P) \<Longrightarrow> P"
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1154
  apply (cases xz)
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1155
  apply simp
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1156
  apply (erule relcompEpair)
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1157
  apply iprover
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1158
  done
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1159
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1160
lemma R_O_Id [simp]: "R O Id = R"
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1161
  by fast
46694
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
  1162
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1163
lemma Id_O_R [simp]: "Id O R = R"
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1164
  by fast
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1165
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1166
lemma relcomp_empty1 [simp]: "{} O R = {}"
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1167
  by blast
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
  1168
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1169
lemma relcompp_bot1 [simp]: "\<bottom> OO R = \<bottom>"
47433
07f4bf913230 renamed "rel_comp" to "relcomp" (to be consistent with, e.g., "relpow")
griff
parents: 47087
diff changeset
  1170
  by (fact relcomp_empty1 [to_pred])
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
  1171
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1172
lemma relcomp_empty2 [simp]: "R O {} = {}"
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1173
  by blast
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
  1174
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1175
lemma relcompp_bot2 [simp]: "R OO \<bottom> = \<bottom>"
47433
07f4bf913230 renamed "rel_comp" to "relcomp" (to be consistent with, e.g., "relpow")
griff
parents: 47087
diff changeset
  1176
  by (fact relcomp_empty2 [to_pred])
23185
1fa87978cf27 Added simp-rules: "R O {} = {}" and "{} O R = {}"
krauss
parents: 22172
diff changeset
  1177
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1178
lemma O_assoc: "(R O S) O T = R O (S O T)"
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1179
  by blast
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1180
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1181
lemma relcompp_assoc: "(r OO s) OO t = r OO (s OO t)"
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1182
  by (fact O_assoc [to_pred])
23185
1fa87978cf27 Added simp-rules: "R O {} = {}" and "{} O R = {}"
krauss
parents: 22172
diff changeset
  1183
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1184
lemma trans_O_subset: "trans r \<Longrightarrow> r O r \<subseteq> r"
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1185
  by (unfold trans_def) blast
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1186
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1187
lemma transp_relcompp_less_eq: "transp r \<Longrightarrow> r OO r \<le> r "
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1188
  by (fact trans_O_subset [to_pred])
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
  1189
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1190
lemma relcomp_mono: "r' \<subseteq> r \<Longrightarrow> s' \<subseteq> s \<Longrightarrow> r' O s' \<subseteq> r O s"
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1191
  by blast
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
  1192
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1193
lemma relcompp_mono: "r' \<le> r \<Longrightarrow> s' \<le> s \<Longrightarrow> r' OO s' \<le> r OO s "
47433
07f4bf913230 renamed "rel_comp" to "relcomp" (to be consistent with, e.g., "relpow")
griff
parents: 47087
diff changeset
  1194
  by (fact relcomp_mono [to_pred])
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
  1195
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1196
lemma relcomp_subset_Sigma: "r \<subseteq> A \<times> B \<Longrightarrow> s \<subseteq> B \<times> C \<Longrightarrow> r O s \<subseteq> A \<times> C"
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1197
  by blast
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1198
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1199
lemma relcomp_distrib [simp]: "R O (S \<union> T) = (R O S) \<union> (R O T)"
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1200
  by auto
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
  1201
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1202
lemma relcompp_distrib [simp]: "R OO (S \<squnion> T) = R OO S \<squnion> R OO T"
47433
07f4bf913230 renamed "rel_comp" to "relcomp" (to be consistent with, e.g., "relpow")
griff
parents: 47087
diff changeset
  1203
  by (fact relcomp_distrib [to_pred])
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1204
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1205
lemma relcomp_distrib2 [simp]: "(S \<union> T) O R = (S O R) \<union> (T O R)"
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1206
  by auto
28008
f945f8d9ad4d added distributivity of relation composition over union [simp]
krauss
parents: 26297
diff changeset
  1207
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1208
lemma relcompp_distrib2 [simp]: "(S \<squnion> T) OO R = S OO R \<squnion> T OO R"
47433
07f4bf913230 renamed "rel_comp" to "relcomp" (to be consistent with, e.g., "relpow")
griff
parents: 47087
diff changeset
  1209
  by (fact relcomp_distrib2 [to_pred])
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1210
69275
9bbd5497befd clarified status of legacy input abbreviations
haftmann
parents: 68455
diff changeset
  1211
lemma relcomp_UNION_distrib: "s O \<Union>(r ` I) = (\<Union>i\<in>I. s O r i) "
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1212
  by auto
28008
f945f8d9ad4d added distributivity of relation composition over union [simp]
krauss
parents: 26297
diff changeset
  1213
69275
9bbd5497befd clarified status of legacy input abbreviations
haftmann
parents: 68455
diff changeset
  1214
lemma relcompp_SUP_distrib: "s OO \<Squnion>(r ` I) = (\<Squnion>i\<in>I. s OO r i)"
64584
142ac30b68fe added lemmas demanded by FIXMEs
haftmann
parents: 63612
diff changeset
  1215
  by (fact relcomp_UNION_distrib [to_pred])
142ac30b68fe added lemmas demanded by FIXMEs
haftmann
parents: 63612
diff changeset
  1216
    
69275
9bbd5497befd clarified status of legacy input abbreviations
haftmann
parents: 68455
diff changeset
  1217
lemma relcomp_UNION_distrib2: "\<Union>(r ` I) O s = (\<Union>i\<in>I. r i O s) "
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1218
  by auto
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1219
69275
9bbd5497befd clarified status of legacy input abbreviations
haftmann
parents: 68455
diff changeset
  1220
lemma relcompp_SUP_distrib2: "\<Squnion>(r ` I) OO s = (\<Squnion>i\<in>I. r i OO s)"
64584
142ac30b68fe added lemmas demanded by FIXMEs
haftmann
parents: 63612
diff changeset
  1221
  by (fact relcomp_UNION_distrib2 [to_pred])
142ac30b68fe added lemmas demanded by FIXMEs
haftmann
parents: 63612
diff changeset
  1222
    
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1223
lemma single_valued_relcomp: "single_valued r \<Longrightarrow> single_valued s \<Longrightarrow> single_valued (r O s)"
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1224
  unfolding single_valued_def by blast
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1225
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1226
lemma relcomp_unfold: "r O s = {(x, z). \<exists>y. (x, y) \<in> r \<and> (y, z) \<in> s}"
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1227
  by (auto simp add: set_eq_iff)
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
  1228
58195
1fee63e0377d added various facts
haftmann
parents: 57111
diff changeset
  1229
lemma relcompp_apply: "(R OO S) a c \<longleftrightarrow> (\<exists>b. R a b \<and> S b c)"
1fee63e0377d added various facts
haftmann
parents: 57111
diff changeset
  1230
  unfolding relcomp_unfold [to_pred] ..
1fee63e0377d added various facts
haftmann
parents: 57111
diff changeset
  1231
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66441
diff changeset
  1232
lemma eq_OO: "(=) OO R = R"
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1233
  by blast
55083
0a689157e3ce move BNF_LFP up the dependency chain
blanchet
parents: 54611
diff changeset
  1234
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66441
diff changeset
  1235
lemma OO_eq: "R OO (=) = R"
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1236
  by blast
46664
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
  1237
63376
4c0cc2b356f0 default one-step rules for predicates on relations;
haftmann
parents: 62343
diff changeset
  1238
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60057
diff changeset
  1239
subsubsection \<open>Converse\<close>
12913
5ac498bffb6b fixed document;
wenzelm
parents: 12905
diff changeset
  1240
81134
d23f5a898084 more syntax bundles;
wenzelm
parents: 80934
diff changeset
  1241
inductive_set converse :: "('a \<times> 'b) set \<Rightarrow> ('b \<times> 'a) set"
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1242
  for r :: "('a \<times> 'b) set"
81134
d23f5a898084 more syntax bundles;
wenzelm
parents: 80934
diff changeset
  1243
  where "(a, b) \<in> r \<Longrightarrow> (b, a) \<in> converse r"
46692
1f8b766224f6 tuned structure; dropped already existing syntax declarations
haftmann
parents: 46691
diff changeset
  1244
81134
d23f5a898084 more syntax bundles;
wenzelm
parents: 80934
diff changeset
  1245
open_bundle converse_syntax
d23f5a898084 more syntax bundles;
wenzelm
parents: 80934
diff changeset
  1246
begin
d23f5a898084 more syntax bundles;
wenzelm
parents: 80934
diff changeset
  1247
notation
d23f5a898084 more syntax bundles;
wenzelm
parents: 80934
diff changeset
  1248
  converse  (\<open>(\<open>notation=\<open>postfix -1\<close>\<close>_\<inverse>)\<close> [1000] 999) and
d23f5a898084 more syntax bundles;
wenzelm
parents: 80934
diff changeset
  1249
  conversep  (\<open>(\<open>notation=\<open>postfix -1-1\<close>\<close>_\<inverse>\<inverse>)\<close> [1000] 1000)
61955
e96292f32c3c former "xsymbols" syntax is used by default, and ASCII replacement syntax with print mode "ASCII";
wenzelm
parents: 61799
diff changeset
  1250
notation (ASCII)
80934
8e72f55295fd more inner syntax markup: HOL;
wenzelm
parents: 80932
diff changeset
  1251
  converse  (\<open>(\<open>notation=\<open>postfix -1\<close>\<close>_^-1)\<close> [1000] 999) and
8e72f55295fd more inner syntax markup: HOL;
wenzelm
parents: 80932
diff changeset
  1252
  conversep (\<open>(\<open>notation=\<open>postfix -1-1\<close>\<close>_^--1)\<close> [1000] 1000)
81134
d23f5a898084 more syntax bundles;
wenzelm
parents: 80934
diff changeset
  1253
end
46694
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
  1254
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1255
lemma converseI [sym]: "(a, b) \<in> r \<Longrightarrow> (b, a) \<in> r\<inverse>"
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1256
  by (fact converse.intros)
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1257
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1258
lemma conversepI (* CANDIDATE [sym] *): "r a b \<Longrightarrow> r\<inverse>\<inverse> b a"
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1259
  by (fact conversep.intros)
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1260
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1261
lemma converseD [sym]: "(a, b) \<in> r\<inverse> \<Longrightarrow> (b, a) \<in> r"
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1262
  by (erule converse.cases) iprover
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1263
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1264
lemma conversepD (* CANDIDATE [sym] *): "r\<inverse>\<inverse> b a \<Longrightarrow> r a b"
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1265
  by (fact converseD [to_pred])
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1266
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1267
lemma converseE [elim!]: "yx \<in> r\<inverse> \<Longrightarrow> (\<And>x y. yx = (y, x) \<Longrightarrow> (x, y) \<in> r \<Longrightarrow> P) \<Longrightarrow> P"
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61630
diff changeset
  1268
  \<comment> \<open>More general than \<open>converseD\<close>, as it ``splits'' the member of the relation.\<close>
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1269
  apply (cases yx)
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1270
  apply simp
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1271
  apply (erule converse.cases)
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1272
  apply iprover
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1273
  done
46694
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
  1274
46882
6242b4bc05bc tuned simpset
noschinl
parents: 46833
diff changeset
  1275
lemmas conversepE [elim!] = conversep.cases
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1276
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1277
lemma converse_iff [iff]: "(a, b) \<in> r\<inverse> \<longleftrightarrow> (b, a) \<in> r"
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1278
  by (auto intro: converseI)
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1279
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1280
lemma conversep_iff [iff]: "r\<inverse>\<inverse> a b = r b a"
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1281
  by (fact converse_iff [to_pred])
46694
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
  1282
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1283
lemma converse_converse [simp]: "(r\<inverse>)\<inverse> = r"
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1284
  by (simp add: set_eq_iff)
46694
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
  1285
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1286
lemma conversep_conversep [simp]: "(r\<inverse>\<inverse>)\<inverse>\<inverse> = r"
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1287
  by (fact converse_converse [to_pred])
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1288
53680
c5096c22892b added lemmas and made concerse executable
nipkow
parents: 52749
diff changeset
  1289
lemma converse_empty[simp]: "{}\<inverse> = {}"
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1290
  by auto
53680
c5096c22892b added lemmas and made concerse executable
nipkow
parents: 52749
diff changeset
  1291
c5096c22892b added lemmas and made concerse executable
nipkow
parents: 52749
diff changeset
  1292
lemma converse_UNIV[simp]: "UNIV\<inverse> = UNIV"
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1293
  by auto
53680
c5096c22892b added lemmas and made concerse executable
nipkow
parents: 52749
diff changeset
  1294
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1295
lemma converse_relcomp: "(r O s)\<inverse> = s\<inverse> O r\<inverse>"
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1296
  by blast
46694
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
  1297
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1298
lemma converse_relcompp: "(r OO s)\<inverse>\<inverse> = s\<inverse>\<inverse> OO r\<inverse>\<inverse>"
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1299
  by (iprover intro: order_antisym conversepI relcomppI elim: relcomppE dest: conversepD)
46694
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
  1300
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1301
lemma converse_Int: "(r \<inter> s)\<inverse> = r\<inverse> \<inter> s\<inverse>"
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1302
  by blast
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1303
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1304
lemma converse_meet: "(r \<sqinter> s)\<inverse>\<inverse> = r\<inverse>\<inverse> \<sqinter> s\<inverse>\<inverse>"
46694
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
  1305
  by (simp add: inf_fun_def) (iprover intro: conversepI ext dest: conversepD)
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
  1306
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1307
lemma converse_Un: "(r \<union> s)\<inverse> = r\<inverse> \<union> s\<inverse>"
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1308
  by blast
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1309
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1310
lemma converse_join: "(r \<squnion> s)\<inverse>\<inverse> = r\<inverse>\<inverse> \<squnion> s\<inverse>\<inverse>"
46694
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
  1311
  by (simp add: sup_fun_def) (iprover intro: conversepI ext dest: conversepD)
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
  1312
69275
9bbd5497befd clarified status of legacy input abbreviations
haftmann
parents: 68455
diff changeset
  1313
lemma converse_INTER: "(\<Inter>(r ` S))\<inverse> = (\<Inter>x\<in>S. (r x)\<inverse>)"
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1314
  by fast
19228
30fce6da8cbe added many simple lemmas
huffman
parents: 17589
diff changeset
  1315
69275
9bbd5497befd clarified status of legacy input abbreviations
haftmann
parents: 68455
diff changeset
  1316
lemma converse_UNION: "(\<Union>(r ` S))\<inverse> = (\<Union>x\<in>S. (r x)\<inverse>)"
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1317
  by blast
19228
30fce6da8cbe added many simple lemmas
huffman
parents: 17589
diff changeset
  1318
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1319
lemma converse_mono[simp]: "r\<inverse> \<subseteq> s \<inverse> \<longleftrightarrow> r \<subseteq> s"
52749
ed416f4ac34e more converse(p) theorems; tuned proofs;
traytel
parents: 52730
diff changeset
  1320
  by auto
ed416f4ac34e more converse(p) theorems; tuned proofs;
traytel
parents: 52730
diff changeset
  1321
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1322
lemma conversep_mono[simp]: "r\<inverse>\<inverse> \<le> s \<inverse>\<inverse> \<longleftrightarrow> r \<le> s"
52749
ed416f4ac34e more converse(p) theorems; tuned proofs;
traytel
parents: 52730
diff changeset
  1323
  by (fact converse_mono[to_pred])
ed416f4ac34e more converse(p) theorems; tuned proofs;
traytel
parents: 52730
diff changeset
  1324
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1325
lemma converse_inject[simp]: "r\<inverse> = s \<inverse> \<longleftrightarrow> r = s"
52730
6bf02eb4ddf7 two useful relation theorems
traytel
parents: 52392
diff changeset
  1326
  by auto
6bf02eb4ddf7 two useful relation theorems
traytel
parents: 52392
diff changeset
  1327
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1328
lemma conversep_inject[simp]: "r\<inverse>\<inverse> = s \<inverse>\<inverse> \<longleftrightarrow> r = s"
52749
ed416f4ac34e more converse(p) theorems; tuned proofs;
traytel
parents: 52730
diff changeset
  1329
  by (fact converse_inject[to_pred])
ed416f4ac34e more converse(p) theorems; tuned proofs;
traytel
parents: 52730
diff changeset
  1330
63612
7195acc2fe93 misc tuning and modernization;
wenzelm
parents: 63563
diff changeset
  1331
lemma converse_subset_swap: "r \<subseteq> s \<inverse> \<longleftrightarrow> r \<inverse> \<subseteq> s"
52749
ed416f4ac34e more converse(p) theorems; tuned proofs;
traytel
parents: 52730
diff changeset
  1332
  by auto
ed416f4ac34e more converse(p) theorems; tuned proofs;
traytel
parents: 52730
diff changeset
  1333
63612
7195acc2fe93 misc tuning and modernization;
wenzelm
parents: 63563
diff changeset
  1334
lemma conversep_le_swap: "r \<le> s \<inverse>\<inverse> \<longleftrightarrow> r \<inverse>\<inverse> \<le> s"
52749
ed416f4ac34e more converse(p) theorems; tuned proofs;
traytel
parents: 52730
diff changeset
  1335
  by (fact converse_subset_swap[to_pred])
52730
6bf02eb4ddf7 two useful relation theorems
traytel
parents: 52392
diff changeset
  1336
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1337
lemma converse_Id [simp]: "Id\<inverse> = Id"
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1338
  by blast
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
  1339
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1340
lemma converse_Id_on [simp]: "(Id_on A)\<inverse> = Id_on A"
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1341
  by blast
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
  1342
76572
d8542bc5a3fa added lemmas irrefl_on_converse[simp] and irreflp_on_converse[simp]
desharna
parents: 76571
diff changeset
  1343
lemma refl_on_converse [simp]: "refl_on A (r\<inverse>) = refl_on A r"
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1344
  by (auto simp: refl_on_def)
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
  1345
76499
0fbfb4293ff7 added lemma reflp_on_conversp[simp]
desharna
parents: 76286
diff changeset
  1346
lemma reflp_on_conversp [simp]: "reflp_on A R\<inverse>\<inverse> \<longleftrightarrow> reflp_on A R"
0fbfb4293ff7 added lemma reflp_on_conversp[simp]
desharna
parents: 76286
diff changeset
  1347
  by (auto simp: reflp_on_def)
0fbfb4293ff7 added lemma reflp_on_conversp[simp]
desharna
parents: 76286
diff changeset
  1348
76572
d8542bc5a3fa added lemmas irrefl_on_converse[simp] and irreflp_on_converse[simp]
desharna
parents: 76571
diff changeset
  1349
lemma irrefl_on_converse [simp]: "irrefl_on A (r\<inverse>) = irrefl_on A r"
d8542bc5a3fa added lemmas irrefl_on_converse[simp] and irreflp_on_converse[simp]
desharna
parents: 76571
diff changeset
  1350
  by (simp add: irrefl_on_def)
d8542bc5a3fa added lemmas irrefl_on_converse[simp] and irreflp_on_converse[simp]
desharna
parents: 76571
diff changeset
  1351
d8542bc5a3fa added lemmas irrefl_on_converse[simp] and irreflp_on_converse[simp]
desharna
parents: 76571
diff changeset
  1352
lemma irreflp_on_converse [simp]: "irreflp_on A (r\<inverse>\<inverse>) = irreflp_on A r"
d8542bc5a3fa added lemmas irrefl_on_converse[simp] and irreflp_on_converse[simp]
desharna
parents: 76571
diff changeset
  1353
  by (rule irrefl_on_converse[to_pred])
d8542bc5a3fa added lemmas irrefl_on_converse[simp] and irreflp_on_converse[simp]
desharna
parents: 76571
diff changeset
  1354
76690
da062f9f2e53 strengthened and renamed lemma sym_converse and added lemma symp_on_conversep
desharna
parents: 76689
diff changeset
  1355
lemma sym_on_converse [simp]: "sym_on A (r\<inverse>) = sym_on A r"
da062f9f2e53 strengthened and renamed lemma sym_converse and added lemma symp_on_conversep
desharna
parents: 76689
diff changeset
  1356
  by (auto intro: sym_onI dest: sym_onD)
da062f9f2e53 strengthened and renamed lemma sym_converse and added lemma symp_on_conversep
desharna
parents: 76689
diff changeset
  1357
da062f9f2e53 strengthened and renamed lemma sym_converse and added lemma symp_on_conversep
desharna
parents: 76689
diff changeset
  1358
lemma symp_on_conversep [simp]: "symp_on A R\<inverse>\<inverse> = symp_on A R"
da062f9f2e53 strengthened and renamed lemma sym_converse and added lemma symp_on_conversep
desharna
parents: 76689
diff changeset
  1359
  by (rule sym_on_converse[to_pred])
19228
30fce6da8cbe added many simple lemmas
huffman
parents: 17589
diff changeset
  1360
76691
0c6aa6c27ba4 added lemmas asym_on_converse[simp] and asymp_on_conversep[simp]
desharna
parents: 76690
diff changeset
  1361
lemma asym_on_converse [simp]: "asym_on A (r\<inverse>) = asym_on A r"
0c6aa6c27ba4 added lemmas asym_on_converse[simp] and asymp_on_conversep[simp]
desharna
parents: 76690
diff changeset
  1362
  by (auto dest: asym_onD)
0c6aa6c27ba4 added lemmas asym_on_converse[simp] and asymp_on_conversep[simp]
desharna
parents: 76690
diff changeset
  1363
0c6aa6c27ba4 added lemmas asym_on_converse[simp] and asymp_on_conversep[simp]
desharna
parents: 76690
diff changeset
  1364
lemma asymp_on_conversep [simp]: "asymp_on A R\<inverse>\<inverse> = asymp_on A R"
0c6aa6c27ba4 added lemmas asym_on_converse[simp] and asymp_on_conversep[simp]
desharna
parents: 76690
diff changeset
  1365
  by (rule asym_on_converse[to_pred])
0c6aa6c27ba4 added lemmas asym_on_converse[simp] and asymp_on_conversep[simp]
desharna
parents: 76690
diff changeset
  1366
76692
98880b2430ea strengthened and renamed lemma antisym_converse and added lemma antisymp_on_conversep
desharna
parents: 76691
diff changeset
  1367
lemma antisym_on_converse [simp]: "antisym_on A (r\<inverse>) = antisym_on A r"
98880b2430ea strengthened and renamed lemma antisym_converse and added lemma antisymp_on_conversep
desharna
parents: 76691
diff changeset
  1368
  by (auto intro: antisym_onI dest: antisym_onD)
98880b2430ea strengthened and renamed lemma antisym_converse and added lemma antisymp_on_conversep
desharna
parents: 76691
diff changeset
  1369
98880b2430ea strengthened and renamed lemma antisym_converse and added lemma antisymp_on_conversep
desharna
parents: 76691
diff changeset
  1370
lemma antisymp_on_conversep [simp]: "antisymp_on A R\<inverse>\<inverse> = antisymp_on A R"
98880b2430ea strengthened and renamed lemma antisym_converse and added lemma antisymp_on_conversep
desharna
parents: 76691
diff changeset
  1371
  by (rule antisym_on_converse[to_pred])
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
  1372
76752
66cae055ac7b strengthened and renamed lemma trans_converse and added lemma transp_on_conversep
desharna
parents: 76749
diff changeset
  1373
lemma trans_on_converse [simp]: "trans_on A (r\<inverse>) = trans_on A r"
66cae055ac7b strengthened and renamed lemma trans_converse and added lemma transp_on_conversep
desharna
parents: 76749
diff changeset
  1374
  by (auto intro: trans_onI dest: trans_onD)
66cae055ac7b strengthened and renamed lemma trans_converse and added lemma transp_on_conversep
desharna
parents: 76749
diff changeset
  1375
66cae055ac7b strengthened and renamed lemma trans_converse and added lemma transp_on_conversep
desharna
parents: 76749
diff changeset
  1376
lemma transp_on_conversep [simp]: "transp_on A R\<inverse>\<inverse> = transp_on A R"
66cae055ac7b strengthened and renamed lemma trans_converse and added lemma transp_on_conversep
desharna
parents: 76749
diff changeset
  1377
  by (rule trans_on_converse[to_pred])
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
  1378
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1379
lemma sym_conv_converse_eq: "sym r \<longleftrightarrow> r\<inverse> = r"
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1380
  unfolding sym_def by fast
19228
30fce6da8cbe added many simple lemmas
huffman
parents: 17589
diff changeset
  1381
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1382
lemma sym_Un_converse: "sym (r \<union> r\<inverse>)"
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1383
  unfolding sym_def by blast
19228
30fce6da8cbe added many simple lemmas
huffman
parents: 17589
diff changeset
  1384
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1385
lemma sym_Int_converse: "sym (r \<inter> r\<inverse>)"
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1386
  unfolding sym_def by blast
19228
30fce6da8cbe added many simple lemmas
huffman
parents: 17589
diff changeset
  1387
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1388
lemma total_on_converse [simp]: "total_on A (r\<inverse>) = total_on A r"
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1389
  by (auto simp: total_on_def)
29859
33bff35f1335 Moved Order_Relation into Library and moved some of it into Relation.
nipkow
parents: 29609
diff changeset
  1390
76573
cbf38b7cb195 added lemma totalp_on_converse[simp]
desharna
parents: 76572
diff changeset
  1391
lemma totalp_on_converse [simp]: "totalp_on A R\<inverse>\<inverse> = totalp_on A R"
cbf38b7cb195 added lemma totalp_on_converse[simp]
desharna
parents: 76572
diff changeset
  1392
  by (rule total_on_converse[to_pred])
cbf38b7cb195 added lemma totalp_on_converse[simp]
desharna
parents: 76572
diff changeset
  1393
82286
4042628fffa5 moved left_unique_conversep[simp] and right_unique_conversep[simp] to HOL.Relation
desharna
parents: 82285
diff changeset
  1394
lemma left_unique_conversep[simp]: "left_unique A\<inverse>\<inverse> \<longleftrightarrow> right_unique A"
4042628fffa5 moved left_unique_conversep[simp] and right_unique_conversep[simp] to HOL.Relation
desharna
parents: 82285
diff changeset
  1395
  by (auto simp add: left_unique_def right_unique_def)
4042628fffa5 moved left_unique_conversep[simp] and right_unique_conversep[simp] to HOL.Relation
desharna
parents: 82285
diff changeset
  1396
4042628fffa5 moved left_unique_conversep[simp] and right_unique_conversep[simp] to HOL.Relation
desharna
parents: 82285
diff changeset
  1397
lemma right_unique_conversep[simp]: "right_unique A\<inverse>\<inverse> \<longleftrightarrow> left_unique A"
4042628fffa5 moved left_unique_conversep[simp] and right_unique_conversep[simp] to HOL.Relation
desharna
parents: 82285
diff changeset
  1398
  by (auto simp add: left_unique_def right_unique_def)
4042628fffa5 moved left_unique_conversep[simp] and right_unique_conversep[simp] to HOL.Relation
desharna
parents: 82285
diff changeset
  1399
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66441
diff changeset
  1400
lemma conversep_noteq [simp]: "(\<noteq>)\<inverse>\<inverse> = (\<noteq>)"
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1401
  by (auto simp add: fun_eq_iff)
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1402
67399
eab6ce8368fa ran isabelle update_op on all sources
nipkow
parents: 66441
diff changeset
  1403
lemma conversep_eq [simp]: "(=)\<inverse>\<inverse> = (=)"
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1404
  by (auto simp add: fun_eq_iff)
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1405
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1406
lemma converse_unfold [code]: "r\<inverse> = {(y, x). (x, y) \<in> r}"
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1407
  by (simp add: set_eq_iff)
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1408
46692
1f8b766224f6 tuned structure; dropped already existing syntax declarations
haftmann
parents: 46691
diff changeset
  1409
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60057
diff changeset
  1410
subsubsection \<open>Domain, range and field\<close>
46692
1f8b766224f6 tuned structure; dropped already existing syntax declarations
haftmann
parents: 46691
diff changeset
  1411
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1412
inductive_set Domain :: "('a \<times> 'b) set \<Rightarrow> 'a set" for r :: "('a \<times> 'b) set"
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1413
  where DomainI [intro]: "(a, b) \<in> r \<Longrightarrow> a \<in> Domain r"
46767
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1414
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1415
lemmas DomainPI = Domainp.DomainI
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1416
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1417
inductive_cases DomainE [elim!]: "a \<in> Domain r"
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1418
inductive_cases DomainpE [elim!]: "Domainp r a"
46692
1f8b766224f6 tuned structure; dropped already existing syntax declarations
haftmann
parents: 46691
diff changeset
  1419
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1420
inductive_set Range :: "('a \<times> 'b) set \<Rightarrow> 'b set" for r :: "('a \<times> 'b) set"
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1421
  where RangeI [intro]: "(a, b) \<in> r \<Longrightarrow> b \<in> Range r"
46767
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1422
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1423
lemmas RangePI = Rangep.RangeI
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1424
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1425
inductive_cases RangeE [elim!]: "b \<in> Range r"
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1426
inductive_cases RangepE [elim!]: "Rangep r b"
46692
1f8b766224f6 tuned structure; dropped already existing syntax declarations
haftmann
parents: 46691
diff changeset
  1427
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1428
definition Field :: "'a rel \<Rightarrow> 'a set"
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1429
  where "Field r = Domain r \<union> Range r"
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
  1430
76948
f33df7529fed Substantial simplification of HOL-Cardinals
paulson <lp15@cam.ac.uk>
parents: 76877
diff changeset
  1431
lemma Field_iff: "x \<in> Field r \<longleftrightarrow> (\<exists>y. (x,y) \<in> r \<or> (y,x) \<in> r)"
f33df7529fed Substantial simplification of HOL-Cardinals
paulson <lp15@cam.ac.uk>
parents: 76877
diff changeset
  1432
  by (auto simp: Field_def)
f33df7529fed Substantial simplification of HOL-Cardinals
paulson <lp15@cam.ac.uk>
parents: 76877
diff changeset
  1433
63561
fba08009ff3e add lemmas contributed by Peter Gammie
Andreas Lochbihler
parents: 63404
diff changeset
  1434
lemma FieldI1: "(i, j) \<in> R \<Longrightarrow> i \<in> Field R"
63612
7195acc2fe93 misc tuning and modernization;
wenzelm
parents: 63563
diff changeset
  1435
  unfolding Field_def by blast
63561
fba08009ff3e add lemmas contributed by Peter Gammie
Andreas Lochbihler
parents: 63404
diff changeset
  1436
fba08009ff3e add lemmas contributed by Peter Gammie
Andreas Lochbihler
parents: 63404
diff changeset
  1437
lemma FieldI2: "(i, j) \<in> R \<Longrightarrow> j \<in> Field R"
fba08009ff3e add lemmas contributed by Peter Gammie
Andreas Lochbihler
parents: 63404
diff changeset
  1438
  unfolding Field_def by auto
fba08009ff3e add lemmas contributed by Peter Gammie
Andreas Lochbihler
parents: 63404
diff changeset
  1439
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1440
lemma Domain_fst [code]: "Domain r = fst ` r"
46767
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1441
  by force
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1442
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1443
lemma Range_snd [code]: "Range r = snd ` r"
46767
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1444
  by force
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1445
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1446
lemma fst_eq_Domain: "fst ` R = Domain R"
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1447
  by force
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1448
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1449
lemma snd_eq_Range: "snd ` R = Range R"
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1450
  by force
46694
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
  1451
62087
44841d07ef1d revisions to limits and derivatives, plus new lemmas
paulson
parents: 61955
diff changeset
  1452
lemma range_fst [simp]: "range fst = UNIV"
44841d07ef1d revisions to limits and derivatives, plus new lemmas
paulson
parents: 61955
diff changeset
  1453
  by (auto simp: fst_eq_Domain)
44841d07ef1d revisions to limits and derivatives, plus new lemmas
paulson
parents: 61955
diff changeset
  1454
44841d07ef1d revisions to limits and derivatives, plus new lemmas
paulson
parents: 61955
diff changeset
  1455
lemma range_snd [simp]: "range snd = UNIV"
44841d07ef1d revisions to limits and derivatives, plus new lemmas
paulson
parents: 61955
diff changeset
  1456
  by (auto simp: snd_eq_Range)
44841d07ef1d revisions to limits and derivatives, plus new lemmas
paulson
parents: 61955
diff changeset
  1457
46694
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
  1458
lemma Domain_empty [simp]: "Domain {} = {}"
46767
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1459
  by auto
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1460
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1461
lemma Range_empty [simp]: "Range {} = {}"
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1462
  by auto
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1463
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1464
lemma Field_empty [simp]: "Field {} = {}"
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1465
  by (simp add: Field_def)
46694
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
  1466
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
  1467
lemma Domain_empty_iff: "Domain r = {} \<longleftrightarrow> r = {}"
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
  1468
  by auto
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
  1469
46767
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1470
lemma Range_empty_iff: "Range r = {} \<longleftrightarrow> r = {}"
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1471
  by auto
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1472
46882
6242b4bc05bc tuned simpset
noschinl
parents: 46833
diff changeset
  1473
lemma Domain_insert [simp]: "Domain (insert (a, b) r) = insert a (Domain r)"
46767
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1474
  by blast
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1475
46882
6242b4bc05bc tuned simpset
noschinl
parents: 46833
diff changeset
  1476
lemma Range_insert [simp]: "Range (insert (a, b) r) = insert b (Range r)"
46767
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1477
  by blast
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1478
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1479
lemma Field_insert [simp]: "Field (insert (a, b) r) = {a, b} \<union> Field r"
46884
154dc6ec0041 tuned proofs
noschinl
parents: 46883
diff changeset
  1480
  by (auto simp add: Field_def)
46767
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1481
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1482
lemma Domain_iff: "a \<in> Domain r \<longleftrightarrow> (\<exists>y. (a, y) \<in> r)"
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1483
  by blast
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1484
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1485
lemma Range_iff: "a \<in> Range r \<longleftrightarrow> (\<exists>y. (y, a) \<in> r)"
46694
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
  1486
  by blast
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
  1487
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
  1488
lemma Domain_Id [simp]: "Domain Id = UNIV"
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
  1489
  by blast
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
  1490
46767
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1491
lemma Range_Id [simp]: "Range Id = UNIV"
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1492
  by blast
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1493
46694
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
  1494
lemma Domain_Id_on [simp]: "Domain (Id_on A) = A"
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
  1495
  by blast
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
  1496
46767
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1497
lemma Range_Id_on [simp]: "Range (Id_on A) = A"
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1498
  by blast
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1499
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1500
lemma Domain_Un_eq: "Domain (A \<union> B) = Domain A \<union> Domain B"
46694
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
  1501
  by blast
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
  1502
46767
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1503
lemma Range_Un_eq: "Range (A \<union> B) = Range A \<union> Range B"
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1504
  by blast
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1505
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1506
lemma Field_Un [simp]: "Field (r \<union> s) = Field r \<union> Field s"
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1507
  by (auto simp: Field_def)
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1508
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1509
lemma Domain_Int_subset: "Domain (A \<inter> B) \<subseteq> Domain A \<inter> Domain B"
46694
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
  1510
  by blast
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
  1511
46767
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1512
lemma Range_Int_subset: "Range (A \<inter> B) \<subseteq> Range A \<inter> Range B"
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1513
  by blast
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1514
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1515
lemma Domain_Diff_subset: "Domain A - Domain B \<subseteq> Domain (A - B)"
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1516
  by blast
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1517
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1518
lemma Range_Diff_subset: "Range A - Range B \<subseteq> Range (A - B)"
46694
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
  1519
  by blast
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
  1520
46767
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1521
lemma Domain_Union: "Domain (\<Union>S) = (\<Union>A\<in>S. Domain A)"
46694
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
  1522
  by blast
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
  1523
46767
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1524
lemma Range_Union: "Range (\<Union>S) = (\<Union>A\<in>S. Range A)"
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1525
  by blast
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1526
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1527
lemma Field_Union [simp]: "Field (\<Union>R) = \<Union>(Field ` R)"
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1528
  by (auto simp: Field_def)
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1529
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1530
lemma Domain_converse [simp]: "Domain (r\<inverse>) = Range r"
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1531
  by auto
46694
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
  1532
46767
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1533
lemma Range_converse [simp]: "Range (r\<inverse>) = Domain r"
46694
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
  1534
  by blast
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
  1535
46767
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1536
lemma Field_converse [simp]: "Field (r\<inverse>) = Field r"
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1537
  by (auto simp: Field_def)
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1538
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1539
lemma Domain_Collect_case_prod [simp]: "Domain {(x, y). P x y} = {x. \<exists>y. P x y}"
46767
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1540
  by auto
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1541
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1542
lemma Range_Collect_case_prod [simp]: "Range {(x, y). P x y} = {y. \<exists>x. P x y}"
46767
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1543
  by auto
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1544
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1545
lemma Domain_mono: "r \<subseteq> s \<Longrightarrow> Domain r \<subseteq> Domain s"
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1546
  by blast
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1547
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1548
lemma Range_mono: "r \<subseteq> s \<Longrightarrow> Range r \<subseteq> Range s"
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1549
  by blast
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1550
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1551
lemma mono_Field: "r \<subseteq> s \<Longrightarrow> Field r \<subseteq> Field s"
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1552
  by (auto simp: Field_def Domain_def Range_def)
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1553
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1554
lemma Domain_unfold: "Domain r = {x. \<exists>y. (x, y) \<in> r}"
46767
807a5d219c23 more fundamental pred-to-set conversions for range and domain by means of inductive_set
haftmann
parents: 46752
diff changeset
  1555
  by blast
46694
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
  1556
63563
0bcd79da075b prefer [simp] over [iff] as [iff] break HOL-UNITY
Andreas Lochbihler
parents: 63561
diff changeset
  1557
lemma Field_square [simp]: "Field (x \<times> x) = x"
63612
7195acc2fe93 misc tuning and modernization;
wenzelm
parents: 63563
diff changeset
  1558
  unfolding Field_def by blast
63561
fba08009ff3e add lemmas contributed by Peter Gammie
Andreas Lochbihler
parents: 63404
diff changeset
  1559
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
  1560
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60057
diff changeset
  1561
subsubsection \<open>Image of a set under a relation\<close>
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
  1562
80932
261cd8722677 standardize mixfix annotations via "isabelle update -u mixfix_cartouches -l Pure HOL" --- to simplify systematic editing;
wenzelm
parents: 79905
diff changeset
  1563
definition Image :: "('a \<times> 'b) set \<Rightarrow> 'a set \<Rightarrow> 'b set"  (infixr \<open>``\<close> 90)
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1564
  where "r `` s = {y. \<exists>x\<in>s. (x, y) \<in> r}"
46692
1f8b766224f6 tuned structure; dropped already existing syntax declarations
haftmann
parents: 46691
diff changeset
  1565
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1566
lemma Image_iff: "b \<in> r``A \<longleftrightarrow> (\<exists>x\<in>A. (x, b) \<in> r)"
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1567
  by (simp add: Image_def)
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
  1568
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1569
lemma Image_singleton: "r``{a} = {b. (a, b) \<in> r}"
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1570
  by (simp add: Image_def)
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
  1571
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1572
lemma Image_singleton_iff [iff]: "b \<in> r``{a} \<longleftrightarrow> (a, b) \<in> r"
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1573
  by (rule Image_iff [THEN trans]) simp
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
  1574
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1575
lemma ImageI [intro]: "(a, b) \<in> r \<Longrightarrow> a \<in> A \<Longrightarrow> b \<in> r``A"
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1576
  unfolding Image_def by blast
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
  1577
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1578
lemma ImageE [elim!]: "b \<in> r `` A \<Longrightarrow> (\<And>x. (x, b) \<in> r \<Longrightarrow> x \<in> A \<Longrightarrow> P) \<Longrightarrow> P"
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1579
  unfolding Image_def by (iprover elim!: CollectE bexE)
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
  1580
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1581
lemma rev_ImageI: "a \<in> A \<Longrightarrow> (a, b) \<in> r \<Longrightarrow> b \<in> r `` A"
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61630
diff changeset
  1582
  \<comment> \<open>This version's more effective when we already have the required \<open>a\<close>\<close>
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1583
  by blast
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
  1584
68455
b33803fcae2a moved lemmas from AFP
nipkow
parents: 67399
diff changeset
  1585
lemma Image_empty1 [simp]: "{} `` X = {}"
b33803fcae2a moved lemmas from AFP
nipkow
parents: 67399
diff changeset
  1586
by auto
b33803fcae2a moved lemmas from AFP
nipkow
parents: 67399
diff changeset
  1587
b33803fcae2a moved lemmas from AFP
nipkow
parents: 67399
diff changeset
  1588
lemma Image_empty2 [simp]: "R``{} = {}"
b33803fcae2a moved lemmas from AFP
nipkow
parents: 67399
diff changeset
  1589
by blast
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
  1590
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
  1591
lemma Image_Id [simp]: "Id `` A = A"
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1592
  by blast
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
  1593
30198
922f944f03b2 name changes
nipkow
parents: 29859
diff changeset
  1594
lemma Image_Id_on [simp]: "Id_on A `` B = A \<inter> B"
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1595
  by blast
13830
7f8c1b533e8b some x-symbols and some new lemmas
paulson
parents: 13812
diff changeset
  1596
7f8c1b533e8b some x-symbols and some new lemmas
paulson
parents: 13812
diff changeset
  1597
lemma Image_Int_subset: "R `` (A \<inter> B) \<subseteq> R `` A \<inter> R `` B"
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1598
  by blast
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
  1599
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1600
lemma Image_Int_eq: "single_valued (converse R) \<Longrightarrow> R `` (A \<inter> B) = R `` A \<inter> R `` B"
63612
7195acc2fe93 misc tuning and modernization;
wenzelm
parents: 63563
diff changeset
  1601
  by (auto simp: single_valued_def)
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
  1602
13830
7f8c1b533e8b some x-symbols and some new lemmas
paulson
parents: 13812
diff changeset
  1603
lemma Image_Un: "R `` (A \<union> B) = R `` A \<union> R `` B"
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1604
  by blast
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
  1605
13812
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13639
diff changeset
  1606
lemma Un_Image: "(R \<union> S) `` A = R `` A \<union> S `` A"
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1607
  by blast
13812
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13639
diff changeset
  1608
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1609
lemma Image_subset: "r \<subseteq> A \<times> B \<Longrightarrow> r``C \<subseteq> B"
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1610
  by (iprover intro!: subsetI elim!: ImageE dest!: subsetD SigmaD2)
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
  1611
13830
7f8c1b533e8b some x-symbols and some new lemmas
paulson
parents: 13812
diff changeset
  1612
lemma Image_eq_UN: "r``B = (\<Union>y\<in> B. r``{y})"
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61630
diff changeset
  1613
  \<comment> \<open>NOT suitable for rewriting\<close>
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1614
  by blast
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
  1615
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1616
lemma Image_mono: "r' \<subseteq> r \<Longrightarrow> A' \<subseteq> A \<Longrightarrow> (r' `` A') \<subseteq> (r `` A)"
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1617
  by blast
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
  1618
69275
9bbd5497befd clarified status of legacy input abbreviations
haftmann
parents: 68455
diff changeset
  1619
lemma Image_UN: "r `` (\<Union>(B ` A)) = (\<Union>x\<in>A. r `` (B x))"
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1620
  by blast
13830
7f8c1b533e8b some x-symbols and some new lemmas
paulson
parents: 13812
diff changeset
  1621
54410
0a578fb7fb73 countability of the image of a reflexive transitive closure
hoelzl
parents: 54147
diff changeset
  1622
lemma UN_Image: "(\<Union>i\<in>I. X i) `` S = (\<Union>i\<in>I. X i `` S)"
0a578fb7fb73 countability of the image of a reflexive transitive closure
hoelzl
parents: 54147
diff changeset
  1623
  by auto
0a578fb7fb73 countability of the image of a reflexive transitive closure
hoelzl
parents: 54147
diff changeset
  1624
69275
9bbd5497befd clarified status of legacy input abbreviations
haftmann
parents: 68455
diff changeset
  1625
lemma Image_INT_subset: "(r `` (\<Inter>(B ` A))) \<subseteq> (\<Inter>x\<in>A. r `` (B x))"
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1626
  by blast
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
  1627
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1628
text \<open>Converse inclusion requires some assumptions\<close>
75669
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 75541
diff changeset
  1629
lemma Image_INT_eq:
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 75541
diff changeset
  1630
  assumes "single_valued (r\<inverse>)"
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 75541
diff changeset
  1631
    and "A \<noteq> {}"
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 75541
diff changeset
  1632
  shows "r `` (\<Inter>(B ` A)) = (\<Inter>x\<in>A. r `` B x)"
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 75541
diff changeset
  1633
proof(rule equalityI, rule Image_INT_subset)
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 75541
diff changeset
  1634
  show "(\<Inter>x\<in>A. r `` B x) \<subseteq> r `` \<Inter> (B ` A)"
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 75541
diff changeset
  1635
  proof
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 75541
diff changeset
  1636
    fix x
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 75541
diff changeset
  1637
    assume "x \<in> (\<Inter>x\<in>A. r `` B x)"
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 75541
diff changeset
  1638
    then show "x \<in> r `` \<Inter> (B ` A)"
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 75541
diff changeset
  1639
      using assms unfolding single_valued_def by simp blast
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 75541
diff changeset
  1640
  qed
43f5dfb7fa35 tuned (some HOL lints, by Yecine Megdiche);
Fabian Huch <huch@in.tum.de>
parents: 75541
diff changeset
  1641
qed
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
  1642
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1643
lemma Image_subset_eq: "r``A \<subseteq> B \<longleftrightarrow> A \<subseteq> - ((r\<inverse>) `` (- B))"
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1644
  by blast
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
  1645
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1646
lemma Image_Collect_case_prod [simp]: "{(x, y). P x y} `` A = {y. \<exists>x\<in>A. P x y}"
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1647
  by auto
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
  1648
54410
0a578fb7fb73 countability of the image of a reflexive transitive closure
hoelzl
parents: 54147
diff changeset
  1649
lemma Sigma_Image: "(SIGMA x:A. B x) `` X = (\<Union>x\<in>X \<inter> A. B x)"
0a578fb7fb73 countability of the image of a reflexive transitive closure
hoelzl
parents: 54147
diff changeset
  1650
  by auto
0a578fb7fb73 countability of the image of a reflexive transitive closure
hoelzl
parents: 54147
diff changeset
  1651
0a578fb7fb73 countability of the image of a reflexive transitive closure
hoelzl
parents: 54147
diff changeset
  1652
lemma relcomp_Image: "(X O Y) `` Z = Y `` (X `` Z)"
0a578fb7fb73 countability of the image of a reflexive transitive closure
hoelzl
parents: 54147
diff changeset
  1653
  by auto
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
  1654
63376
4c0cc2b356f0 default one-step rules for predicates on relations;
haftmann
parents: 62343
diff changeset
  1655
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60057
diff changeset
  1656
subsubsection \<open>Inverse image\<close>
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
  1657
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1658
definition inv_image :: "'b rel \<Rightarrow> ('a \<Rightarrow> 'b) \<Rightarrow> 'a rel"
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1659
  where "inv_image r f = {(x, y). (f x, f y) \<in> r}"
46692
1f8b766224f6 tuned structure; dropped already existing syntax declarations
haftmann
parents: 46691
diff changeset
  1660
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1661
definition inv_imagep :: "('b \<Rightarrow> 'b \<Rightarrow> bool) \<Rightarrow> ('a \<Rightarrow> 'b) \<Rightarrow> 'a \<Rightarrow> 'a \<Rightarrow> bool"
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1662
  where "inv_imagep r f = (\<lambda>x y. r (f x) (f y))"
46694
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
  1663
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
  1664
lemma [pred_set_conv]: "inv_imagep (\<lambda>x y. (x, y) \<in> r) f = (\<lambda>x y. (x, y) \<in> inv_image r f)"
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
  1665
  by (simp add: inv_image_def inv_imagep_def)
0988b22e2626 tuned structure
haftmann
parents: 46692
diff changeset
  1666
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1667
lemma sym_inv_image: "sym r \<Longrightarrow> sym (inv_image r f)"
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1668
  unfolding sym_def inv_image_def by blast
19228
30fce6da8cbe added many simple lemmas
huffman
parents: 17589
diff changeset
  1669
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1670
lemma trans_inv_image: "trans r \<Longrightarrow> trans (inv_image r f)"
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1671
  unfolding trans_def inv_image_def
71404
f2b783abfbe7 A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents: 69905
diff changeset
  1672
  by (simp (no_asm)) blast
f2b783abfbe7 A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents: 69905
diff changeset
  1673
f2b783abfbe7 A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents: 69905
diff changeset
  1674
lemma total_inv_image: "\<lbrakk>inj f; total r\<rbrakk> \<Longrightarrow> total (inv_image r f)"
f2b783abfbe7 A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents: 69905
diff changeset
  1675
  unfolding inv_image_def total_on_def by (auto simp: inj_eq)
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
  1676
71935
82b00b8f1871 fixed the utterly weird definitions of asym / asymp, and added many asym lemmas
paulson <lp15@cam.ac.uk>
parents: 71827
diff changeset
  1677
lemma asym_inv_image: "asym R \<Longrightarrow> asym (inv_image R f)"
82b00b8f1871 fixed the utterly weird definitions of asym / asymp, and added many asym lemmas
paulson <lp15@cam.ac.uk>
parents: 71827
diff changeset
  1678
  by (simp add: inv_image_def asym_iff)
82b00b8f1871 fixed the utterly weird definitions of asym / asymp, and added many asym lemmas
paulson <lp15@cam.ac.uk>
parents: 71827
diff changeset
  1679
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1680
lemma in_inv_image[simp]: "(x, y) \<in> inv_image r f \<longleftrightarrow> (f x, f y) \<in> r"
71404
f2b783abfbe7 A few lemmas connected with orderings
paulson <lp15@cam.ac.uk>
parents: 69905
diff changeset
  1681
  by (auto simp: inv_image_def)
32463
3a0a65ca2261 moved lemma Wellfounded.in_inv_image to Relation.thy
krauss
parents: 32235
diff changeset
  1682
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1683
lemma converse_inv_image[simp]: "(inv_image R f)\<inverse> = inv_image (R\<inverse>) f"
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1684
  unfolding inv_image_def converse_unfold by auto
33218
ecb5cd453ef2 lemma converse_inv_image
krauss
parents: 32876
diff changeset
  1685
46664
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
  1686
lemma in_inv_imagep [simp]: "inv_imagep r f x y = r (f x) (f y)"
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
  1687
  by (simp add: inv_imagep_def)
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
  1688
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
  1689
60758
d8d85a8172b5 isabelle update_cartouches;
wenzelm
parents: 60057
diff changeset
  1690
subsubsection \<open>Powerset\<close>
46664
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
  1691
46752
e9e7209eb375 more fundamental pred-to-set conversions, particularly by means of inductive_set; associated consolidation of some theorem names (c.f. NEWS)
haftmann
parents: 46696
diff changeset
  1692
definition Powp :: "('a \<Rightarrow> bool) \<Rightarrow> 'a set \<Rightarrow> bool"
63404
a95e7432d86c misc tuning and modernization;
wenzelm
parents: 63376
diff changeset
  1693
  where "Powp A = (\<lambda>B. \<forall>x \<in> B. A x)"
46664
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
  1694
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
  1695
lemma Powp_Pow_eq [pred_set_conv]: "Powp (\<lambda>x. x \<in> A) = (\<lambda>x. x \<in> Pow A)"
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
  1696
  by (auto simp add: Powp_def fun_eq_iff)
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
  1697
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
  1698
lemmas Powp_mono [mono] = Pow_mono [to_pred]
1f6c140f9c72 moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
haftmann
parents: 46638
diff changeset
  1699
1128
64b30e3cc6d4 Trancl is now based on Relation which used to be in Integ.
nipkow
parents:
diff changeset
  1700
end