QuotScript.thy
author Cezary Kaliszyk <kaliszyk@in.tum.de>
Fri, 04 Dec 2009 17:15:55 +0100
changeset 542 fe468f8723fc
parent 541 94deffed619d
child 543 d030c8e19465
permissions -rw-r--r--
More cleaning
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     1
theory QuotScript
530
5e92ce8f306d smaller theory footprint
Christian Urban <urbanc@in.tum.de>
parents: 528
diff changeset
     2
imports Plain ATP_Linkup
0
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     3
begin
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     4
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     5
definition 
528
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
     6
  "equivp E \<equiv> \<forall>x y. E x y = (E x = E y)" 
0
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     7
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
     8
definition
528
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
     9
  "reflp E \<equiv> \<forall>x. E x x"
0
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    10
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    11
definition 
528
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
    12
  "symp E \<equiv> \<forall>x y. E x y \<longrightarrow> E y x"
0
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    13
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    14
definition
528
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
    15
  "transp E \<equiv> \<forall>x y z. E x y \<and> E y z \<longrightarrow> E x z"
0
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    16
528
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
    17
lemma equivp_reflp_symp_transp:
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
    18
  shows "equivp E = (reflp E \<and> symp E \<and> transp E)"
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
    19
unfolding equivp_def reflp_def symp_def transp_def expand_fun_eq
0
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    20
by (blast)
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    21
528
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
    22
lemma equivp_refl:
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
    23
  shows "equivp R \<Longrightarrow> (\<And>x. R x x)"
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
    24
  by (simp add: equivp_reflp_symp_transp reflp_def)
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
    25
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
    26
lemma equivp_reflp:
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
    27
  shows "equivp E \<Longrightarrow> (\<And>x. E x x)"
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
    28
  by (simp add: equivp_reflp_symp_transp reflp_def)
217
9cc87d02190a First experiments with Lambda
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 188
diff changeset
    29
0
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    30
definition
541
94deffed619d more name cleaning and removing
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 540
diff changeset
    31
  "part_equivp E \<equiv> (\<exists>x. E x x) \<and> (\<forall>x y. E x y = (E x x \<and> E y y \<and> (E x = E y)))"
0
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    32
541
94deffed619d more name cleaning and removing
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 540
diff changeset
    33
lemma equivp_IMP_part_equivp:
528
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
    34
  assumes a: "equivp E"
541
94deffed619d more name cleaning and removing
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 540
diff changeset
    35
  shows "part_equivp E"
94deffed619d more name cleaning and removing
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 540
diff changeset
    36
using a unfolding equivp_def part_equivp_def
0
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    37
by auto
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    38
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    39
definition
528
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
    40
  "Quotient E Abs Rep \<equiv> (\<forall>a. Abs (Rep a) = a) \<and> 
0
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    41
                        (\<forall>a. E (Rep a) (Rep a)) \<and> 
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    42
                        (\<forall>r s. E r s = (E r r \<and> E s s \<and> (Abs r = Abs s)))"
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    43
540
c0b13fb70d6d More code cleaning and renaming: moved rsp and prs lemmas from Int to QuotList
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 539
diff changeset
    44
lemma Quotient_abs_rep:
528
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
    45
  assumes a: "Quotient E Abs Rep"
0
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    46
  shows "Abs (Rep a) = a" 
528
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
    47
using a unfolding Quotient_def
0
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    48
by simp
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    49
541
94deffed619d more name cleaning and removing
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 540
diff changeset
    50
lemma Quotient_rep_reflp:
528
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
    51
  assumes a: "Quotient E Abs Rep"
541
94deffed619d more name cleaning and removing
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 540
diff changeset
    52
  shows "E (Rep a) (Rep a)"
528
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
    53
using a unfolding Quotient_def
0
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    54
by blast
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    55
539
8287fb5b8d7a Cleaning & Renaming coming from QuotList
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 537
diff changeset
    56
lemma Quotient_rel:
528
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
    57
  assumes a: "Quotient E Abs Rep"
0
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    58
  shows " E r s = (E r r \<and> E s s \<and> (Abs r = Abs s))"
528
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
    59
using a unfolding Quotient_def
0
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    60
by blast
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    61
541
94deffed619d more name cleaning and removing
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 540
diff changeset
    62
lemma Quotient_rel_rep:
528
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
    63
  assumes a: "Quotient R Abs Rep"
541
94deffed619d more name cleaning and removing
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 540
diff changeset
    64
  shows "R (Rep a) (Rep b) \<equiv> (a = b)"
94deffed619d more name cleaning and removing
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 540
diff changeset
    65
apply (rule eq_reflection)
528
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
    66
using a unfolding Quotient_def
0
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    67
by metis
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    68
540
c0b13fb70d6d More code cleaning and renaming: moved rsp and prs lemmas from Int to QuotList
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 539
diff changeset
    69
lemma Quotient_rep_abs:
528
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
    70
  assumes a: "Quotient R Abs Rep"
459
020e27417b59 More code cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 458
diff changeset
    71
  shows "R r r \<Longrightarrow> R (Rep (Abs r)) r"
528
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
    72
using a unfolding Quotient_def
0
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    73
by blast
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    74
542
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
    75
lemma identity_equivp:
528
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
    76
  shows "equivp (op =)"
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
    77
unfolding equivp_def
0
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    78
by auto
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    79
542
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
    80
lemma identity_quotient:
528
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
    81
  shows "Quotient (op =) id id"
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
    82
unfolding Quotient_def id_def
0
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    83
by blast
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    84
528
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
    85
lemma Quotient_symp:
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
    86
  assumes a: "Quotient E Abs Rep"
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
    87
  shows "symp E"
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
    88
using a unfolding Quotient_def symp_def
0
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    89
by metis
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    90
528
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
    91
lemma Quotient_transp:
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
    92
  assumes a: "Quotient E Abs Rep"
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
    93
  shows "transp E"
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
    94
using a unfolding Quotient_def transp_def
0
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    95
by metis
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    96
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
    97
fun
93
ec29be471518 Manually regularized list_induct2
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 0
diff changeset
    98
  prod_rel
