src/HOL/Relation.thy
author haftmann
Fri, 24 Feb 2012 22:46:44 +0100
changeset 46664 1f6c140f9c72
parent 46638 fc315796794e
child 46689 f559866a7aa2
permissions -rw-r--r--
moved predicate relations and conversion rules between set and predicate relations from Predicate.thy to Relation.thy; moved Predicate.thy upwards in theory hierarchy
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
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
     2
    Author:     Lawrence C Paulson, Cambridge University Computer Laboratory; Stefan Berghofer, TU Muenchen
1128
64b30e3cc6d4 Trancl is now based on Relation which used to be in Integ.
nipkow
parents:
diff changeset
     3
*)
64b30e3cc6d4 Trancl is now based on Relation which used to be in Integ.
nipkow
parents:
diff changeset
     4
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
     5
header {* Relations – as sets of pairs, and binary predicates *}
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
     6
15131
c69542757a4d New theory header syntax.
nipkow
parents: 13830
diff changeset
     7
theory Relation
32850
d95a7fd00bd4 proper merge of interpretation equations
haftmann
parents: 32463
diff changeset
     8
imports Datatype Finite_Set
15131
c69542757a4d New theory header syntax.
nipkow
parents: 13830
diff changeset
     9
begin
5978
fa2c2dd74f8c moved diag (diagonal relation) from Univ to Relation
paulson
parents: 5608
diff changeset
    10
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
    11
notation
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
    12
  bot ("\<bottom>") and
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
    13
  top ("\<top>") and
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
  inf (infixl "\<sqinter>" 70) and
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
    15
  sup (infixl "\<squnion>" 65) and
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
    16
  Inf ("\<Sqinter>_" [900] 900) and
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
  Sup ("\<Squnion>_" [900] 900)
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
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
    19
syntax (xsymbols)
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
  "_INF1"     :: "pttrns \<Rightarrow> 'b \<Rightarrow> 'b"           ("(3\<Sqinter>_./ _)" [0, 10] 10)
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
  "_INF"      :: "pttrn \<Rightarrow> 'a set \<Rightarrow> 'b \<Rightarrow> 'b"  ("(3\<Sqinter>_\<in>_./ _)" [0, 0, 10] 10)
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
  "_SUP1"     :: "pttrns \<Rightarrow> 'b \<Rightarrow> 'b"           ("(3\<Squnion>_./ _)" [0, 10] 10)
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
  "_SUP"      :: "pttrn \<Rightarrow> 'a set \<Rightarrow> 'b \<Rightarrow> 'b"  ("(3\<Squnion>_\<in>_./ _)" [0, 0, 10] 10)
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
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
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
subsection {* Classical rules for reasoning on predicates *}
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
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 predicate1D [Pure.dest?, dest?]
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 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
    30