ec29be471518 Manually regularized list_induct2
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 0
diff changeset
    99
where
ec29be471518 Manually regularized list_induct2
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 0
diff changeset
   100
  "prod_rel r1 r2 = (\<lambda>(a,b) (c,d). r1 a c \<and> r2 b d)"
ec29be471518 Manually regularized list_induct2
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 0
diff changeset
   101
ec29be471518 Manually regularized list_induct2
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 0
diff changeset
   102
fun
112
0d6d37d0589d Progressing with the proof
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 96
diff changeset
   103
  fun_map
0
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   104
where
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   105
  "fun_map f g h x = g (h (f x))"
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   106
112
0d6d37d0589d Progressing with the proof
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 96
diff changeset
   107
0
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   108
abbreviation
112
0d6d37d0589d Progressing with the proof
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 96
diff changeset
   109
  fun_map_syn (infixr "--->" 55)
0
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   110
where
112
0d6d37d0589d Progressing with the proof
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 96
diff changeset
   111
  "f ---> g \<equiv> fun_map f g"
0
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   112
537
57073b0b8fac Even more name changes and cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 536
diff changeset
   113
lemma fun_map_id:
126
9cb8f9a59402 Partial simplification of the proof
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 113
diff changeset
   114
  shows "(id ---> id) = id"
9cb8f9a59402 Partial simplification of the proof
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 113
diff changeset
   115
by (simp add: expand_fun_eq id_def)
0
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   116
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   117
fun
536
44fa9df44e6f More code cleaning and name changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 530
diff changeset
   118
  fun_rel
0
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   119
where
536
44fa9df44e6f More code cleaning and name changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 530
diff changeset
   120
  "fun_rel E1 E2 f g = (\<forall>x y. E1 x y \<longrightarrow> E2 (f x) (g y))"
0
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   121
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   122
abbreviation
536
44fa9df44e6f More code cleaning and name changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 530
diff changeset
   123
  fun_rel_syn (infixr "===>" 55)
0
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   124
where
536
44fa9df44e6f More code cleaning and name changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 530
diff changeset
   125
  "E1 ===> E2 \<equiv> fun_rel E1 E2"
0
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   126
536
44fa9df44e6f More code cleaning and name changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 530
diff changeset
   127
lemma fun_rel_eq:
511
28bb34eeedc5 Changing = to \<equiv> in case if we want to use simp.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 459
diff changeset
   128
  "(op =) ===> (op =) \<equiv> (op =)"
515
b00a9b58264d Fixes after big merge.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 511
diff changeset
   129
by (rule eq_reflection) (simp add: expand_fun_eq)
0
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   130
537
57073b0b8fac Even more name changes and cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 536
diff changeset
   131
lemma fun_quotient:
528
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
   132
  assumes q1: "Quotient R1 abs1 rep1"
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
   133
  and     q2: "Quotient R2 abs2 rep2"
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
   134
  shows "Quotient (R1 ===> R2) (rep1 ---> abs2) (abs1 ---> rep2)"
0
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   135
proof -
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   136
  have "\<forall>a. (rep1 ---> abs2) ((abs1 ---> rep2) a) = a"
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   137
    apply(simp add: expand_fun_eq)
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   138
    using q1 q2
528
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
   139
    apply(simp add: Quotient_def)
0
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   140
    done
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   141
  moreover
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   142
  have "\<forall>a. (R1 ===> R2) ((abs1 ---> rep2) a) ((abs1 ---> rep2) a)"
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   143
    apply(auto)
528
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
   144
    using q1 q2 unfolding Quotient_def
0
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   145
    apply(metis)
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   146
    done
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   147
  moreover
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   148
  have "\<forall>r s. (R1 ===> R2) r s = ((R1 ===> R2) r r \<and> (R1 ===> R2) s s \<and> 
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   149
        (rep1 ---> abs2) r  = (rep1 ---> abs2) s)"
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   150
    apply(auto simp add: expand_fun_eq)
528
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
   151
    using q1 q2 unfolding Quotient_def
0
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   152
    apply(metis)
528
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
   153
    using q1 q2 unfolding Quotient_def
0
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   154
    apply(metis)
528
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
   155
    using q1 q2 unfolding Quotient_def
0
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   156
    apply(metis)
528
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
   157
    using q1 q2 unfolding Quotient_def
0
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   158
    apply(metis)
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   159
    done
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   160
  ultimately
528
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
   161
  show "Quotient (R1 ===> R2) (rep1 ---> abs2) (abs1 ---> rep2)"
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
   162
    unfolding Quotient_def by blast
0
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   163
qed
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   164
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   165
definition
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   166
  Respects
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   167
where
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   168
  "Respects R x \<equiv> (R x x)"
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   169
542
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   170
lemma in_respects:
0
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   171
  shows "(x \<in> Respects R) = R x x"
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   172
unfolding mem_def Respects_def by simp
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   173
458
44a70e69ef92 Code cleaning.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 432
diff changeset
   174
(* TODO: it is the same as APPLY_RSP *)
0
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   175
(* q1 and q2 not used; see next lemma *)
536
44fa9df44e6f More code cleaning and name changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 530
diff changeset
   176
lemma fun_rel_MP:
528
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
   177
  assumes q1: "Quotient R1 Abs1 Rep1"
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
   178
  and     q2: "Quotient R2 Abs2 Rep2"
0
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   179
  shows "(R1 ===> R2) f g \<Longrightarrow> R1 x y \<Longrightarrow> R2 (f x) (g y)"
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   180
by simp
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   181
536
44fa9df44e6f More code cleaning and name changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 530
diff changeset
   182
lemma fun_rel_IMP:
0
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   183
  shows "(R1 ===> R2) f g \<Longrightarrow> R1 x y \<Longrightarrow> R2 (f x) (g y)"
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   184
by simp
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   185
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   186
527
9b1ad366827f code cleaning and renaming
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 519
diff changeset
   187
lemma equals_rsp:
528
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
   188
  assumes q: "Quotient R Abs Rep"
519
ebfd747b47ab Change equiv_trans2 to EQUALS_RSP, since we can prove it for any quotient type, not only for eqv relations.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 516
diff changeset
   189
  and     a: "R xa xb" "R ya yb"
ebfd747b47ab Change equiv_trans2 to EQUALS_RSP, since we can prove it for any quotient type, not only for eqv relations.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 516
diff changeset
   190
  shows "R xa ya = R xb yb"
528
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
   191
using Quotient_symp[OF q] Quotient_transp[OF q] unfolding symp_def transp_def
0
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   192
using a by blast
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   193
527
9b1ad366827f code cleaning and renaming
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 519
diff changeset
   194
lemma lambda_prs:
528
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
   195
  assumes q1: "Quotient R1 Abs1 Rep1"
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
   196
  and     q2: "Quotient R2 Abs2 Rep2"
253
e169a99c6ada Automatic computation of application preservation and manually finished "alpha.induct". Slow...
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 252
diff changeset
   197
  shows "(Rep1 ---> Abs2) (\<lambda>x. Rep2 (f (Abs1 x))) = (\<lambda>x. f x)"
0
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   198
unfolding expand_fun_eq
540
c0b13fb70d6d More code cleaning and renaming: moved rsp and prs lemmas from Int to QuotList
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 539
diff changeset
   199
using Quotient_abs_rep[OF q1] Quotient_abs_rep[OF q2]
0
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   200
by simp
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   201
527
9b1ad366827f code cleaning and renaming
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 519
diff changeset
   202
lemma lambda_prs1:
528
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
   203
  assumes q1: "Quotient R1 Abs1 Rep1"
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
   204
  and     q2: "Quotient R2 Abs2 Rep2"
527
9b1ad366827f code cleaning and renaming
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 519
diff changeset
   205
  shows "(Rep1 ---> Abs2) (\<lambda>x. (Abs1 ---> Rep2) f x) = (\<lambda>x. f x)"
0
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   206
unfolding expand_fun_eq
540
c0b13fb70d6d More code cleaning and renaming: moved rsp and prs lemmas from Int to QuotList
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 539
diff changeset
   207
using Quotient_abs_rep[OF q1] Quotient_abs_rep[OF q2]
459
020e27417b59 More code cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 458
diff changeset
   208
by simp
253
e169a99c6ada Automatic computation of application preservation and manually finished "alpha.induct". Slow...
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 252
diff changeset
   209
542
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   210
lemma rep_abs_rsp:
528
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
   211
  assumes q: "Quotient R Abs Rep"
459
020e27417b59 More code cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 458
diff changeset
   212
  and     a: "R x1 x2"
020e27417b59 More code cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 458
diff changeset
   213
  shows "R x1 (Rep (Abs x2))"
541
94deffed619d more name cleaning and removing
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 540
diff changeset
   214
using q a by (metis Quotient_rel[OF q] Quotient_abs_rep[OF q] Quotient_rep_reflp[OF q])
0
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   215
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   216
(* ----------------------------------------------------- *)
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   217
(* Quantifiers: FORALL, EXISTS, EXISTS_UNIQUE,           *)
527
9b1ad366827f code cleaning and renaming
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 519
diff changeset
   218
(*              Ball, Bex, RES_EXISTS_EQUIV              *)
0
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   219
(* ----------------------------------------------------- *)
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   220
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   221
(* bool theory: COND, LET *)
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   222
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   223
lemma IF_PRS:
528
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
   224
  assumes q: "Quotient R Abs Rep"
0
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   225
  shows "If a b c = Abs (If a (Rep b) (Rep c))"
540
c0b13fb70d6d More code cleaning and renaming: moved rsp and prs lemmas from Int to QuotList
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 539
diff changeset
   226
using Quotient_abs_rep[OF q] by auto
0
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   227
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   228
(* ask peter: no use of q *)
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   229
lemma IF_RSP:
528
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
   230
  assumes q: "Quotient R Abs Rep"
0
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   231
  and     a: "a1 = a2" "R b1 b2" "R c1 c2"
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   232
  shows "R (If a1 b1 c1) (If a2 b2 c2)"
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   233
using a by auto
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   234
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   235
lemma LET_PRS:
528
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
   236
  assumes q1: "Quotient R1 Abs1 Rep1"
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
   237
  and     q2: "Quotient R2 Abs2 Rep2"
0
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   238
  shows "Let x f = Abs2 (Let (Rep1 x) ((Abs1 ---> Rep2) f))"
540
c0b13fb70d6d More code cleaning and renaming: moved rsp and prs lemmas from Int to QuotList
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 539
diff changeset
   239
using Quotient_abs_rep[OF q1] Quotient_abs_rep[OF q2] by auto
0
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   240
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   241
lemma LET_RSP:
528
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
   242
  assumes q1: "Quotient R1 Abs1 Rep1"
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
   243
  and     q2: "Quotient R2 Abs2 Rep2"
0
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   244
  and     a1: "(R1 ===> R2) f g"
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   245
  and     a2: "R1 x y"
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   246
  shows "R2 (Let x f) (Let y g)"
536
44fa9df44e6f More code cleaning and name changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 530
diff changeset
   247
using fun_rel_MP[OF q1 q2 a1] a2
0
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   248
by auto
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   249
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   250
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   251
(* ask peter what are literal_case *)
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   252
(* literal_case_PRS *)
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   253
(* literal_case_RSP *)
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   254
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   255
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   256
(* FUNCTION APPLICATION *)
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   257
527
9b1ad366827f code cleaning and renaming
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 519
diff changeset
   258
(* In the following theorem R1 can be instantiated with anything,
516
bed81795848c Using APPLY_RSP1; again a little bit faster.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 515
diff changeset
   259
   but we know some of the types of the Rep and Abs functions;
528
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
   260
   so by solving Quotient assumptions we can get a unique R2 that
527
9b1ad366827f code cleaning and renaming
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 519
diff changeset
   261
   will be provable; which is why we need to use APPLY_RSP *)
9b1ad366827f code cleaning and renaming
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 519
diff changeset
   262
lemma apply_rsp:
528
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
   263
  assumes q: "Quotient R1 Abs1 Rep1"