declare predicate2D [Pure.dest, dest]
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 bot1E [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 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
    33
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
    34
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
    35
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
    36
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
    37
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
    38
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
    39
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
    40
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
    41
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
    42
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
    43
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
    44
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
    45
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
    46
declare sup2CI [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
    47
declare INF1_I [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
    48
declare INF2_I [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
    49
declare INF1_D [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
    50
declare INF2_D [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
    51
declare INF1_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
    52
declare INF2_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
    53
declare SUP1_I [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
    54
declare SUP2_I [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
    55
declare SUP1_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
    56
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
    57
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
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
    59
subsection {* Conversions between set and predicate relations *}
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
    60
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
    61
lemma pred_equals_eq [pred_set_conv]: "((\<lambda>x. x \<in> R) = (\<lambda>x. x \<in> S)) \<longleftrightarrow> (R = 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
    62
  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
    63
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
    64
lemma pred_equals_eq2 [pred_set_conv]: "((\<lambda>x y. (x, y) \<in> R) = (\<lambda>x y. (x, y) \<in> S)) \<longleftrightarrow> (R = 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
    65
  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
    66
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
    67
lemma pred_subset_eq [pred_set_conv]: "((\<lambda>x. x \<in> R) \<le> (\<lambda>x. x \<in> S)) \<longleftrightarrow> (R \<subseteq> 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
    68
  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
    69
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
    70
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)"
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
    71
  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
    72
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
    73
lemma bot_empty_eq: "\<bottom> = (\<lambda>x. x \<in> {})"
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
    74
  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
    75
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
    76
lemma bot_empty_eq2: "\<bottom> = (\<lambda>x y. (x, y) \<in> {})"
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 (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
    78
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
    79
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
    80
  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
    81
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
    82
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
    83
  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
    84
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
    85
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
    86
  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
    87
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
    88
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
    89
  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
    90
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
    91
lemma INF_INT_eq: "(\<Sqinter>i. (\<lambda>x. x \<in> r i)) = (\<lambda>x. x \<in> (\<Inter>i. r i))"
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 (simp add: INF_apply 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
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
    94
lemma INF_INT_eq2: "(\<Sqinter>i. (\<lambda>x y. (x, y) \<in> r i)) = (\<lambda>x y. (x, y) \<in> (\<Inter>i. r i))"
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
    95
  by (simp add: INF_apply 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
    96
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
    97
lemma SUP_UN_eq [pred_set_conv]: "(\<Squnion>i. (\<lambda>x. x \<in> r i)) = (\<lambda>x. x \<in> (\<Union>i. r i))"
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
    98
  by (simp add: SUP_apply 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
    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 SUP_UN_eq2 [pred_set_conv]: "(\<Squnion>i. (\<lambda>x y. (x, y) \<in> r i)) = (\<lambda>x y. (x, y) \<in> (\<Union>i. r i))"
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: SUP_apply 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
   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
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
subsection {* Relations as sets of pairs *}
12913
5ac498bffb6b fixed document;
wenzelm
parents: 12905
diff changeset
   105
46372
6fa9cdb8b850 added "'a rel"
nipkow
parents: 46127
diff changeset
   106
type_synonym 'a rel = "('a * 'a) set"
6fa9cdb8b850 added "'a rel"
nipkow
parents: 46127
diff changeset
   107
19656
09be06943252 tuned concrete syntax -- abbreviation/const_syntax;
wenzelm
parents: 19363
diff changeset
   108
definition
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21210
diff changeset
   109
  converse :: "('a * 'b) set => ('b * 'a) set"
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21210
diff changeset
   110
    ("(_^-1)" [1000] 999) where
45137
6e422d180de8 modernized definitions
haftmann
parents: 45012
diff changeset
   111
  "r^-1 = {(y, x). (x, y) : r}"
7912
0e42be14f136 tidied using modern infix form
paulson
parents: 7014
diff changeset
   112
21210
c17fd2df4e9e renamed 'const_syntax' to 'notation';
wenzelm
parents: 20716
diff changeset
   113
notation (xsymbols)
19656
09be06943252 tuned concrete syntax -- abbreviation/const_syntax;
wenzelm
parents: 19363
diff changeset
   114
  converse  ("(_\<inverse>)" [1000] 999)
09be06943252 tuned concrete syntax -- abbreviation/const_syntax;
wenzelm
parents: 19363
diff changeset
   115
09be06943252 tuned concrete syntax -- abbreviation/const_syntax;
wenzelm
parents: 19363
diff changeset
   116
definition
32235
8f9b8d14fc9f "more standard" argument order of relation composition (op O)
krauss
parents: 31011
diff changeset
   117
  rel_comp  :: "[('a * 'b) set, ('b * 'c) set] => ('a * 'c) set"
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21210
diff changeset
   118
    (infixr "O" 75) where
45137
6e422d180de8 modernized definitions
haftmann
parents: 45012
diff changeset
   119
  "r O s = {(x,z). EX y. (x, y) : r & (y, z) : s}"
12913
5ac498bffb6b fixed document;
wenzelm
parents: 12905
diff changeset
   120
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21210
diff changeset
   121
definition
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21210
diff changeset
   122
  Image :: "[('a * 'b) set, 'a set] => 'b set"
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21210
diff changeset
   123
    (infixl "``" 90) where
45137
6e422d180de8 modernized definitions
haftmann
parents: 45012
diff changeset
   124
  "r `` s = {y. EX x:s. (x,y):r}"
7912
0e42be14f136 tidied using modern infix form
paulson
parents: 7014
diff changeset
   125
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21210
diff changeset
   126
definition
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21210
diff changeset
   127
  Id :: "('a * 'a) set" where -- {* the identity relation *}
45137
6e422d180de8 modernized definitions
haftmann
parents: 45012
diff changeset
   128
  "Id = {p. EX x. p = (x,x)}"
7912
0e42be14f136 tidied using modern infix form
paulson
parents: 7014
diff changeset
   129
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21210
diff changeset
   130
definition
30198
922f944f03b2 name changes
nipkow
parents: 29859
diff changeset
   131
  Id_on  :: "'a set => ('a * 'a) set" where -- {* diagonal: identity over a set *}
45137
6e422d180de8 modernized definitions
haftmann
parents: 45012
diff changeset
   132
  "Id_on A = (\<Union>x\<in>A. {(x,x)})"
12913
5ac498bffb6b fixed document;
wenzelm
parents: 12905
diff changeset
   133
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21210
diff changeset
   134
definition
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21210
diff changeset
   135
  Domain :: "('a * 'b) set => 'a set" where
45137
6e422d180de8 modernized definitions
haftmann
parents: 45012
diff changeset
   136
  "Domain r = {x. EX y. (x,y):r}"
5978
fa2c2dd74f8c moved diag (diagonal relation) from Univ to Relation
paulson
parents: 5608
diff changeset
   137
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21210
diff changeset
   138
definition
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21210
diff changeset
   139
  Range  :: "('a * 'b) set => 'b set" where
45137
6e422d180de8 modernized definitions
haftmann
parents: 45012
diff changeset
   140
  "Range r = Domain(r^-1)"
5978
fa2c2dd74f8c moved diag (diagonal relation) from Univ to Relation
paulson
parents: 5608
diff changeset
   141
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21210
diff changeset
   142
definition
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21210
diff changeset
   143
  Field :: "('a * 'a) set => 'a set" where
45137
6e422d180de8 modernized definitions
haftmann
parents: 45012
diff changeset
   144
  "Field r = Domain r \<union> Range r"
10786
04ee73606993 Field of a relation, and some Domain/Range rules
paulson
parents: 10358
diff changeset
   145
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21210
diff changeset
   146
definition
30198
922f944f03b2 name changes
nipkow
parents: 29859
diff changeset
   147
  refl_on :: "['a set, ('a * 'a) set] => bool" where -- {* reflexivity over a set *}
45137
6e422d180de8 modernized definitions
haftmann
parents: 45012
diff changeset
   148
  "refl_on A r \<longleftrightarrow> r \<subseteq> A \<times> A & (ALL x: A. (x,x) : r)"
6806
43c081a0858d new preficates refl, sym [from Integ/Equiv], antisym
paulson
parents: 5978
diff changeset
   149
26297
74012d599204 added lemmas
nipkow
parents: 26271
diff changeset
   150
abbreviation
30198
922f944f03b2 name changes
nipkow
parents: 29859
diff changeset
   151
  refl :: "('a * 'a) set => bool" where -- {* reflexivity over a type *}
45137
6e422d180de8 modernized definitions
haftmann
parents: 45012
diff changeset
   152
  "refl \<equiv> refl_on UNIV"
26297
74012d599204 added lemmas
nipkow
parents: 26271
diff changeset
   153
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21210
diff changeset
   154
definition
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21210
diff changeset
   155
  sym :: "('a * 'a) set => bool" where -- {* symmetry predicate *}
45137
6e422d180de8 modernized definitions
haftmann
parents: 45012
diff changeset
   156
  "sym r \<longleftrightarrow> (ALL x y. (x,y): r --> (y,x): r)"
6806
43c081a0858d new preficates refl, sym [from Integ/Equiv], antisym
paulson
parents: 5978
diff changeset
   157
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21210
diff changeset
   158
definition
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21210
diff changeset
   159
  antisym :: "('a * 'a) set => bool" where -- {* antisymmetry predicate *}
45137
6e422d180de8 modernized definitions
haftmann
parents: 45012
diff changeset
   160
  "antisym r \<longleftrightarrow> (ALL x y. (x,y):r --> (y,x):r --> x=y)"
6806
43c081a0858d new preficates refl, sym [from Integ/Equiv], antisym
paulson
parents: 5978
diff changeset
   161
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21210
diff changeset
   162
definition
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21210
diff changeset
   163
  trans :: "('a * 'a) set => bool" where -- {* transitivity predicate *}
45137
6e422d180de8 modernized definitions
haftmann
parents: 45012
diff changeset
   164
  "trans r \<longleftrightarrow> (ALL x y z. (x,y):r --> (y,z):r --> (x,z):r)"
5978
fa2c2dd74f8c moved diag (diagonal relation) from Univ to Relation
paulson
parents: 5608
diff changeset
   165
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21210
diff changeset
   166
definition
45137
6e422d180de8 modernized definitions
haftmann
parents: 45012
diff changeset
   167
  irrefl :: "('a * 'a) set => bool" where
6e422d180de8 modernized definitions
haftmann
parents: 45012
diff changeset
   168
  "irrefl r \<longleftrightarrow> (\<forall>x. (x,x) \<notin> r)"
29859
33bff35f1335 Moved Order_Relation into Library and moved some of it into Relation.
nipkow
parents: 29609
diff changeset
   169
33bff35f1335 Moved Order_Relation into Library and moved some of it into Relation.
nipkow
parents: 29609
diff changeset
   170
definition
45137
6e422d180de8 modernized definitions
haftmann
parents: 45012
diff changeset
   171
  total_on :: "'a set => ('a * 'a) set => bool" where
6e422d180de8 modernized definitions
haftmann
parents: 45012
diff changeset
   172
  "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
   173
33bff35f1335 Moved Order_Relation into Library and moved some of it into Relation.
nipkow
parents: 29609
diff changeset
   174
abbreviation "total \<equiv> total_on UNIV"
33bff35f1335 Moved Order_Relation into Library and moved some of it into Relation.
nipkow
parents: 29609
diff changeset
   175
33bff35f1335 Moved Order_Relation into Library and moved some of it into Relation.
nipkow
parents: 29609
diff changeset
   176
definition
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21210
diff changeset
   177
  single_valued :: "('a * 'b) set => bool" where
45137
6e422d180de8 modernized definitions
haftmann
parents: 45012
diff changeset
   178
  "single_valued r \<longleftrightarrow> (ALL x y. (x,y):r --> (ALL z. (x,z):r --> y=z))"
7014
11ee650edcd2 Added some definitions and theorems needed for the
berghofe
parents: 6806
diff changeset
   179
21404
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21210
diff changeset
   180
definition
eb85850d3eb7 more robust syntax for definition/abbreviation/notation;
wenzelm
parents: 21210
diff changeset
   181
  inv_image :: "('b * 'b) set => ('a => 'b) => ('a * 'a) set" where
45137
6e422d180de8 modernized definitions
haftmann
parents: 45012
diff changeset
   182
  "inv_image r f = {(x, y). (f x, f y) : r}"
11136
e34e7f6d9b57 moved inv_image to Relation
oheimb
parents: 10832
diff changeset
   183
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   184
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
   185
subsubsection {* The identity relation *}
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   186
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   187
lemma IdI [intro]: "(a, a) : Id"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   188
by (simp add: Id_def)
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   189
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   190
lemma IdE [elim!]: "p : Id ==> (!!x. p = (x, x) ==> P) ==> P"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   191
by (unfold Id_def) (iprover elim: CollectE)
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   192
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   193
lemma pair_in_Id_conv [iff]: "((a, b) : Id) = (a = b)"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   194
by (unfold Id_def) blast
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   195
30198
922f944f03b2 name changes
nipkow
parents: 29859
diff changeset
   196
lemma refl_Id: "refl Id"
922f944f03b2 name changes
nipkow
parents: 29859
diff changeset
   197
by (simp add: refl_on_def)
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   198
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   199
lemma antisym_Id: "antisym Id"
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   200
  -- {* A strange result, since @{text Id} is also symmetric. *}
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   201
by (simp add: antisym_def)
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   202
19228
30fce6da8cbe added many simple lemmas
huffman
parents: 17589
diff changeset
   203
lemma sym_Id: "sym Id"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   204
by (simp add: sym_def)
19228
30fce6da8cbe added many simple lemmas
huffman
parents: 17589
diff changeset
   205
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   206
lemma trans_Id: "trans Id"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   207
by (simp add: trans_def)
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   208
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   209
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
   210
subsubsection {* Diagonal: identity over a set *}
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   211
30198
922f944f03b2 name changes
nipkow
parents: 29859
diff changeset
   212
lemma Id_on_empty [simp]: "Id_on {} = {}"
922f944f03b2 name changes
nipkow
parents: 29859
diff changeset
   213
by (simp add: Id_on_def) 
13812
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13639
diff changeset
   214
30198
922f944f03b2 name changes
nipkow
parents: 29859
diff changeset
   215
lemma Id_on_eqI: "a = b ==> a : A ==> (a, b) : Id_on A"
922f944f03b2 name changes
nipkow
parents: 29859
diff changeset
   216
by (simp add: Id_on_def)
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   217
35828
46cfc4b8112e now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
blanchet
parents: 33218
diff changeset
   218
lemma Id_onI [intro!,no_atp]: "a : A ==> (a, a) : Id_on A"
30198
922f944f03b2 name changes
nipkow
parents: 29859
diff changeset
   219
by (rule Id_on_eqI) (rule refl)
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   220
30198
922f944f03b2 name changes
nipkow
parents: 29859
diff changeset
   221
lemma Id_onE [elim!]:
922f944f03b2 name changes
nipkow
parents: 29859
diff changeset
   222
  "c : Id_on A ==> (!!x. x : A ==> c = (x, x) ==> P) ==> P"
12913
5ac498bffb6b fixed document;
wenzelm
parents: 12905
diff changeset
   223
  -- {* The general elimination rule. *}
30198
922f944f03b2 name changes
nipkow
parents: 29859
diff changeset
   224
by (unfold Id_on_def) (iprover elim!: UN_E singletonE)
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   225
30198
922f944f03b2 name changes
nipkow
parents: 29859
diff changeset
   226
lemma Id_on_iff: "((x, y) : Id_on A) = (x = y & x : A)"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   227
by blast
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   228
45967
76cf71ed15c7 dropped obsolete code equation for Id
haftmann
parents: 45139
diff changeset
   229
lemma Id_on_def' [nitpick_unfold]:
44278
1220ecb81e8f observe distinction between sets and predicates more properly
haftmann
parents: 41792
diff changeset
   230
  "Id_on {x. A x} = Collect (\<lambda>(x, y). x = y \<and> A x)"
1220ecb81e8f observe distinction between sets and predicates more properly
haftmann
parents: 41792
diff changeset
   231
by auto
40923
be80c93ac0a2 adding a nice definition of Id_on for quickcheck and nitpick
bulwahn
parents: 36772
diff changeset
   232
30198
922f944f03b2 name changes
nipkow
parents: 29859
diff changeset
   233
lemma Id_on_subset_Times: "Id_on A \<subseteq> A \<times> A"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   234
by blast
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   235
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   236
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
   237
subsubsection {* Composition of two relations *}
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   238
12913
5ac498bffb6b fixed document;
wenzelm
parents: 12905
diff changeset
   239
lemma rel_compI [intro]:
32235
8f9b8d14fc9f "more standard" argument order of relation composition (op O)
krauss
parents: 31011
diff changeset
   240
  "(a, b) : r ==> (b, c) : s ==> (a, c) : r O s"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   241
by (unfold rel_comp_def) blast
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   242
12913
5ac498bffb6b fixed document;
wenzelm
parents: 12905
diff changeset
   243
lemma rel_compE [elim!]: "xz : r O s ==>
32235
8f9b8d14fc9f "more standard" argument order of relation composition (op O)
krauss
parents: 31011
diff changeset
   244
  (!!x y z. xz = (x, z) ==> (x, y) : r ==> (y, z) : s  ==> P) ==> P"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   245
by (unfold rel_comp_def) (iprover elim!: CollectE splitE exE conjE)
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   246
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   247
lemma rel_compEpair:
32235
8f9b8d14fc9f "more standard" argument order of relation composition (op O)
krauss
parents: 31011
diff changeset
   248
  "(a, c) : r O s ==> (!!y. (a, y) : r ==> (y, c) : s ==> P) ==> P"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   249
by (iprover elim: rel_compE Pair_inject ssubst)
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   250
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   251
lemma R_O_Id [simp]: "R O Id = R"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   252
by fast
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   253
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   254
lemma Id_O_R [simp]: "Id O R = R"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   255
by fast
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   256
23185
1fa87978cf27 Added simp-rules: "R O {} = {}" and "{} O R = {}"
krauss
parents: 22172
diff changeset
   257
lemma rel_comp_empty1[simp]: "{} O R = {}"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   258
by blast
23185
1fa87978cf27 Added simp-rules: "R O {} = {}" and "{} O R = {}"
krauss
parents: 22172
diff changeset
   259
1fa87978cf27 Added simp-rules: "R O {} = {}" and "{} O R = {}"
krauss
parents: 22172
diff changeset
   260
lemma rel_comp_empty2[simp]: "R O {} = {}"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   261
by blast
23185
1fa87978cf27 Added simp-rules: "R O {} = {}" and "{} O R = {}"
krauss
parents: 22172
diff changeset
   262
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   263
lemma O_assoc: "(R O S) O T = R O (S O T)"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   264
by blast
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   265
12913
5ac498bffb6b fixed document;
wenzelm
parents: 12905
diff changeset
   266
lemma trans_O_subset: "trans r ==> r O r \<subseteq> r"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   267
by (unfold trans_def) blast
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   268
12913
5ac498bffb6b fixed document;
wenzelm
parents: 12905
diff changeset
   269
lemma rel_comp_mono: "r' \<subseteq> r ==> s' \<subseteq> s ==> (r' O s') \<subseteq> (r O s)"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   270
by blast
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   271
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   272
lemma rel_comp_subset_Sigma:
32235
8f9b8d14fc9f "more standard" argument order of relation composition (op O)
krauss
parents: 31011
diff changeset
   273
    "r \<subseteq> A \<times> B ==> s \<subseteq> B \<times> C ==> (r O s) \<subseteq> A \<times> C"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   274
by blast
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   275
28008
f945f8d9ad4d added distributivity of relation composition over union [simp]
krauss
parents: 26297
diff changeset
   276
lemma rel_comp_distrib[simp]: "R O (S \<union> T) = (R O S) \<union> (R O T)" 
f945f8d9ad4d added distributivity of relation composition over union [simp]
krauss
parents: 26297
diff changeset
   277
by auto
f945f8d9ad4d added distributivity of relation composition over union [simp]
krauss
parents: 26297
diff changeset
   278
f945f8d9ad4d added distributivity of relation composition over union [simp]
krauss
parents: 26297
diff changeset
   279
lemma rel_comp_distrib2[simp]: "(S \<union> T) O R = (S O R) \<union> (T O R)"
f945f8d9ad4d added distributivity of relation composition over union [simp]
krauss
parents: 26297
diff changeset
   280
by auto
f945f8d9ad4d added distributivity of relation composition over union [simp]
krauss
parents: 26297
diff changeset
   281
36772
ef97c5006840 added lemmas rel_comp_UNION_distrib(2)
krauss
parents: 36729
diff changeset
   282
lemma rel_comp_UNION_distrib: "s O UNION I r = UNION I (%i. s O r i)"
ef97c5006840 added lemmas rel_comp_UNION_distrib(2)
krauss
parents: 36729
diff changeset
   283
by auto
ef97c5006840 added lemmas rel_comp_UNION_distrib(2)
krauss
parents: 36729
diff changeset
   284
ef97c5006840 added lemmas rel_comp_UNION_distrib(2)
krauss
parents: 36729
diff changeset
   285
lemma rel_comp_UNION_distrib2: "UNION I r O s = UNION I (%i. r i O s)"
ef97c5006840 added lemmas rel_comp_UNION_distrib(2)
krauss
parents: 36729
diff changeset
   286
by auto
ef97c5006840 added lemmas rel_comp_UNION_distrib(2)
krauss
parents: 36729
diff changeset
   287
12913
5ac498bffb6b fixed document;
wenzelm
parents: 12905
diff changeset
   288
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
   289
subsubsection {* Reflexivity *}
12913
5ac498bffb6b fixed document;
wenzelm
parents: 12905
diff changeset
   290
30198
922f944f03b2 name changes
nipkow
parents: 29859
diff changeset
   291
lemma refl_onI: "r \<subseteq> A \<times> A ==> (!!x. x : A ==> (x, x) : r) ==> refl_on A r"
922f944f03b2 name changes
nipkow
parents: 29859
diff changeset
   292
by (unfold refl_on_def) (iprover intro!: ballI)
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   293
30198
922f944f03b2 name changes
nipkow
parents: 29859
diff changeset
   294
lemma refl_onD: "refl_on A r ==> a : A ==> (a, a) : r"
922f944f03b2 name changes
nipkow
parents: 29859
diff changeset
   295
by (unfold refl_on_def) blast
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   296
30198
922f944f03b2 name changes
nipkow
parents: 29859
diff changeset
   297
lemma refl_onD1: "refl_on A r ==> (x, y) : r ==> x : A"
922f944f03b2 name changes
nipkow
parents: 29859
diff changeset
   298
by (unfold refl_on_def) blast
19228
30fce6da8cbe added many simple lemmas
huffman
parents: 17589
diff changeset
   299
30198
922f944f03b2 name changes
nipkow
parents: 29859
diff changeset
   300
lemma refl_onD2: "refl_on A r ==> (x, y) : r ==> y : A"
922f944f03b2 name changes
nipkow
parents: 29859
diff changeset
   301
by (unfold refl_on_def) blast
19228
30fce6da8cbe added many simple lemmas
huffman
parents: 17589
diff changeset
   302
30198
922f944f03b2 name changes
nipkow
parents: 29859
diff changeset
   303
lemma refl_on_Int: "refl_on A r ==> refl_on B s ==> refl_on (A \<inter> B) (r \<inter> s)"
922f944f03b2 name changes
nipkow
parents: 29859
diff changeset
   304
by (unfold refl_on_def) blast
19228
30fce6da8cbe added many simple lemmas
huffman
parents: 17589
diff changeset
   305
30198
922f944f03b2 name changes
nipkow
parents: 29859
diff changeset
   306
lemma refl_on_Un: "refl_on A r ==> refl_on B s ==> refl_on (A \<union> B) (r \<union> s)"
922f944f03b2 name changes
nipkow
parents: 29859
diff changeset
   307
by (unfold refl_on_def) blast
19228
30fce6da8cbe added many simple lemmas
huffman
parents: 17589
diff changeset
   308
30198
922f944f03b2 name changes
nipkow
parents: 29859
diff changeset
   309
lemma refl_on_INTER:
922f944f03b2 name changes
nipkow
parents: 29859
diff changeset
   310
  "ALL x:S. refl_on (A x) (r x) ==> refl_on (INTER S A) (INTER S r)"
922f944f03b2 name changes
nipkow
parents: 29859
diff changeset
   311
by (unfold refl_on_def) fast
19228
30fce6da8cbe added many simple lemmas
huffman
parents: 17589
diff changeset
   312
30198
922f944f03b2 name changes
nipkow
parents: 29859
diff changeset
   313
lemma refl_on_UNION:
922f944f03b2 name changes
nipkow
parents: 29859
diff changeset
   314
  "ALL x:S. refl_on (A x) (r x) \<Longrightarrow> refl_on (UNION S A) (UNION S r)"
922f944f03b2 name changes
nipkow
parents: 29859
diff changeset
   315
by (unfold refl_on_def) blast
19228
30fce6da8cbe added many simple lemmas
huffman
parents: 17589
diff changeset
   316
30198
922f944f03b2 name changes
nipkow
parents: 29859
diff changeset
   317
lemma refl_on_empty[simp]: "refl_on {} {}"
922f944f03b2 name changes
nipkow
parents: 29859
diff changeset
   318
by(simp add:refl_on_def)
26297
74012d599204 added lemmas
nipkow
parents: 26271
diff changeset
   319
30198
922f944f03b2 name changes
nipkow
parents: 29859
diff changeset
   320
lemma refl_on_Id_on: "refl_on A (Id_on A)"
922f944f03b2 name changes
nipkow
parents: 29859
diff changeset
   321
by (rule refl_onI [OF Id_on_subset_Times Id_onI])
19228
30fce6da8cbe added many simple lemmas
huffman
parents: 17589
diff changeset
   322
41792
ff3cb0c418b7 renamed "nitpick\_def" to "nitpick_unfold" to reflect its new semantics
blanchet
parents: 41056
diff changeset
   323
lemma refl_on_def' [nitpick_unfold, code]:
41056
dcec9bc71ee9 adding a definition for refl_on which is friendly for quickcheck and nitpick
bulwahn
parents: 40923
diff changeset
   324
  "refl_on A r = ((\<forall>(x, y) \<in> r. x : A \<and> y : A) \<and> (\<forall>x \<in> A. (x, x) : r))"
dcec9bc71ee9 adding a definition for refl_on which is friendly for quickcheck and nitpick
bulwahn
parents: 40923
diff changeset
   325
by (auto intro: refl_onI dest: refl_onD refl_onD1 refl_onD2)
12913
5ac498bffb6b fixed document;
wenzelm
parents: 12905
diff changeset
   326
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
   327
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
   328
subsubsection {* Antisymmetry *}
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   329
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   330
lemma antisymI:
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   331
  "(!!x y. (x, y) : r ==> (y, x) : r ==> x=y) ==> antisym r"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   332
by (unfold antisym_def) iprover
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   333
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   334
lemma antisymD: "antisym r ==> (a, b) : r ==> (b, a) : r ==> a = b"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   335
by (unfold antisym_def) iprover
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   336
19228
30fce6da8cbe added many simple lemmas
huffman
parents: 17589
diff changeset
   337
lemma antisym_subset: "r \<subseteq> s ==> antisym s ==> antisym r"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   338
by (unfold antisym_def) blast
12913
5ac498bffb6b fixed document;
wenzelm
parents: 12905
diff changeset
   339
19228
30fce6da8cbe added many simple lemmas
huffman
parents: 17589
diff changeset
   340
lemma antisym_empty [simp]: "antisym {}"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   341
by (unfold antisym_def) blast
19228
30fce6da8cbe added many simple lemmas
huffman
parents: 17589
diff changeset
   342
30198
922f944f03b2 name changes
nipkow
parents: 29859
diff changeset
   343
lemma antisym_Id_on [simp]: "antisym (Id_on A)"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   344
by (unfold antisym_def) blast
19228
30fce6da8cbe added many simple lemmas
huffman
parents: 17589
diff changeset
   345
30fce6da8cbe added many simple lemmas
huffman
parents: 17589
diff changeset
   346
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
   347
subsubsection {* Symmetry *}
19228
30fce6da8cbe added many simple lemmas
huffman
parents: 17589
diff changeset
   348
30fce6da8cbe added many simple lemmas
huffman
parents: 17589
diff changeset
   349
lemma symI: "(!!a b. (a, b) : r ==> (b, a) : r) ==> sym r"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   350
by (unfold sym_def) iprover
15177
e7616269fdca new theorem symD
paulson
parents: 15140
diff changeset
   351
e7616269fdca new theorem symD
paulson
parents: 15140
diff changeset
   352
lemma symD: "sym r ==> (a, b) : r ==> (b, a) : r"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   353
by (unfold sym_def, blast)
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   354
19228
30fce6da8cbe added many simple lemmas
huffman
parents: 17589
diff changeset
   355
lemma sym_Int: "sym r ==> sym s ==> sym (r \<inter> s)"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   356
by (fast intro: symI dest: symD)
19228
30fce6da8cbe added many simple lemmas
huffman
parents: 17589
diff changeset
   357
30fce6da8cbe added many simple lemmas
huffman
parents: 17589
diff changeset
   358
lemma sym_Un: "sym r ==> sym s ==> sym (r \<union> s)"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   359
by (fast intro: symI dest: symD)
19228
30fce6da8cbe added many simple lemmas
huffman
parents: 17589
diff changeset
   360
30fce6da8cbe added many simple lemmas
huffman
parents: 17589
diff changeset
   361
lemma sym_INTER: "ALL x:S. sym (r x) ==> sym (INTER S r)"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   362
by (fast intro: symI dest: symD)
19228
30fce6da8cbe added many simple lemmas
huffman
parents: 17589
diff changeset
   363
30fce6da8cbe added many simple lemmas
huffman
parents: 17589
diff changeset
   364
lemma sym_UNION: "ALL x:S. sym (r x) ==> sym (UNION S r)"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   365
by (fast intro: symI dest: symD)
19228
30fce6da8cbe added many simple lemmas
huffman
parents: 17589
diff changeset
   366
30198
922f944f03b2 name changes
nipkow
parents: 29859
diff changeset
   367
lemma sym_Id_on [simp]: "sym (Id_on A)"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   368
by (rule symI) clarify
19228
30fce6da8cbe added many simple lemmas
huffman
parents: 17589
diff changeset
   369
30fce6da8cbe added many simple lemmas
huffman
parents: 17589
diff changeset
   370
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
   371
subsubsection {* Transitivity *}
19228
30fce6da8cbe added many simple lemmas
huffman
parents: 17589
diff changeset
   372
46127
af3b95160b59 cleanup of code declarations
haftmann
parents: 45967
diff changeset
   373
lemma trans_join [code]:
45012
060f76635bfe tuned specification and lemma distribution among theories; tuned proofs
haftmann
parents: 44921
diff changeset
   374
  "trans r \<longleftrightarrow> (\<forall>(x, y1) \<in> r. \<forall>(y2, z) \<in> r. y1 = y2 \<longrightarrow> (x, z) \<in> r)"
060f76635bfe tuned specification and lemma distribution among theories; tuned proofs
haftmann
parents: 44921
diff changeset
   375
  by (auto simp add: trans_def)
060f76635bfe tuned specification and lemma distribution among theories; tuned proofs
haftmann
parents: 44921
diff changeset
   376
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   377
lemma transI:
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   378
  "(!!x y z. (x, y) : r ==> (y, z) : r ==> (x, z) : r) ==> trans r"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   379
by (unfold trans_def) iprover
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   380
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   381
lemma transD: "trans r ==> (a, b) : r ==> (b, c) : r ==> (a, c) : r"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   382
by (unfold trans_def) iprover
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   383
19228
30fce6da8cbe added many simple lemmas
huffman
parents: 17589
diff changeset
   384
lemma trans_Int: "trans r ==> trans s ==> trans (r \<inter> s)"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   385
by (fast intro: transI elim: transD)
19228
30fce6da8cbe added many simple lemmas
huffman
parents: 17589
diff changeset
   386
30fce6da8cbe added many simple lemmas
huffman
parents: 17589
diff changeset
   387
lemma trans_INTER: "ALL x:S. trans (r x) ==> trans (INTER S r)"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   388
by (fast intro: transI elim: transD)
19228
30fce6da8cbe added many simple lemmas
huffman
parents: 17589
diff changeset
   389
30198
922f944f03b2 name changes
nipkow
parents: 29859
diff changeset
   390
lemma trans_Id_on [simp]: "trans (Id_on A)"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   391
by (fast intro: transI elim: transD)
19228
30fce6da8cbe added many simple lemmas
huffman
parents: 17589
diff changeset
   392
29859
33bff35f1335 Moved Order_Relation into Library and moved some of it into Relation.
nipkow
parents: 29609
diff changeset
   393
lemma trans_diff_Id: " trans r \<Longrightarrow> antisym r \<Longrightarrow> trans (r-Id)"
33bff35f1335 Moved Order_Relation into Library and moved some of it into Relation.
nipkow
parents: 29609
diff changeset
   394
unfolding antisym_def trans_def by blast
33bff35f1335 Moved Order_Relation into Library and moved some of it into Relation.
nipkow
parents: 29609
diff changeset
   395
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
   396
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
   397
subsubsection {* Irreflexivity *}
29859
33bff35f1335 Moved Order_Relation into Library and moved some of it into Relation.
nipkow
parents: 29609
diff changeset
   398
46127
af3b95160b59 cleanup of code declarations
haftmann
parents: 45967
diff changeset
   399
lemma irrefl_distinct [code]:
45012
060f76635bfe tuned specification and lemma distribution among theories; tuned proofs
haftmann
parents: 44921
diff changeset
   400
  "irrefl r \<longleftrightarrow> (\<forall>(x, y) \<in> r. x \<noteq> y)"
060f76635bfe tuned specification and lemma distribution among theories; tuned proofs
haftmann
parents: 44921
diff changeset
   401
  by (auto simp add: irrefl_def)
060f76635bfe tuned specification and lemma distribution among theories; tuned proofs
haftmann
parents: 44921
diff changeset
   402
29859
33bff35f1335 Moved Order_Relation into Library and moved some of it into Relation.
nipkow
parents: 29609
diff changeset
   403
lemma irrefl_diff_Id[simp]: "irrefl(r-Id)"
33bff35f1335 Moved Order_Relation into Library and moved some of it into Relation.
nipkow
parents: 29609
diff changeset
   404
by(simp add:irrefl_def)
33bff35f1335 Moved Order_Relation into Library and moved some of it into Relation.
nipkow
parents: 29609
diff changeset
   405
45139
bdcaa3f3a2f4 moved acyclic predicate up in hierarchy
haftmann
parents: 45137
diff changeset
   406
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
   407
subsubsection {* Totality *}
29859
33bff35f1335 Moved Order_Relation into Library and moved some of it into Relation.
nipkow
parents: 29609
diff changeset
   408
33bff35f1335 Moved Order_Relation into Library and moved some of it into Relation.
nipkow
parents: 29609
diff changeset
   409
lemma total_on_empty[simp]: "total_on {} r"
33bff35f1335 Moved Order_Relation into Library and moved some of it into Relation.
nipkow
parents: 29609
diff changeset
   410
by(simp add:total_on_def)
33bff35f1335 Moved Order_Relation into Library and moved some of it into Relation.
nipkow
parents: 29609
diff changeset
   411
33bff35f1335 Moved Order_Relation into Library and moved some of it into Relation.
nipkow
parents: 29609
diff changeset
   412
lemma total_on_diff_Id[simp]: "total_on A (r-Id) = total_on A r"
33bff35f1335 Moved Order_Relation into Library and moved some of it into Relation.
nipkow
parents: 29609
diff changeset
   413
by(simp add: total_on_def)
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   414
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
   415
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
   416
subsubsection {* Converse *}
12913
5ac498bffb6b fixed document;
wenzelm
parents: 12905
diff changeset
   417
5ac498bffb6b fixed document;
wenzelm
parents: 12905
diff changeset
   418
lemma converse_iff [iff]: "((a,b): r^-1) = ((b,a) : r)"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   419
by (simp add: converse_def)
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   420
13343
3b2b18c58d80 *** empty log message ***
nipkow
parents: 12913
diff changeset
   421
lemma converseI[sym]: "(a, b) : r ==> (b, a) : r^-1"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   422
by (simp add: converse_def)
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   423
13343
3b2b18c58d80 *** empty log message ***
nipkow
parents: 12913
diff changeset
   424
lemma converseD[sym]: "(a,b) : r^-1 ==> (b, a) : r"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   425
by (simp add: converse_def)
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   426
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   427
lemma converseE [elim!]:
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   428
  "yx : r^-1 ==> (!!x y. yx = (y, x) ==> (x, y) : r ==> P) ==> P"
12913
5ac498bffb6b fixed document;
wenzelm
parents: 12905
diff changeset
   429
    -- {* More general than @{text converseD}, as it ``splits'' the member of the relation. *}
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   430
by (unfold converse_def) (iprover elim!: CollectE splitE bexE)
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   431
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   432
lemma converse_converse [simp]: "(r^-1)^-1 = r"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   433
by (unfold converse_def) blast
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   434
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   435
lemma converse_rel_comp: "(r O s)^-1 = s^-1 O r^-1"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   436
by blast
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   437
19228
30fce6da8cbe added many simple lemmas
huffman
parents: 17589
diff changeset
   438
lemma converse_Int: "(r \<inter> s)^-1 = r^-1 \<inter> s^-1"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   439
by blast
19228
30fce6da8cbe added many simple lemmas
huffman
parents: 17589
diff changeset
   440
30fce6da8cbe added many simple lemmas
huffman
parents: 17589
diff changeset
   441
lemma converse_Un: "(r \<union> s)^-1 = r^-1 \<union> s^-1"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   442
by blast
19228
30fce6da8cbe added many simple lemmas
huffman
parents: 17589
diff changeset
   443
30fce6da8cbe added many simple lemmas
huffman
parents: 17589
diff changeset
   444
lemma converse_INTER: "(INTER S r)^-1 = (INT x:S. (r x)^-1)"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   445
by fast
19228
30fce6da8cbe added many simple lemmas
huffman
parents: 17589
diff changeset
   446
30fce6da8cbe added many simple lemmas
huffman
parents: 17589
diff changeset
   447
lemma converse_UNION: "(UNION S r)^-1 = (UN x:S. (r x)^-1)"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   448
by blast
19228
30fce6da8cbe added many simple lemmas
huffman
parents: 17589
diff changeset
   449
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   450
lemma converse_Id [simp]: "Id^-1 = Id"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   451
by blast
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   452
30198
922f944f03b2 name changes
nipkow
parents: 29859
diff changeset
   453
lemma converse_Id_on [simp]: "(Id_on A)^-1 = Id_on A"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   454
by blast
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   455
30198
922f944f03b2 name changes
nipkow
parents: 29859
diff changeset
   456
lemma refl_on_converse [simp]: "refl_on A (converse r) = refl_on A r"
922f944f03b2 name changes
nipkow
parents: 29859
diff changeset
   457
by (unfold refl_on_def) auto
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   458
19228
30fce6da8cbe added many simple lemmas
huffman
parents: 17589
diff changeset
   459
lemma sym_converse [simp]: "sym (converse r) = sym r"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   460
by (unfold sym_def) blast
19228
30fce6da8cbe added many simple lemmas
huffman
parents: 17589
diff changeset
   461
30fce6da8cbe added many simple lemmas
huffman
parents: 17589
diff changeset
   462
lemma antisym_converse [simp]: "antisym (converse r) = antisym r"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   463
by (unfold antisym_def) blast
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   464
19228
30fce6da8cbe added many simple lemmas
huffman
parents: 17589
diff changeset
   465
lemma trans_converse [simp]: "trans (converse r) = trans r"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   466
by (unfold trans_def) blast
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   467
19228
30fce6da8cbe added many simple lemmas
huffman
parents: 17589
diff changeset
   468
lemma sym_conv_converse_eq: "sym r = (r^-1 = r)"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   469
by (unfold sym_def) fast
19228
30fce6da8cbe added many simple lemmas
huffman
parents: 17589
diff changeset
   470
30fce6da8cbe added many simple lemmas
huffman
parents: 17589
diff changeset
   471
lemma sym_Un_converse: "sym (r \<union> r^-1)"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   472
by (unfold sym_def) blast
19228
30fce6da8cbe added many simple lemmas
huffman
parents: 17589
diff changeset
   473
30fce6da8cbe added many simple lemmas
huffman
parents: 17589
diff changeset
   474
lemma sym_Int_converse: "sym (r \<inter> r^-1)"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   475
by (unfold sym_def) blast
19228
30fce6da8cbe added many simple lemmas
huffman
parents: 17589
diff changeset
   476
29859
33bff35f1335 Moved Order_Relation into Library and moved some of it into Relation.
nipkow
parents: 29609
diff changeset
   477
lemma total_on_converse[simp]: "total_on A (r^-1) = total_on A r"
33bff35f1335 Moved Order_Relation into Library and moved some of it into Relation.
nipkow
parents: 29609
diff changeset
   478
by (auto simp: total_on_def)
33bff35f1335 Moved Order_Relation into Library and moved some of it into Relation.
nipkow
parents: 29609
diff changeset
   479
12913
5ac498bffb6b fixed document;
wenzelm
parents: 12905
diff changeset
   480
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
   481
subsubsection {* Domain *}
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   482
35828
46cfc4b8112e now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
blanchet
parents: 33218
diff changeset
   483
declare Domain_def [no_atp]
24286
7619080e49f0 ATP blacklisting is now in theory data, attribute noatp
paulson
parents: 23709
diff changeset
   484
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   485
lemma Domain_iff: "(a : Domain r) = (EX y. (a, y) : r)"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   486
by (unfold Domain_def) blast
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   487
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   488
lemma DomainI [intro]: "(a, b) : r ==> a : Domain r"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   489
by (iprover intro!: iffD2 [OF Domain_iff])
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   490
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   491
lemma DomainE [elim!]:
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   492
  "a : Domain r ==> (!!y. (a, y) : r ==> P) ==> P"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   493
by (iprover dest!: iffD1 [OF Domain_iff])
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   494
46127
af3b95160b59 cleanup of code declarations
haftmann
parents: 45967
diff changeset
   495
lemma Domain_fst [code]:
45012
060f76635bfe tuned specification and lemma distribution among theories; tuned proofs
haftmann
parents: 44921
diff changeset
   496
  "Domain r = fst ` r"
060f76635bfe tuned specification and lemma distribution among theories; tuned proofs
haftmann
parents: 44921
diff changeset
   497
  by (auto simp add: image_def Bex_def)
060f76635bfe tuned specification and lemma distribution among theories; tuned proofs
haftmann
parents: 44921
diff changeset
   498
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   499
lemma Domain_empty [simp]: "Domain {} = {}"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   500
by blast
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   501
32876
c34b072518c9 New facts about domain and range in
paulson
parents: 32850
diff changeset
   502
lemma Domain_empty_iff: "Domain r = {} \<longleftrightarrow> r = {}"
c34b072518c9 New facts about domain and range in
paulson
parents: 32850
diff changeset
   503
  by auto
c34b072518c9 New facts about domain and range in
paulson
parents: 32850
diff changeset
   504
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   505
lemma Domain_insert: "Domain (insert (a, b) r) = insert a (Domain r)"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   506
by blast
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   507
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   508
lemma Domain_Id [simp]: "Domain Id = UNIV"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   509
by blast
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   510
30198
922f944f03b2 name changes
nipkow
parents: 29859
diff changeset
   511
lemma Domain_Id_on [simp]: "Domain (Id_on A) = A"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   512
by blast
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   513
13830
7f8c1b533e8b some x-symbols and some new lemmas
paulson
parents: 13812
diff changeset
   514
lemma Domain_Un_eq: "Domain(A \<union> B) = Domain(A) \<union> Domain(B)"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   515
by blast
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   516
13830
7f8c1b533e8b some x-symbols and some new lemmas
paulson
parents: 13812
diff changeset
   517
lemma Domain_Int_subset: "Domain(A \<inter> B) \<subseteq> Domain(A) \<inter> Domain(B)"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   518
by blast
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   519
12913
5ac498bffb6b fixed document;
wenzelm
parents: 12905
diff changeset
   520
lemma Domain_Diff_subset: "Domain(A) - Domain(B) \<subseteq> Domain(A - B)"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   521
by blast
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   522
13830
7f8c1b533e8b some x-symbols and some new lemmas
paulson
parents: 13812
diff changeset
   523
lemma Domain_Union: "Domain (Union S) = (\<Union>A\<in>S. Domain A)"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   524
by blast
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   525
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   526
lemma Domain_converse[simp]: "Domain(r^-1) = Range r"
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   527
by(auto simp:Range_def)
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   528
12913
5ac498bffb6b fixed document;
wenzelm
parents: 12905
diff changeset
   529
lemma Domain_mono: "r \<subseteq> s ==> Domain r \<subseteq> Domain s"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   530
by blast
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   531
36729
f5b63d2bd8fa removed semicolons
krauss
parents: 36728
diff changeset
   532
lemma fst_eq_Domain: "fst ` R = Domain R"
44921
58eef4843641 tuned proofs
huffman
parents: 44278
diff changeset
   533
  by force
22172
e7d6cb237b5e some new lemmas
paulson
parents: 21404
diff changeset
   534
29609
a010aab5bed0 changed import hierarchy
haftmann
parents: 28008
diff changeset
   535
lemma Domain_dprod [simp]: "Domain (dprod r s) = uprod (Domain r) (Domain s)"
a010aab5bed0 changed import hierarchy
haftmann
parents: 28008
diff changeset
   536
by auto
a010aab5bed0 changed import hierarchy
haftmann
parents: 28008
diff changeset
   537
a010aab5bed0 changed import hierarchy
haftmann
parents: 28008
diff changeset
   538
lemma Domain_dsum [simp]: "Domain (dsum r s) = usum (Domain r) (Domain s)"
a010aab5bed0 changed import hierarchy
haftmann
parents: 28008
diff changeset
   539
by auto
a010aab5bed0 changed import hierarchy
haftmann
parents: 28008
diff changeset
   540
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   541
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
   542
subsubsection {* Range *}
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   543
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   544
lemma Range_iff: "(a : Range r) = (EX y. (y, a) : r)"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   545
by (simp add: Domain_def Range_def)
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   546
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   547
lemma RangeI [intro]: "(a, b) : r ==> b : Range r"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   548
by (unfold Range_def) (iprover intro!: converseI DomainI)
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   549
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   550
lemma RangeE [elim!]: "b : Range r ==> (!!x. (x, b) : r ==> P) ==> P"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   551
by (unfold Range_def) (iprover elim!: DomainE dest!: converseD)
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   552
46127
af3b95160b59 cleanup of code declarations
haftmann
parents: 45967
diff changeset
   553
lemma Range_snd [code]:
45012
060f76635bfe tuned specification and lemma distribution among theories; tuned proofs
haftmann
parents: 44921
diff changeset
   554
  "Range r = snd ` r"
060f76635bfe tuned specification and lemma distribution among theories; tuned proofs
haftmann
parents: 44921
diff changeset
   555
  by (auto simp add: image_def Bex_def)
060f76635bfe tuned specification and lemma distribution among theories; tuned proofs
haftmann
parents: 44921
diff changeset
   556
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   557
lemma Range_empty [simp]: "Range {} = {}"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   558
by blast
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   559
32876
c34b072518c9 New facts about domain and range in
paulson
parents: 32850
diff changeset
   560
lemma Range_empty_iff: "Range r = {} \<longleftrightarrow> r = {}"
c34b072518c9 New facts about domain and range in
paulson
parents: 32850
diff changeset
   561
  by auto
c34b072518c9 New facts about domain and range in
paulson
parents: 32850
diff changeset
   562
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   563
lemma Range_insert: "Range (insert (a, b) r) = insert b (Range r)"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   564
by blast
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   565
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   566
lemma Range_Id [simp]: "Range Id = UNIV"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   567
by blast
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   568
30198
922f944f03b2 name changes
nipkow
parents: 29859
diff changeset
   569
lemma Range_Id_on [simp]: "Range (Id_on A) = A"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   570
by auto
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   571
13830
7f8c1b533e8b some x-symbols and some new lemmas
paulson
parents: 13812
diff changeset
   572
lemma Range_Un_eq: "Range(A \<union> B) = Range(A) \<union> Range(B)"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   573
by blast
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   574
13830
7f8c1b533e8b some x-symbols and some new lemmas
paulson
parents: 13812
diff changeset
   575
lemma Range_Int_subset: "Range(A \<inter> B) \<subseteq> Range(A) \<inter> Range(B)"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   576
by blast
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   577
12913
5ac498bffb6b fixed document;
wenzelm
parents: 12905
diff changeset
   578
lemma Range_Diff_subset: "Range(A) - Range(B) \<subseteq> Range(A - B)"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   579
by blast
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   580
13830
7f8c1b533e8b some x-symbols and some new lemmas
paulson
parents: 13812
diff changeset
   581
lemma Range_Union: "Range (Union S) = (\<Union>A\<in>S. Range A)"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   582
by blast
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   583
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   584
lemma Range_converse[simp]: "Range(r^-1) = Domain r"
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   585
by blast
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   586
36729
f5b63d2bd8fa removed semicolons
krauss
parents: 36728
diff changeset
   587
lemma snd_eq_Range: "snd ` R = Range R"
44921
58eef4843641 tuned proofs
huffman
parents: 44278
diff changeset
   588
  by force
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   589
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   590
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
   591
subsubsection {* Field *}
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   592
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   593
lemma mono_Field: "r \<subseteq> s \<Longrightarrow> Field r \<subseteq> Field s"
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   594
by(auto simp:Field_def Domain_def Range_def)
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   595
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   596
lemma Field_empty[simp]: "Field {} = {}"
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   597
by(auto simp:Field_def)
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   598
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   599
lemma Field_insert[simp]: "Field (insert (a,b) r) = {a,b} \<union> Field r"
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   600
by(auto simp:Field_def)
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   601
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   602
lemma Field_Un[simp]: "Field (r \<union> s) = Field r \<union> Field s"
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   603
by(auto simp:Field_def)
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   604
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   605
lemma Field_Union[simp]: "Field (\<Union>R) = \<Union>(Field ` R)"
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   606
by(auto simp:Field_def)
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   607
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   608
lemma Field_converse[simp]: "Field(r^-1) = Field r"
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   609
by(auto simp:Field_def)
22172
e7d6cb237b5e some new lemmas
paulson
parents: 21404
diff changeset
   610
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   611
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
   612
subsubsection {* Image of a set under a relation *}
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   613
35828
46cfc4b8112e now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
blanchet
parents: 33218
diff changeset
   614
declare Image_def [no_atp]
24286
7619080e49f0 ATP blacklisting is now in theory data, attribute noatp
paulson
parents: 23709
diff changeset
   615
12913
5ac498bffb6b fixed document;
wenzelm
parents: 12905
diff changeset
   616
lemma Image_iff: "(b : r``A) = (EX x:A. (x, b) : r)"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   617
by (simp add: Image_def)
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   618
12913
5ac498bffb6b fixed document;
wenzelm
parents: 12905
diff changeset
   619
lemma Image_singleton: "r``{a} = {b. (a, b) : r}"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   620
by (simp add: Image_def)
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   621
12913
5ac498bffb6b fixed document;
wenzelm
parents: 12905
diff changeset
   622
lemma Image_singleton_iff [iff]: "(b : r``{a}) = ((a, b) : r)"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   623
by (rule Image_iff [THEN trans]) simp
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   624
35828
46cfc4b8112e now use "Named_Thms" for "noatp", and renamed "noatp" to "no_atp"
blanchet
parents: 33218
diff changeset
   625
lemma ImageI [intro,no_atp]: "(a, b) : r ==> a : A ==> b : r``A"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   626
by (unfold Image_def) blast
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   627
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   628
lemma ImageE [elim!]:
12913
5ac498bffb6b fixed document;
wenzelm
parents: 12905
diff changeset
   629
    "b : r `` A ==> (!!x. (x, b) : r ==> x : A ==> P) ==> P"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   630
by (unfold Image_def) (iprover elim!: CollectE bexE)
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   631
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   632
lemma rev_ImageI: "a : A ==> (a, b) : r ==> b : r `` A"
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   633
  -- {* This version's more effective when we already have the required @{text a} *}
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   634
by blast
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   635
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   636
lemma Image_empty [simp]: "R``{} = {}"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   637
by blast
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   638
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   639
lemma Image_Id [simp]: "Id `` A = A"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   640
by blast
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   641
30198
922f944f03b2 name changes
nipkow
parents: 29859
diff changeset
   642
lemma Image_Id_on [simp]: "Id_on A `` B = A \<inter> B"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   643
by blast
13830
7f8c1b533e8b some x-symbols and some new lemmas
paulson
parents: 13812
diff changeset
   644
7f8c1b533e8b some x-symbols and some new lemmas
paulson
parents: 13812
diff changeset
   645
lemma Image_Int_subset: "R `` (A \<inter> B) \<subseteq> R `` A \<inter> R `` B"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   646
by blast
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   647
13830
7f8c1b533e8b some x-symbols and some new lemmas
paulson
parents: 13812
diff changeset
   648
lemma Image_Int_eq:
7f8c1b533e8b some x-symbols and some new lemmas
paulson
parents: 13812
diff changeset
   649
     "single_valued (converse R) ==> R `` (A \<inter> B) = R `` A \<inter> R `` B"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   650
by (simp add: single_valued_def, blast) 
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   651
13830
7f8c1b533e8b some x-symbols and some new lemmas
paulson
parents: 13812
diff changeset
   652
lemma Image_Un: "R `` (A \<union> B) = R `` A \<union> R `` B"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   653
by blast
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   654
13812
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13639
diff changeset
   655
lemma Un_Image: "(R \<union> S) `` A = R `` A \<union> S `` A"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   656
by blast
13812
91713a1915ee converting HOL/UNITY to use unconditional fairness
paulson
parents: 13639
diff changeset
   657
12913
5ac498bffb6b fixed document;
wenzelm
parents: 12905
diff changeset
   658
lemma Image_subset: "r \<subseteq> A \<times> B ==> r``C \<subseteq> B"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   659
by (iprover intro!: subsetI elim!: ImageE dest!: subsetD SigmaD2)
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   660
13830
7f8c1b533e8b some x-symbols and some new lemmas
paulson
parents: 13812
diff changeset
   661
lemma Image_eq_UN: "r``B = (\<Union>y\<in> B. r``{y})"
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   662
  -- {* NOT suitable for rewriting *}
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   663
by blast
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   664
12913
5ac498bffb6b fixed document;
wenzelm
parents: 12905
diff changeset
   665
lemma Image_mono: "r' \<subseteq> r ==> A' \<subseteq> A ==> (r' `` A') \<subseteq> (r `` A)"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   666
by blast
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   667
13830
7f8c1b533e8b some x-symbols and some new lemmas
paulson
parents: 13812
diff changeset
   668
lemma Image_UN: "(r `` (UNION A B)) = (\<Union>x\<in>A. r `` (B x))"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   669
by blast
13830
7f8c1b533e8b some x-symbols and some new lemmas
paulson
parents: 13812
diff changeset
   670
7f8c1b533e8b some x-symbols and some new lemmas
paulson
parents: 13812
diff changeset
   671
lemma Image_INT_subset: "(r `` INTER A B) \<subseteq> (\<Inter>x\<in>A. r `` (B x))"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   672
by blast
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   673
13830
7f8c1b533e8b some x-symbols and some new lemmas
paulson
parents: 13812
diff changeset
   674
text{*Converse inclusion requires some assumptions*}
7f8c1b533e8b some x-symbols and some new lemmas
paulson
parents: 13812
diff changeset
   675
lemma Image_INT_eq:
7f8c1b533e8b some x-symbols and some new lemmas
paulson
parents: 13812
diff changeset
   676
     "[|single_valued (r\<inverse>); A\<noteq>{}|] ==> r `` INTER A B = (\<Inter>x\<in>A. r `` B x)"
7f8c1b533e8b some x-symbols and some new lemmas
paulson
parents: 13812
diff changeset
   677
apply (rule equalityI)
7f8c1b533e8b some x-symbols and some new lemmas
paulson
parents: 13812
diff changeset
   678
 apply (rule Image_INT_subset) 
7f8c1b533e8b some x-symbols and some new lemmas
paulson
parents: 13812
diff changeset
   679
apply  (simp add: single_valued_def, blast)
7f8c1b533e8b some x-symbols and some new lemmas
paulson
parents: 13812
diff changeset
   680
done
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   681
12913
5ac498bffb6b fixed document;
wenzelm
parents: 12905
diff changeset
   682
lemma Image_subset_eq: "(r``A \<subseteq> B) = (A \<subseteq> - ((r^-1) `` (-B)))"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   683
by blast
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   684
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   685
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
   686
subsubsection {* Single valued relations *}
12913
5ac498bffb6b fixed document;
wenzelm
parents: 12905
diff changeset
   687
5ac498bffb6b fixed document;
wenzelm
parents: 12905
diff changeset
   688
lemma single_valuedI:
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   689
  "ALL x y. (x,y):r --> (ALL z. (x,z):r --> y=z) ==> single_valued r"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   690
by (unfold single_valued_def)
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   691
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   692
lemma single_valuedD:
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   693
  "single_valued r ==> (x, y) : r ==> (x, z) : r ==> y = z"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   694
by (simp add: single_valued_def)
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   695
19228
30fce6da8cbe added many simple lemmas
huffman
parents: 17589
diff changeset
   696
lemma single_valued_rel_comp:
30fce6da8cbe added many simple lemmas
huffman
parents: 17589
diff changeset
   697
  "single_valued r ==> single_valued s ==> single_valued (r O s)"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   698
by (unfold single_valued_def) blast
19228
30fce6da8cbe added many simple lemmas
huffman
parents: 17589
diff changeset
   699
30fce6da8cbe added many simple lemmas
huffman
parents: 17589
diff changeset
   700
lemma single_valued_subset:
30fce6da8cbe added many simple lemmas
huffman
parents: 17589
diff changeset
   701
  "r \<subseteq> s ==> single_valued s ==> single_valued r"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   702
by (unfold single_valued_def) blast
19228
30fce6da8cbe added many simple lemmas
huffman
parents: 17589
diff changeset
   703
30fce6da8cbe added many simple lemmas
huffman
parents: 17589
diff changeset
   704
lemma single_valued_Id [simp]: "single_valued Id"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   705
by (unfold single_valued_def) blast
19228
30fce6da8cbe added many simple lemmas
huffman
parents: 17589
diff changeset
   706
30198
922f944f03b2 name changes
nipkow
parents: 29859
diff changeset
   707
lemma single_valued_Id_on [simp]: "single_valued (Id_on A)"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   708
by (unfold single_valued_def) blast
19228
30fce6da8cbe added many simple lemmas
huffman
parents: 17589
diff changeset
   709
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   710
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
   711
subsubsection {* Graphs given by @{text Collect} *}
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   712
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   713
lemma Domain_Collect_split [simp]: "Domain{(x,y). P x y} = {x. EX y. P x y}"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   714
by auto
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   715
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   716
lemma Range_Collect_split [simp]: "Range{(x,y). P x y} = {y. EX x. P x y}"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   717
by auto
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   718
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   719
lemma Image_Collect_split [simp]: "{(x,y). P x y} `` A = {y. EX x:A. P x y}"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   720
by auto
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   721
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   722
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
   723
subsubsection {* Inverse image *}
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   724
19228
30fce6da8cbe added many simple lemmas
huffman
parents: 17589
diff changeset
   725
lemma sym_inv_image: "sym r ==> sym (inv_image r f)"
26271
e324f8918c98 Added lemmas
nipkow
parents: 24915
diff changeset
   726
by (unfold sym_def inv_image_def) blast
19228
30fce6da8cbe added many simple lemmas
huffman
parents: 17589
diff changeset
   727
12913
5ac498bffb6b fixed document;
wenzelm
parents: 12905
diff changeset
   728
lemma trans_inv_image: "trans r ==> trans (inv_image r f)"
12905
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   729
  apply (unfold trans_def inv_image_def)
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   730
  apply (simp (no_asm))
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   731
  apply blast
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   732
  done
bbbae3f359e6 Converted to new theory format.
berghofe
parents: 12487
diff changeset
   733
32463
3a0a65ca2261 moved lemma Wellfounded.in_inv_image to Relation.thy
krauss
parents: 32235
diff changeset
   734
lemma in_inv_image[simp]: "((x,y) : inv_image r f) = ((f x, f y) : r)"
3a0a65ca2261 moved lemma Wellfounded.in_inv_image to Relation.thy
krauss
parents: 32235
diff changeset
   735
  by (auto simp:inv_image_def)
3a0a65ca2261 moved lemma Wellfounded.in_inv_image to Relation.thy
krauss
parents: 32235
diff changeset
   736
33218
ecb5cd453ef2 lemma converse_inv_image
krauss
parents: 32876
diff changeset
   737
lemma converse_inv_image[simp]: "(inv_image R f)^-1 = inv_image (R^-1) f"
ecb5cd453ef2 lemma converse_inv_image
krauss
parents: 32876
diff changeset
   738
unfolding inv_image_def converse_def by auto
ecb5cd453ef2 lemma converse_inv_image
krauss
parents: 32876
diff changeset
   739
23709
fd31da8f752a moved lfp_induct2 here
haftmann
parents: 23185
diff changeset
   740
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
   741
subsubsection {* Finiteness *}
29609
a010aab5bed0 changed import hierarchy
haftmann
parents: 28008
diff changeset
   742
a010aab5bed0 changed import hierarchy
haftmann
parents: 28008
diff changeset
   743
lemma finite_converse [iff]: "finite (r^-1) = finite r"
a010aab5bed0 changed import hierarchy
haftmann
parents: 28008
diff changeset
   744
  apply (subgoal_tac "r^-1 = (%(x,y). (y,x))`r")
a010aab5bed0 changed import hierarchy
haftmann
parents: 28008
diff changeset
   745
   apply simp
a010aab5bed0 changed import hierarchy
haftmann
parents: 28008
diff changeset
   746
   apply (rule iffI)
a010aab5bed0 changed import hierarchy
haftmann
parents: 28008
diff changeset
   747
    apply (erule finite_imageD [unfolded inj_on_def])
a010aab5bed0 changed import hierarchy
haftmann
parents: 28008
diff changeset
   748
    apply (simp split add: split_split)
a010aab5bed0 changed import hierarchy
haftmann
parents: 28008
diff changeset
   749
   apply (erule finite_imageI)
a010aab5bed0 changed import hierarchy
haftmann
parents: 28008
diff changeset
   750
  apply (simp add: converse_def image_def, auto)
a010aab5bed0 changed import hierarchy
haftmann
parents: 28008
diff changeset
   751
  apply (rule bexI)
a010aab5bed0 changed import hierarchy
haftmann
parents: 28008
diff changeset
   752
   prefer 2 apply assumption
a010aab5bed0 changed import hierarchy
haftmann
parents: 28008
diff changeset
   753
  apply simp
a010aab5bed0 changed import hierarchy
haftmann
parents: 28008
diff changeset
   754
  done
a010aab5bed0 changed import hierarchy
haftmann
parents: 28008
diff changeset
   755
32876
c34b072518c9 New facts about domain and range in
paulson
parents: 32850
diff changeset
   756
lemma finite_Domain: "finite r ==> finite (Domain r)"
c34b072518c9 New facts about domain and range in
paulson
parents: 32850
diff changeset
   757
  by (induct set: finite) (auto simp add: Domain_insert)
c34b072518c9 New facts about domain and range in
paulson
parents: 32850
diff changeset
   758
c34b072518c9 New facts about domain and range in
paulson
parents: 32850
diff changeset
   759
lemma finite_Range: "finite r ==> finite (Range r)"
c34b072518c9 New facts about domain and range in
paulson
parents: 32850
diff changeset
   760
  by (induct set: finite) (auto simp add: Range_insert)
29609
a010aab5bed0 changed import hierarchy
haftmann
parents: 28008
diff changeset
   761
a010aab5bed0 changed import hierarchy
haftmann
parents: 28008
diff changeset
   762
lemma finite_Field: "finite r ==> finite (Field r)"
a010aab5bed0 changed import hierarchy
haftmann
parents: 28008
diff changeset
   763
  -- {* A finite relation has a finite field (@{text "= domain \<union> range"}. *}
a010aab5bed0 changed import hierarchy
haftmann
parents: 28008
diff changeset
   764
  apply (induct set: finite)
a010aab5bed0 changed import hierarchy
haftmann
parents: 28008
diff changeset
   765
   apply (auto simp add: Field_def Domain_insert Range_insert)
a010aab5bed0 changed import hierarchy
haftmann
parents: 28008
diff changeset
   766
  done
a010aab5bed0 changed import hierarchy
haftmann
parents: 28008
diff changeset
   767
a010aab5bed0 changed import hierarchy
haftmann
parents: 28008
diff changeset
   768
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
   769
subsubsection {* Miscellaneous *}
36728
ae397b810c8b rule subrelI (for nice Isar proofs of relation inequalities)
krauss
parents: 35828
diff changeset
   770
ae397b810c8b rule subrelI (for nice Isar proofs of relation inequalities)
krauss
parents: 35828
diff changeset
   771
text {* Version of @{thm[source] lfp_induct} for binary relations *}
23709
fd31da8f752a moved lfp_induct2 here
haftmann
parents: 23185
diff changeset
   772
fd31da8f752a moved lfp_induct2 here
haftmann
parents: 23185
diff changeset
   773
lemmas lfp_induct2 = 
fd31da8f752a moved lfp_induct2 here
haftmann
parents: 23185
diff changeset
   774
  lfp_induct_set [of "(a, b)", split_format (complete)]
fd31da8f752a moved lfp_induct2 here
haftmann
parents: 23185
diff changeset
   775
36728
ae397b810c8b rule subrelI (for nice Isar proofs of relation inequalities)
krauss
parents: 35828
diff changeset
   776
text {* Version of @{thm[source] subsetI} for binary relations *}
ae397b810c8b rule subrelI (for nice Isar proofs of relation inequalities)
krauss
parents: 35828
diff changeset
   777
ae397b810c8b rule subrelI (for nice Isar proofs of relation inequalities)
krauss
parents: 35828
diff changeset
   778
lemma subrelI: "(\<And>x y. (x, y) \<in> r \<Longrightarrow> (x, y) \<in> s) \<Longrightarrow> r \<subseteq> s"
ae397b810c8b rule subrelI (for nice Isar proofs of relation inequalities)
krauss
parents: 35828
diff changeset
   779
by auto
ae397b810c8b rule subrelI (for nice Isar proofs of relation inequalities)
krauss
parents: 35828
diff changeset
   780
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
   781
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
   782
subsection {* Relations as binary predicates *}
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
   783
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
   784
subsubsection {* Composition *}
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
   785
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
   786
inductive pred_comp  :: "['a \<Rightarrow> 'b \<Rightarrow> bool, 'b \<Rightarrow> 'c \<Rightarrow> bool] \<Rightarrow> 'a \<Rightarrow> 'c \<Rightarrow> bool" (infixr "OO" 75)
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
   787
  for r :: "'a \<Rightarrow> 'b \<Rightarrow> bool" and s :: "'b \<Rightarrow> 'c \<Rightarrow> bool" where
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
   788
  pred_compI [intro]: "r a b \<Longrightarrow> s b c \<Longrightarrow> (r OO s) a c"
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
   789
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
   790
inductive_cases pred_compE [elim!]: "(r OO s) a c"
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
   791
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
   792
lemma pred_comp_rel_comp_eq [pred_set_conv]:
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
   793
  "((\<lambda>x y. (x, y) \<in> r) OO (\<lambda>x y. (x, y) \<in> s)) = (\<lambda>x y. (x, y) \<in> r O 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
   794
  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
   795
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
   796
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
   797
subsubsection {* Converse *}
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
   798
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
   799
inductive conversep :: "('a \<Rightarrow> 'b \<Rightarrow> bool) \<Rightarrow> 'b \<Rightarrow> 'a \<Rightarrow> bool" ("(_^--1)" [1000] 1000)
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
   800
  for r :: "'a \<Rightarrow> 'b \<Rightarrow> bool" where
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
   801
  conversepI: "r a b \<Longrightarrow> r^--1 b 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
   802
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
   803
notation (xsymbols)
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
   804
  conversep  ("(_\<inverse>\<inverse>)" [1000] 1000)
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
   805
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
   806
lemma conversepD:
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
   807
  assumes ab: "r^--1 a b"
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
   808
  shows "r b a" using ab
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
   809
  by cases simp
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
   810
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
   811
lemma conversep_iff [iff]: "r^--1 a b = r b 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
   812
  by (iprover intro: conversepI dest: conversepD)
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
   813
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
   814
lemma conversep_converse_eq [pred_set_conv]:
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
   815
  "(\<lambda>x y. (x, y) \<in> r)^--1 = (\<lambda>x y. (x, y) \<in> r^-1)"
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
   816
  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
   817
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
   818
lemma conversep_conversep [simp]: "(r^--1)^--1 = r"
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
   819
  by (iprover intro: order_antisym conversepI dest: conversepD)
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
   820
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
   821
lemma converse_pred_comp: "(r OO s)^--1 = s^--1 OO r^--1"
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
   822
  by (iprover intro: order_antisym conversepI pred_compI
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
   823
    elim: pred_compE dest: conversepD)
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
   824
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
   825
lemma converse_meet: "(r \<sqinter> s)^--1 = r^--1 \<sqinter> s^--1"
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
   826
  by (simp add: inf_fun_def) (iprover intro: conversepI ext dest: conversepD)
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
   827
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
   828
lemma converse_join: "(r \<squnion> s)^--1 = r^--1 \<squnion> s^--1"
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
   829
  by (simp add: sup_fun_def) (iprover intro: conversepI ext dest: conversepD)
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
   830
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
   831
lemma conversep_noteq [simp]: "(op \<noteq>)^--1 = op \<noteq>"
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
   832
  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
   833
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
   834
lemma conversep_eq [simp]: "(op =)^--1 = op ="
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
   835
  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
   836
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
   837
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
   838
subsubsection {* Domain *}
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
   839
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
   840
inductive DomainP :: "('a \<Rightarrow> 'b \<Rightarrow> bool) \<Rightarrow> 'a \<Rightarrow> bool"
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
   841
  for r :: "'a \<Rightarrow> 'b \<Rightarrow> bool" where
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
   842
  DomainPI [intro]: "r a b \<Longrightarrow> DomainP r 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
   843
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
   844
inductive_cases DomainPE [elim!]: "DomainP r 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
   845
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
   846
lemma DomainP_Domain_eq [pred_set_conv]: "DomainP (\<lambda>x y. (x, y) \<in> r) = (\<lambda>x. x \<in> Domain r)"
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
   847
  by (blast intro!: Orderings.order_antisym predicate1I)
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
   848
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
   849
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
   850
subsubsection {* Range *}
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
   851
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
   852
inductive RangeP :: "('a \<Rightarrow> 'b \<Rightarrow> bool) \<Rightarrow> 'b \<Rightarrow> bool"
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
   853
  for r :: "'a \<Rightarrow> 'b \<Rightarrow> bool" where
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
   854
  RangePI [intro]: "r a b \<Longrightarrow> RangeP r b"
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
   855
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
   856
inductive_cases RangePE [elim!]: "RangeP r b"
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
   857
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
   858
lemma RangeP_Range_eq [pred_set_conv]: "RangeP (\<lambda>x y. (x, y) \<in> r) = (\<lambda>x. x \<in> Range r)"
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
   859
  by (blast intro!: Orderings.order_antisym predicate1I)
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
   860
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
   861
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
   862
subsubsection {* Inverse image *}
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
   863
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
   864
definition inv_imagep :: "('b \<Rightarrow> 'b \<Rightarrow> bool) \<Rightarrow> ('a \<Rightarrow> 'b) \<Rightarrow> 'a \<Rightarrow> 'a \<Rightarrow> bool" where
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
   865
  "inv_imagep r f = (\<lambda>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
   866
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
   867
lemma [pred_set_conv]: "inv_imagep (\<lambda>x y. (x, y) \<in> r) f = (\<lambda>x y. (x, y) \<in> inv_image r f)"
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
   868
  by (simp add: inv_image_def 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
   869
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
   870
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
   871
  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
   872
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
   873
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
   874
subsubsection {* Powerset *}
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
   875
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
   876
definition Powp :: "('a \<Rightarrow> bool) \<Rightarrow> 'a set \<Rightarrow> bool" where
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
   877
  "Powp A = (\<lambda>B. \<forall>x \<in> B. A x)"
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
   878
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
   879
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
   880
  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
   881
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
   882
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
   883
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
   884
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
   885
subsubsection {* Properties of predicate relations *}
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
   886
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
   887
abbreviation antisymP :: "('a \<Rightarrow> 'a \<Rightarrow> bool) \<Rightarrow> bool" where
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
   888
  "antisymP r \<equiv> antisym {(x, y). r x 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
   889
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
   890
abbreviation transP :: "('a \<Rightarrow> 'a \<Rightarrow> bool) \<Rightarrow> bool" where
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
   891
  "transP r \<equiv> trans {(x, y). r x 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
   892
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
   893
abbreviation single_valuedP :: "('a \<Rightarrow> 'b \<Rightarrow> bool) \<Rightarrow> bool" where
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
   894
  "single_valuedP r \<equiv> single_valued {(x, y). r x 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
   895
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
   896
(*FIXME inconsistencies: abbreviations vs. definitions, suffix `P` vs. suffix `p`*)
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
   897
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
   898
definition reflp :: "('a \<Rightarrow> 'a \<Rightarrow> bool) \<Rightarrow> bool" where
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
   899
  "reflp r \<longleftrightarrow> refl {(x, y). r x 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
   900
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
   901
definition symp :: "('a \<Rightarrow> 'a \<Rightarrow> bool) \<Rightarrow> bool" where
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
   902
  "symp r \<longleftrightarrow> sym {(x, y). r x 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
   903
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
   904
definition transp :: "('a \<Rightarrow> 'a \<Rightarrow> bool) \<Rightarrow> bool" where
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
   905
  "transp r \<longleftrightarrow> trans {(x, y). r x 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
   906
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
   907
lemma reflpI:
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
   908
  "(\<And>x. r x x) \<Longrightarrow> reflp r"
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
   909
  by (auto intro: refl_onI simp add: reflp_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
   910
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
   911
lemma reflpE:
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
   912
  assumes "reflp r"
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
   913
  obtains "r x x"
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
   914
  using assms by (auto dest: refl_onD simp add: reflp_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
   915
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
   916
lemma sympI:
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
   917
  "(\<And>x y. r x y \<Longrightarrow> r y x) \<Longrightarrow> symp r"
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
   918
  by (auto intro: symI simp add: symp_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
   919
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
   920
lemma sympE:
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
   921
  assumes "symp r" and "r x 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
   922
  obtains "r y x"
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
   923
  using assms by (auto dest: symD simp add: symp_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
   924
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
   925
lemma transpI:
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
   926
  "(\<And>x y z. r x y \<Longrightarrow> r y z \<Longrightarrow> r x z) \<Longrightarrow> transp r"
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
   927
  by (auto intro: transI simp add: transp_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
   928
  
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
   929
lemma transpE:
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
   930
  assumes "transp r" and "r x y" and "r y z"
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
   931
  obtains "r x z"
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
   932
  using assms by (auto dest: transD simp add: transp_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
   933
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
   934
no_notation
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
   935
  bot ("\<bottom>") and
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
   936
  top ("\<top>") and
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
   937
  inf (infixl "\<sqinter>" 70) and
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
   938
  sup (infixl "\<squnion>" 65) and
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
   939
  Inf ("\<Sqinter>_" [900] 900) and
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
   940
  Sup ("\<Squnion>_" [900] 900)
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
   941
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
   942
no_syntax (xsymbols)
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
   943
  "_INF1"     :: "pttrns \<Rightarrow> 'b \<Rightarrow> 'b"           ("(3\<Sqinter>_./ _)" [0, 10] 10)
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
   944
  "_INF"      :: "pttrn \<Rightarrow> 'a set \<Rightarrow> 'b \<Rightarrow> 'b"  ("(3\<Sqinter>_\<in>_./ _)" [0, 0, 10] 10)
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
   945
  "_SUP1"     :: "pttrns \<Rightarrow> 'b \<Rightarrow> 'b"           ("(3\<Squnion>_./ _)" [0, 10] 10)
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
   946
  "_SUP"      :: "pttrn \<Rightarrow> 'a set \<Rightarrow> 'b \<Rightarrow> 'b"  ("(3\<Squnion>_\<in>_./ _)" [0, 0, 10] 10)
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
   947
1128
64b30e3cc6d4 Trancl is now based on Relation which used to be in Integ.
nipkow
parents:
diff changeset
   948
end