516
bed81795848c Using APPLY_RSP1; again a little bit faster.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 515
diff changeset
   264
  and     a: "(R1 ===> R2) f g" "R1 x y"
bed81795848c Using APPLY_RSP1; again a little bit faster.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 515
diff changeset
   265
  shows "R2 ((f::'a\<Rightarrow>'c) x) ((g::'a\<Rightarrow>'c) y)"
536
44fa9df44e6f More code cleaning and name changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 530
diff changeset
   266
using a by (rule fun_rel_IMP)
516
bed81795848c Using APPLY_RSP1; again a little bit faster.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 515
diff changeset
   267
527
9b1ad366827f code cleaning and renaming
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 519
diff changeset
   268
lemma apply_rsp':
317
d3c7f6d19c7f Still don't know how to do the proof automatically.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 253
diff changeset
   269
  assumes a: "(R1 ===> R2) f g" "R1 x y"
d3c7f6d19c7f Still don't know how to do the proof automatically.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 253
diff changeset
   270
  shows "R2 (f x) (g y)"
536
44fa9df44e6f More code cleaning and name changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 530
diff changeset
   271
using a by (rule fun_rel_IMP)
317
d3c7f6d19c7f Still don't know how to do the proof automatically.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 253
diff changeset
   272
0
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   273
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   274
(* combinators: I, K, o, C, W *)
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   275
459
020e27417b59 More code cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 458
diff changeset
   276
(* We use id_simps which includes id_apply; so these 2 theorems can be removed *)
0
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   277
lemma I_PRS:
528
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
   278
  assumes q: "Quotient R Abs Rep"
126
9cb8f9a59402 Partial simplification of the proof
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 113
diff changeset
   279
  shows "id e = Abs (id (Rep e))"
540
c0b13fb70d6d More code cleaning and renaming: moved rsp and prs lemmas from Int to QuotList
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 539
diff changeset
   280
using Quotient_abs_rep[OF q] by auto
0
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   281
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   282
lemma I_RSP:
528
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
   283
  assumes q: "Quotient R Abs Rep"
0
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   284
  and     a: "R e1 e2"
126
9cb8f9a59402 Partial simplification of the proof
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 113
diff changeset
   285
  shows "R (id e1) (id e2)"
0
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   286
using a by auto
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   287
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   288
lemma o_PRS:
528
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
   289
  assumes q1: "Quotient R1 Abs1 Rep1"
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
   290
  and     q2: "Quotient R2 Abs2 Rep2"
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
   291
  and     q3: "Quotient R3 Abs3 Rep3"
0
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   292
  shows "f o g = (Rep1 ---> Abs3) (((Abs2 ---> Rep3) f) o ((Abs1 ---> Rep2) g))"
540
c0b13fb70d6d More code cleaning and renaming: moved rsp and prs lemmas from Int to QuotList
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 539
diff changeset
   293
using Quotient_abs_rep[OF q1] Quotient_abs_rep[OF q2] Quotient_abs_rep[OF q3]
0
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   294
unfolding o_def expand_fun_eq
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   295
by simp
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   296
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   297
lemma o_RSP:
528
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
   298
  assumes q1: "Quotient R1 Abs1 Rep1"
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
   299
  and     q2: "Quotient R2 Abs2 Rep2"
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
   300
  and     q3: "Quotient R3 Abs3 Rep3"
0
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   301
  and     a1: "(R2 ===> R3) f1 f2"
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   302
  and     a2: "(R1 ===> R2) g1 g2"
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   303
  shows "(R1 ===> R3) (f1 o g1) (f2 o g2)"
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   304
using a1 a2 unfolding o_def expand_fun_eq
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   305
by (auto)
ebe0ea8fe247 initial commit
Christian Urban <urbanc@in.tum.de>
parents:
diff changeset
   306
96
4da714704611 A number of lemmas for REGULARIZE_TAC and regularizing card1.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 95
diff changeset
   307
4da714704611 A number of lemmas for REGULARIZE_TAC and regularizing card1.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 95
diff changeset
   308
458
44a70e69ef92 Code cleaning.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 432
diff changeset
   309
44a70e69ef92 Code cleaning.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 432
diff changeset
   310
44a70e69ef92 Code cleaning.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 432
diff changeset
   311
lemma COND_PRS:
528
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
   312
  assumes a: "Quotient R absf repf"
458
44a70e69ef92 Code cleaning.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 432
diff changeset
   313
  shows "(if a then b else c) = absf (if a then repf b else repf c)"
528
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
   314
  using a unfolding Quotient_def by auto
458
44a70e69ef92 Code cleaning.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 432
diff changeset
   315
44a70e69ef92 Code cleaning.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 432
diff changeset
   316
44a70e69ef92 Code cleaning.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 432
diff changeset
   317
44a70e69ef92 Code cleaning.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 432
diff changeset
   318
44a70e69ef92 Code cleaning.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 432
diff changeset
   319
427
5a3965aa4d80 Cleaned all lemmas about regularisation of Ball and Bex and moved in one place. Second Ball simprox.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 416
diff changeset
   320
(* Set of lemmas for regularisation of ball and bex *)
5a3965aa4d80 Cleaned all lemmas about regularisation of Ball and Bex and moved in one place. Second Ball simprox.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 416
diff changeset
   321
lemma ball_reg_eqv:
5a3965aa4d80 Cleaned all lemmas about regularisation of Ball and Bex and moved in one place. Second Ball simprox.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 416
diff changeset
   322
  fixes P :: "'a \<Rightarrow> bool"
528
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
   323
  assumes a: "equivp R"
427
5a3965aa4d80 Cleaned all lemmas about regularisation of Ball and Bex and moved in one place. Second Ball simprox.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 416
diff changeset
   324
  shows "Ball (Respects R) P = (All P)"
542
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   325
  by (metis equivp_def in_respects a)
427
5a3965aa4d80 Cleaned all lemmas about regularisation of Ball and Bex and moved in one place. Second Ball simprox.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 416
diff changeset
   326
5a3965aa4d80 Cleaned all lemmas about regularisation of Ball and Bex and moved in one place. Second Ball simprox.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 416
diff changeset
   327
lemma bex_reg_eqv:
93
ec29be471518 Manually regularized list_induct2
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 0
diff changeset
   328
  fixes P :: "'a \<Rightarrow> bool"
528
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
   329
  assumes a: "equivp R"
427
5a3965aa4d80 Cleaned all lemmas about regularisation of Ball and Bex and moved in one place. Second Ball simprox.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 416
diff changeset
   330
  shows "Bex (Respects R) P = (Ex P)"
542
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   331
  by (metis equivp_def in_respects a)
427
5a3965aa4d80 Cleaned all lemmas about regularisation of Ball and Bex and moved in one place. Second Ball simprox.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 416
diff changeset
   332
5a3965aa4d80 Cleaned all lemmas about regularisation of Ball and Bex and moved in one place. Second Ball simprox.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 416
diff changeset
   333
lemma ball_reg_right:
5a3965aa4d80 Cleaned all lemmas about regularisation of Ball and Bex and moved in one place. Second Ball simprox.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 416
diff changeset
   334
  assumes a: "\<And>x. R x \<Longrightarrow> P x \<longrightarrow> Q x"
5a3965aa4d80 Cleaned all lemmas about regularisation of Ball and Bex and moved in one place. Second Ball simprox.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 416
diff changeset
   335
  shows "All P \<longrightarrow> Ball R Q"
5a3965aa4d80 Cleaned all lemmas about regularisation of Ball and Bex and moved in one place. Second Ball simprox.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 416
diff changeset
   336
  by (metis COMBC_def Collect_def Collect_mem_eq a)
5a3965aa4d80 Cleaned all lemmas about regularisation of Ball and Bex and moved in one place. Second Ball simprox.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 416
diff changeset
   337
5a3965aa4d80 Cleaned all lemmas about regularisation of Ball and Bex and moved in one place. Second Ball simprox.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 416
diff changeset
   338
lemma bex_reg_left:
5a3965aa4d80 Cleaned all lemmas about regularisation of Ball and Bex and moved in one place. Second Ball simprox.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 416
diff changeset
   339
  assumes a: "\<And>x. R x \<Longrightarrow> Q x \<longrightarrow> P x"
5a3965aa4d80 Cleaned all lemmas about regularisation of Ball and Bex and moved in one place. Second Ball simprox.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 416
diff changeset
   340
  shows "Bex R Q \<longrightarrow> Ex P"
5a3965aa4d80 Cleaned all lemmas about regularisation of Ball and Bex and moved in one place. Second Ball simprox.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 416
diff changeset
   341
  by (metis COMBC_def Collect_def Collect_mem_eq a)
5a3965aa4d80 Cleaned all lemmas about regularisation of Ball and Bex and moved in one place. Second Ball simprox.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 416
diff changeset
   342
5a3965aa4d80 Cleaned all lemmas about regularisation of Ball and Bex and moved in one place. Second Ball simprox.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 416
diff changeset
   343
lemma ball_reg_left:
528
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
   344
  assumes a: "equivp R"
427
5a3965aa4d80 Cleaned all lemmas about regularisation of Ball and Bex and moved in one place. Second Ball simprox.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 416
diff changeset
   345
  shows "(\<And>x. (Q x \<longrightarrow> P x)) \<Longrightarrow> Ball (Respects R) Q \<longrightarrow> All P"
542
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   346
  by (metis equivp_reflp in_respects a)
93
ec29be471518 Manually regularized list_induct2
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 0
diff changeset
   347
427
5a3965aa4d80 Cleaned all lemmas about regularisation of Ball and Bex and moved in one place. Second Ball simprox.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 416
diff changeset
   348
lemma bex_reg_right:
528
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
   349
  assumes a: "equivp R"
427
5a3965aa4d80 Cleaned all lemmas about regularisation of Ball and Bex and moved in one place. Second Ball simprox.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 416
diff changeset
   350
  shows "(\<And>x. (Q x \<longrightarrow> P x)) \<Longrightarrow> Ex Q \<longrightarrow> Bex (Respects R) P"
542
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   351
  by (metis equivp_reflp in_respects a)
93
ec29be471518 Manually regularized list_induct2
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 0
diff changeset
   352
427
5a3965aa4d80 Cleaned all lemmas about regularisation of Ball and Bex and moved in one place. Second Ball simprox.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 416
diff changeset
   353
lemma ball_reg_eqv_range:
5a3965aa4d80 Cleaned all lemmas about regularisation of Ball and Bex and moved in one place. Second Ball simprox.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 416
diff changeset
   354
  fixes P::"'a \<Rightarrow> bool"
5a3965aa4d80 Cleaned all lemmas about regularisation of Ball and Bex and moved in one place. Second Ball simprox.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 416
diff changeset
   355
  and x::"'a"
528
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
   356
  assumes a: "equivp R2"
427
5a3965aa4d80 Cleaned all lemmas about regularisation of Ball and Bex and moved in one place. Second Ball simprox.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 416
diff changeset
   357
  shows   "(Ball (Respects (R1 ===> R2)) (\<lambda>f. P (f x)) = All (\<lambda>f. P (f x)))"
5a3965aa4d80 Cleaned all lemmas about regularisation of Ball and Bex and moved in one place. Second Ball simprox.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 416
diff changeset
   358
  apply(rule iffI)
5a3965aa4d80 Cleaned all lemmas about regularisation of Ball and Bex and moved in one place. Second Ball simprox.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 416
diff changeset
   359
  apply(rule allI)
5a3965aa4d80 Cleaned all lemmas about regularisation of Ball and Bex and moved in one place. Second Ball simprox.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 416
diff changeset
   360
  apply(drule_tac x="\<lambda>y. f x" in bspec)
542
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   361
  apply(simp add: Respects_def in_respects)
427
5a3965aa4d80 Cleaned all lemmas about regularisation of Ball and Bex and moved in one place. Second Ball simprox.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 416
diff changeset
   362
  apply(rule impI)
528
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
   363
  using a equivp_reflp_symp_transp[of "R2"]
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
   364
  apply(simp add: reflp_def)
427
5a3965aa4d80 Cleaned all lemmas about regularisation of Ball and Bex and moved in one place. Second Ball simprox.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 416
diff changeset
   365
  apply(simp)
5a3965aa4d80 Cleaned all lemmas about regularisation of Ball and Bex and moved in one place. Second Ball simprox.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 416
diff changeset
   366
  apply(simp)
5a3965aa4d80 Cleaned all lemmas about regularisation of Ball and Bex and moved in one place. Second Ball simprox.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 416
diff changeset
   367
  done
5a3965aa4d80 Cleaned all lemmas about regularisation of Ball and Bex and moved in one place. Second Ball simprox.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 416
diff changeset
   368
5a3965aa4d80 Cleaned all lemmas about regularisation of Ball and Bex and moved in one place. Second Ball simprox.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 416
diff changeset
   369
lemma bex_reg_eqv_range:
5a3965aa4d80 Cleaned all lemmas about regularisation of Ball and Bex and moved in one place. Second Ball simprox.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 416
diff changeset
   370
  fixes P::"'a \<Rightarrow> bool"
5a3965aa4d80 Cleaned all lemmas about regularisation of Ball and Bex and moved in one place. Second Ball simprox.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 416
diff changeset
   371
  and x::"'a"
528
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
   372
  assumes a: "equivp R2"
427
5a3965aa4d80 Cleaned all lemmas about regularisation of Ball and Bex and moved in one place. Second Ball simprox.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 416
diff changeset
   373
  shows   "(Bex (Respects (R1 ===> R2)) (\<lambda>f. P (f x)) = Ex (\<lambda>f. P (f x)))"
5a3965aa4d80 Cleaned all lemmas about regularisation of Ball and Bex and moved in one place. Second Ball simprox.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 416
diff changeset
   374
  apply(auto)
5a3965aa4d80 Cleaned all lemmas about regularisation of Ball and Bex and moved in one place. Second Ball simprox.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 416
diff changeset
   375
  apply(rule_tac x="\<lambda>y. f x" in bexI)
5a3965aa4d80 Cleaned all lemmas about regularisation of Ball and Bex and moved in one place. Second Ball simprox.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 416
diff changeset
   376
  apply(simp)
542
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   377
  apply(simp add: Respects_def in_respects)
427
5a3965aa4d80 Cleaned all lemmas about regularisation of Ball and Bex and moved in one place. Second Ball simprox.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 416
diff changeset
   378
  apply(rule impI)
528
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
   379
  using a equivp_reflp_symp_transp[of "R2"]
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
   380
  apply(simp add: reflp_def)
427
5a3965aa4d80 Cleaned all lemmas about regularisation of Ball and Bex and moved in one place. Second Ball simprox.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 416
diff changeset
   381
  done
5a3965aa4d80 Cleaned all lemmas about regularisation of Ball and Bex and moved in one place. Second Ball simprox.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 416
diff changeset
   382
5a3965aa4d80 Cleaned all lemmas about regularisation of Ball and Bex and moved in one place. Second Ball simprox.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 416
diff changeset
   383
lemma all_reg:
96
4da714704611 A number of lemmas for REGULARIZE_TAC and regularizing card1.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 95
diff changeset
   384
  assumes a: "!x :: 'a. (P x --> Q x)"
4da714704611 A number of lemmas for REGULARIZE_TAC and regularizing card1.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 95
diff changeset
   385
  and     b: "All P"
4da714704611 A number of lemmas for REGULARIZE_TAC and regularizing card1.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 95
diff changeset
   386
  shows "All Q"
4da714704611 A number of lemmas for REGULARIZE_TAC and regularizing card1.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 95
diff changeset
   387
  using a b by (metis)
4da714704611 A number of lemmas for REGULARIZE_TAC and regularizing card1.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 95
diff changeset
   388
427
5a3965aa4d80 Cleaned all lemmas about regularisation of Ball and Bex and moved in one place. Second Ball simprox.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 416
diff changeset
   389
lemma ex_reg:
96
4da714704611 A number of lemmas for REGULARIZE_TAC and regularizing card1.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 95
diff changeset
   390
  assumes a: "!x :: 'a. (P x --> Q x)"
4da714704611 A number of lemmas for REGULARIZE_TAC and regularizing card1.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 95
diff changeset
   391
  and     b: "Ex P"
4da714704611 A number of lemmas for REGULARIZE_TAC and regularizing card1.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 95
diff changeset
   392
  shows "Ex Q"
4da714704611 A number of lemmas for REGULARIZE_TAC and regularizing card1.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 95
diff changeset
   393
  using a b by (metis)
4da714704611 A number of lemmas for REGULARIZE_TAC and regularizing card1.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 95
diff changeset
   394
427
5a3965aa4d80 Cleaned all lemmas about regularisation of Ball and Bex and moved in one place. Second Ball simprox.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 416
diff changeset
   395
lemma ball_reg:
96
4da714704611 A number of lemmas for REGULARIZE_TAC and regularizing card1.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 95
diff changeset
   396
  assumes a: "!x :: 'a. (R x --> P x --> Q x)"
4da714704611 A number of lemmas for REGULARIZE_TAC and regularizing card1.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 95
diff changeset
   397
  and     b: "Ball R P"
4da714704611 A number of lemmas for REGULARIZE_TAC and regularizing card1.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 95
diff changeset
   398
  shows "Ball R Q"
4da714704611 A number of lemmas for REGULARIZE_TAC and regularizing card1.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 95
diff changeset
   399
  using a b by (metis COMBC_def Collect_def Collect_mem_eq)
4da714704611 A number of lemmas for REGULARIZE_TAC and regularizing card1.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 95
diff changeset
   400
427
5a3965aa4d80 Cleaned all lemmas about regularisation of Ball and Bex and moved in one place. Second Ball simprox.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 416
diff changeset
   401
lemma bex_reg:
96
4da714704611 A number of lemmas for REGULARIZE_TAC and regularizing card1.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 95
diff changeset
   402
  assumes a: "!x :: 'a. (R x --> P x --> Q x)"
4da714704611 A number of lemmas for REGULARIZE_TAC and regularizing card1.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 95
diff changeset
   403
  and     b: "Bex R P"
4da714704611 A number of lemmas for REGULARIZE_TAC and regularizing card1.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 95
diff changeset
   404
  shows "Bex R Q"
4da714704611 A number of lemmas for REGULARIZE_TAC and regularizing card1.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 95
diff changeset
   405
  using a b by (metis COMBC_def Collect_def Collect_mem_eq)
4da714704611 A number of lemmas for REGULARIZE_TAC and regularizing card1.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 95
diff changeset
   406
432
9c33c0809733 Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 427
diff changeset
   407
lemma ball_all_comm:
9c33c0809733 Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 427
diff changeset
   408
  "(\<And>y. (\<forall>x\<in>P. A x y) \<longrightarrow> (\<forall>x. B x y)) \<Longrightarrow> ((\<forall>x\<in>P. \<forall>y. A x y) \<longrightarrow> (\<forall>x. \<forall>y. B x y))"
9c33c0809733 Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 427
diff changeset
   409
by auto
9c33c0809733 Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 427
diff changeset
   410
9c33c0809733 Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 427
diff changeset
   411
lemma bex_ex_comm:
9c33c0809733 Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 427
diff changeset
   412
  "((\<exists>y. \<exists>x. A x y) \<longrightarrow> (\<exists>y. \<exists>x\<in>P. B x y)) \<Longrightarrow> ((\<exists>x. \<exists>y. A x y) \<longrightarrow> (\<exists>x\<in>P. \<exists>y. B x y))"
9c33c0809733 Finished and tested the new regularize
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 427
diff changeset
   413
by auto
96
4da714704611 A number of lemmas for REGULARIZE_TAC and regularizing card1.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 95
diff changeset
   414
458
44a70e69ef92 Code cleaning.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 432
diff changeset
   415
(* 2 lemmas needed for proving repabs_inj *)
44a70e69ef92 Code cleaning.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 432
diff changeset
   416
lemma ball_rsp:
44a70e69ef92 Code cleaning.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 432
diff changeset
   417
  assumes a: "(R ===> (op =)) f g"
44a70e69ef92 Code cleaning.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 432
diff changeset
   418
  shows "Ball (Respects R) f = Ball (Respects R) g"
542
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   419
  using a by (simp add: Ball_def in_respects)
153
0288dd5b7ed4 The problems with 'abs' term.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 126
diff changeset
   420
458
44a70e69ef92 Code cleaning.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 432
diff changeset
   421
lemma bex_rsp:
44a70e69ef92 Code cleaning.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 432
diff changeset
   422
  assumes a: "(R ===> (op =)) f g"
44a70e69ef92 Code cleaning.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 432
diff changeset
   423
  shows "(Bex (Respects R) f = Bex (Respects R) g)"
542
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   424
  using a by (simp add: Bex_def in_respects)
171
13aab4c59096 More infrastructure for automatic lifting of theorems lifted before
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 166
diff changeset
   425
458
44a70e69ef92 Code cleaning.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 432
diff changeset
   426
(* 2 lemmas needed for cleaning of quantifiers *)
44a70e69ef92 Code cleaning.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 432
diff changeset
   427
lemma all_prs:
528
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
   428
  assumes a: "Quotient R absf repf"
458
44a70e69ef92 Code cleaning.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 432
diff changeset
   429
  shows "Ball (Respects R) ((absf ---> id) f) = All f"
528
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
   430
  using a unfolding Quotient_def
542
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   431
  by (metis in_respects fun_map.simps id_apply)
162
20f0b148cfe2 eqsubst_tac
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 155
diff changeset
   432
458
44a70e69ef92 Code cleaning.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 432
diff changeset
   433
lemma ex_prs:
528
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
   434
  assumes a: "Quotient R absf repf"
458
44a70e69ef92 Code cleaning.
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 432
diff changeset
   435
  shows "Bex (Respects R) ((absf ---> id) f) = Ex f"
528
f51e2b3e3149 Naming changes
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 527
diff changeset
   436
  using a unfolding Quotient_def
542
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   437
  by (metis COMBC_def Collect_def Collect_mem_eq in_respects fun_map.simps id_apply)
171
13aab4c59096 More infrastructure for automatic lifting of theorems lifted before
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 166
diff changeset
   438
541
94deffed619d more name cleaning and removing
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 540
diff changeset
   439
94deffed619d more name cleaning and removing
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 540
diff changeset
   440
(* UNUSED *)
94deffed619d more name cleaning and removing
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 540
diff changeset
   441
lemma Quotient_rel_abs:
94deffed619d more name cleaning and removing
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 540
diff changeset
   442
  assumes a: "Quotient E Abs Rep"
94deffed619d more name cleaning and removing
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 540
diff changeset
   443
  shows "E r s \<Longrightarrow> Abs r = Abs s"
94deffed619d more name cleaning and removing
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 540
diff changeset
   444
using a unfolding Quotient_def
94deffed619d more name cleaning and removing
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 540
diff changeset
   445
by blast
94deffed619d more name cleaning and removing
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 540
diff changeset
   446
94deffed619d more name cleaning and removing
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 540
diff changeset
   447
lemma Quotient_rel_abs_eq:
94deffed619d more name cleaning and removing
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 540
diff changeset
   448
  assumes a: "Quotient E Abs Rep"
94deffed619d more name cleaning and removing
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 540
diff changeset
   449
  shows "E r r \<Longrightarrow> E s s \<Longrightarrow> E r s = (Abs r = Abs s)"
94deffed619d more name cleaning and removing
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 540
diff changeset
   450
using a unfolding Quotient_def
94deffed619d more name cleaning and removing
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 540
diff changeset
   451
by blast
94deffed619d more name cleaning and removing
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 540
diff changeset
   452
542
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   453
lemma in_fun:
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   454
  shows "x \<in> ((f ---> g) s) = g (f x \<in> s)"
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   455
by (simp add: mem_def)
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   456
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   457
lemma RESPECTS_THM:
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   458
  shows "Respects (R1 ===> R2) f = (\<forall>x y. R1 x y \<longrightarrow> R2 (f x) (f y))"
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   459
unfolding Respects_def
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   460
by (simp add: expand_fun_eq) 
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   461
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   462
lemma RESPECTS_REP_ABS:
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   463
  assumes a: "Quotient R1 Abs1 Rep1"
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   464
  and     b: "Respects (R1 ===> R2) f"
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   465
  and     c: "R1 x x"
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   466
  shows "R2 (f (Rep1 (Abs1 x))) (f x)"
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   467
using a b[simplified RESPECTS_THM] c unfolding Quotient_def
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   468
by blast
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   469
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   470
lemma RESPECTS_MP:
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   471
  assumes a: "Respects (R1 ===> R2) f"
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   472
  and     b: "R1 x y"
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   473
  shows "R2 (f x) (f y)"
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   474
using a b unfolding Respects_def
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   475
by simp
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   476
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   477
lemma RESPECTS_o:
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   478
  assumes a: "Respects (R2 ===> R3) f"
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   479
  and     b: "Respects (R1 ===> R2) g"
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   480
  shows "Respects (R1 ===> R3) (f o g)"
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   481
using a b unfolding Respects_def
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   482
by simp
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   483
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   484
lemma fun_rel_EQ_REL:
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   485
  assumes q1: "Quotient R1 Abs1 Rep1"
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   486
  and     q2: "Quotient R2 Abs2 Rep2"
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   487
  shows "(R1 ===> R2) f g = ((Respects (R1 ===> R2) f) \<and> (Respects (R1 ===> R2) g) 
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   488
                             \<and> ((Rep1 ---> Abs2) f = (Rep1 ---> Abs2) g))"
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   489
using fun_quotient[OF q1 q2] unfolding Respects_def Quotient_def expand_fun_eq
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   490
by blast
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   491
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   492
(* Not used since in the end we just unfold fun_map *)
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   493
lemma APP_PRS:
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   494
  assumes q1: "Quotient R1 abs1 rep1"
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   495
  and     q2: "Quotient R2 abs2 rep2"
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   496
  shows "abs2 ((abs1 ---> rep2) f (rep1 x)) = f x"
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   497
unfolding expand_fun_eq
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   498
using Quotient_abs_rep[OF q1] Quotient_abs_rep[OF q2]
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   499
by simp
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   500
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   501
(* Ask Peter: assumption q1 and q2 not used and lemma is the 'identity' *)
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   502
lemma LAMBDA_RSP:
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   503
  assumes q1: "Quotient R1 Abs1 Rep1"
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   504
  and     q2: "Quotient R2 Abs2 Rep2"
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   505
  and     a: "(R1 ===> R2) f1 f2"
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   506
  shows "(R1 ===> R2) (\<lambda>x. f1 x) (\<lambda>y. f2 y)"
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   507
by (rule a)
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   508
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   509
(* ASK Peter about next four lemmas in quotientScript
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   510
lemma ABSTRACT_PRS:
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   511
  assumes q1: "Quotient R1 Abs1 Rep1"
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   512
  and     q2: "Quotient R2 Abs2 Rep2"
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   513
  shows "f = (Rep1 ---> Abs2) ???"
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   514
*)
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   515
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   516
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   517
lemma fun_rel_EQUALS:
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   518
  assumes q1: "Quotient R1 Abs1 Rep1"
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   519
  and     q2: "Quotient R2 Abs2 Rep2"
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   520
  and     r1: "Respects (R1 ===> R2) f"
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   521
  and     r2: "Respects (R1 ===> R2) g" 
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   522
  shows "((Rep1 ---> Abs2) f = (Rep1 ---> Abs2) g) = (\<forall>x y. R1 x y \<longrightarrow> R2 (f x) (g y))"
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   523
apply(rule_tac iffI)
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   524
using fun_quotient[OF q1 q2] r1 r2 unfolding Quotient_def Respects_def
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   525
apply(metis fun_rel_IMP)
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   526
using r1 unfolding Respects_def expand_fun_eq
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   527
apply(simp (no_asm_use))
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   528
apply(metis Quotient_rel[OF q2] Quotient_rel_rep[OF q1])
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   529
done
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   530
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   531
(* ask Peter: fun_rel_IMP used twice *) 
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   532
lemma fun_rel_IMP2:
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   533
  assumes q1: "Quotient R1 Abs1 Rep1"
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   534
  and     q2: "Quotient R2 Abs2 Rep2"
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   535
  and     r1: "Respects (R1 ===> R2) f"
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   536
  and     r2: "Respects (R1 ===> R2) g" 
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   537
  and     a:  "(Rep1 ---> Abs2) f = (Rep1 ---> Abs2) g"
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   538
  shows "R1 x y \<Longrightarrow> R2 (f x) (g y)"
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   539
using q1 q2 r1 r2 a
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   540
by (simp add: fun_rel_EQUALS)
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   541
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   542
lemma LAMBDA_REP_ABS_RSP:
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   543
  assumes r1: "\<And>r r'. R1 r r' \<Longrightarrow>R1 r (Rep1 (Abs1 r'))"
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   544
  and     r2: "\<And>r r'. R2 r r' \<Longrightarrow>R2 r (Rep2 (Abs2 r'))"
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   545
  shows "(R1 ===> R2) f1 f2 \<Longrightarrow> (R1 ===> R2) f1 ((Abs1 ---> Rep2) ((Rep1 ---> Abs2) f2))"
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   546
using r1 r2 by auto
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   547
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   548
(* Not used *)
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   549
lemma rep_abs_rsp_left:
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   550
  assumes q: "Quotient R Abs Rep"
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   551
  and     a: "R x1 x2"
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   552
  shows "R x1 (Rep (Abs x2))"
fe468f8723fc More cleaning
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 541
diff changeset
   553
using q a by (metis Quotient_rel[OF q] Quotient_abs_rep[OF q] Quotient_rep_reflp[OF q])
541
94deffed619d more name cleaning and removing
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 540
diff changeset
   554
94deffed619d more name cleaning and removing
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 540
diff changeset
   555
93
ec29be471518 Manually regularized list_induct2
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 0
diff changeset
   556
end
95
8c3a35da4560 Proving the proper RepAbs version
Cezary Kaliszyk <kaliszyk@in.tum.de>
parents: 93
diff changeset
   557