src/HOLCF/Sprod.thy
author huffman
Wed, 27 Oct 2010 13:54:18 -0700
changeset 40321 d065b195ec89
parent 40098 9dbb01456031
child 40436 adb22dbb5242
permissions -rw-r--r--
rename lemmas *_defined_iff and *_strict_iff to *_bottom_iff
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
15600
a59f07556a8d fixed filename in header
huffman
parents: 15591
diff changeset
     1
(*  Title:      HOLCF/Sprod.thy
16059
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
     2
    Author:     Franz Regensburger and Brian Huffman
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
     3
*)
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
     4
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
     5
header {* The type of strict products *}
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
     6
15577
e16da3068ad6 fix headers
huffman
parents: 15576
diff changeset
     7
theory Sprod
39987
8c2f449af35a move all bifinite class instances to Bifinite.thy
huffman
parents: 39986
diff changeset
     8
imports Deflation
15577
e16da3068ad6 fix headers
huffman
parents: 15576
diff changeset
     9
begin
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    10
36452
d37c6eed8117 renamed command 'defaultsort' to 'default_sort';
wenzelm
parents: 35900
diff changeset
    11
default_sort pcpo
16082
ebb53ebfd4e2 added defaultsort declaration
huffman
parents: 16070
diff changeset
    12
15591
50c3384ca6c4 reordered and arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
    13
subsection {* Definition of strict product type *}
50c3384ca6c4 reordered and arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
    14
40098
9dbb01456031 use default names sprod/Rep_sprod/Abs_sprod from pcpodef instead of Sprod/Rep_Sprod/Abs_Sprod; similarly for ssum
huffman
parents: 40095
diff changeset
    15
pcpodef ('a, 'b) sprod (infixr "**" 20) =
31114
2e9cc546e5b0 use Pair/fst/snd instead of cpair/cfst/csnd
huffman
parents: 31076
diff changeset
    16
        "{p::'a \<times> 'b. p = \<bottom> \<or> (fst p \<noteq> \<bottom> \<and> snd p \<noteq> \<bottom>)}"
29063
7619f0561cd7 pcpodef package: state two goals, instead of encoded conjunction;
wenzelm
parents: 27310
diff changeset
    17
by simp_all
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    18
35525
fa231b86cb1e proper names for types cfun, sprod, ssum
huffman
parents: 35491
diff changeset
    19
instance sprod :: ("{chfin,pcpo}", "{chfin,pcpo}") chfin
40098
9dbb01456031 use default names sprod/Rep_sprod/Abs_sprod from pcpodef instead of Sprod/Rep_Sprod/Abs_Sprod; similarly for ssum
huffman
parents: 40095
diff changeset
    20
by (rule typedef_chfin [OF type_definition_sprod below_sprod_def])
25827
c2adeb1bae5c new instance proofs for classes finite_po, chfin, flat
huffman
parents: 25757
diff changeset
    21
35427
ad039d29e01c proper (type_)notation;
wenzelm
parents: 35115
diff changeset
    22
type_notation (xsymbols)
35547
991a6af75978 merged, resolving some basic conflicts;
wenzelm
parents: 35525 35427
diff changeset
    23
  sprod  ("(_ \<otimes>/ _)" [21,20] 20)
35427
ad039d29e01c proper (type_)notation;
wenzelm
parents: 35115
diff changeset
    24
type_notation (HTML output)
35547
991a6af75978 merged, resolving some basic conflicts;
wenzelm
parents: 35525 35427
diff changeset
    25
  sprod  ("(_ \<otimes>/ _)" [21,20] 20)
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    26
16059
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    27
subsection {* Definitions of constants *}
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    28
25135
4f8176c940cf modernized specifications ('definition', 'axiomatization');
wenzelm
parents: 25131
diff changeset
    29
definition
4f8176c940cf modernized specifications ('definition', 'axiomatization');
wenzelm
parents: 25131
diff changeset
    30
  sfst :: "('a ** 'b) \<rightarrow> 'a" where
40098
9dbb01456031 use default names sprod/Rep_sprod/Abs_sprod from pcpodef instead of Sprod/Rep_Sprod/Abs_Sprod; similarly for ssum
huffman
parents: 40095
diff changeset
    31
  "sfst = (\<Lambda> p. fst (Rep_sprod p))"
25135
4f8176c940cf modernized specifications ('definition', 'axiomatization');
wenzelm
parents: 25131
diff changeset
    32
4f8176c940cf modernized specifications ('definition', 'axiomatization');
wenzelm
parents: 25131
diff changeset
    33
definition
4f8176c940cf modernized specifications ('definition', 'axiomatization');
wenzelm
parents: 25131
diff changeset
    34
  ssnd :: "('a ** 'b) \<rightarrow> 'b" where
40098
9dbb01456031 use default names sprod/Rep_sprod/Abs_sprod from pcpodef instead of Sprod/Rep_Sprod/Abs_Sprod; similarly for ssum
huffman
parents: 40095
diff changeset
    35
  "ssnd = (\<Lambda> p. snd (Rep_sprod p))"
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    36
25135
4f8176c940cf modernized specifications ('definition', 'axiomatization');
wenzelm
parents: 25131
diff changeset
    37
definition
4f8176c940cf modernized specifications ('definition', 'axiomatization');
wenzelm
parents: 25131
diff changeset
    38
  spair :: "'a \<rightarrow> 'b \<rightarrow> ('a ** 'b)" where
40098
9dbb01456031 use default names sprod/Rep_sprod/Abs_sprod from pcpodef instead of Sprod/Rep_Sprod/Abs_Sprod; similarly for ssum
huffman
parents: 40095
diff changeset
    39
  "spair = (\<Lambda> a b. Abs_sprod (strict\<cdot>b\<cdot>a, strict\<cdot>a\<cdot>b))"
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    40
25135
4f8176c940cf modernized specifications ('definition', 'axiomatization');
wenzelm
parents: 25131
diff changeset
    41
definition
4f8176c940cf modernized specifications ('definition', 'axiomatization');
wenzelm
parents: 25131
diff changeset
    42
  ssplit :: "('a \<rightarrow> 'b \<rightarrow> 'c) \<rightarrow> ('a ** 'b) \<rightarrow> 'c" where
40046
ba2e41c8b725 introduce function strict :: 'a -> 'b -> 'b, which works like Haskell's seq; use strict instead of strictify in various definitions
huffman
parents: 40002
diff changeset
    43
  "ssplit = (\<Lambda> f p. strict\<cdot>p\<cdot>(f\<cdot>(sfst\<cdot>p)\<cdot>(ssnd\<cdot>p)))"
25135
4f8176c940cf modernized specifications ('definition', 'axiomatization');
wenzelm
parents: 25131
diff changeset
    44
4f8176c940cf modernized specifications ('definition', 'axiomatization');
wenzelm
parents: 25131
diff changeset
    45
syntax
35115
446c5063e4fd modernized translations;
wenzelm
parents: 33808
diff changeset
    46
  "_stuple" :: "['a, args] => 'a ** 'b"  ("(1'(:_,/ _:'))")
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    47
translations
18078
20e5a6440790 change syntax for LAM to use expressions as patterns; define LAM pattern syntax for cpair, spair, sinl, sinr, up
huffman
parents: 17837
diff changeset
    48
  "(:x, y, z:)" == "(:x, (:y, z:):)"
25131
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 18078
diff changeset
    49
  "(:x, y:)"    == "CONST spair\<cdot>x\<cdot>y"
18078
20e5a6440790 change syntax for LAM to use expressions as patterns; define LAM pattern syntax for cpair, spair, sinl, sinr, up
huffman
parents: 17837
diff changeset
    50
20e5a6440790 change syntax for LAM to use expressions as patterns; define LAM pattern syntax for cpair, spair, sinl, sinr, up
huffman
parents: 17837
diff changeset
    51
translations
25131
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 18078
diff changeset
    52
  "\<Lambda>(CONST spair\<cdot>x\<cdot>y). t" == "CONST ssplit\<cdot>(\<Lambda> x y. t)"
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    53
16059
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    54
subsection {* Case analysis *}
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    55
40098
9dbb01456031 use default names sprod/Rep_sprod/Abs_sprod from pcpodef instead of Sprod/Rep_Sprod/Abs_Sprod; similarly for ssum
huffman
parents: 40095
diff changeset
    56
lemma spair_sprod: "(strict\<cdot>b\<cdot>a, strict\<cdot>a\<cdot>b) \<in> sprod"
9dbb01456031 use default names sprod/Rep_sprod/Abs_sprod from pcpodef instead of Sprod/Rep_Sprod/Abs_Sprod; similarly for ssum
huffman
parents: 40095
diff changeset
    57
by (simp add: sprod_def strict_conv_if)
40083
54159b52f339 rename lemma spair_lemma to spair_Sprod
huffman
parents: 40080
diff changeset
    58
40098
9dbb01456031 use default names sprod/Rep_sprod/Abs_sprod from pcpodef instead of Sprod/Rep_Sprod/Abs_Sprod; similarly for ssum
huffman
parents: 40095
diff changeset
    59
lemma Rep_sprod_spair: "Rep_sprod (:a, b:) = (strict\<cdot>b\<cdot>a, strict\<cdot>a\<cdot>b)"
9dbb01456031 use default names sprod/Rep_sprod/Abs_sprod from pcpodef instead of Sprod/Rep_Sprod/Abs_Sprod; similarly for ssum
huffman
parents: 40095
diff changeset
    60
by (simp add: spair_def cont_Abs_sprod Abs_sprod_inverse spair_sprod)
40080
435f9f5970f8 simplify proofs of ssumE, sprodE
huffman
parents: 40046
diff changeset
    61
40098
9dbb01456031 use default names sprod/Rep_sprod/Abs_sprod from pcpodef instead of Sprod/Rep_Sprod/Abs_Sprod; similarly for ssum
huffman
parents: 40095
diff changeset
    62
lemmas Rep_sprod_simps =
9dbb01456031 use default names sprod/Rep_sprod/Abs_sprod from pcpodef instead of Sprod/Rep_Sprod/Abs_Sprod; similarly for ssum
huffman
parents: 40095
diff changeset
    63
  Rep_sprod_inject [symmetric] below_sprod_def
40092
baf5953615da do proofs using Rep_Sprod_simps, Rep_Ssum_simps; remove unused lemmas
huffman
parents: 40089
diff changeset
    64
  Pair_fst_snd_eq below_prod_def
40098
9dbb01456031 use default names sprod/Rep_sprod/Abs_sprod from pcpodef instead of Sprod/Rep_Sprod/Abs_Sprod; similarly for ssum
huffman
parents: 40095
diff changeset
    65
  Rep_sprod_strict Rep_sprod_spair
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    66
35783
38538bfe9ca6 declare case_names for various induction rules
huffman
parents: 35547
diff changeset
    67
lemma sprodE [case_names bottom spair, cases type: sprod]:
40080
435f9f5970f8 simplify proofs of ssumE, sprodE
huffman
parents: 40046
diff changeset
    68
  obtains "p = \<bottom>" | x y where "p = (:x, y:)" and "x \<noteq> \<bottom>" and "y \<noteq> \<bottom>"
40098
9dbb01456031 use default names sprod/Rep_sprod/Abs_sprod from pcpodef instead of Sprod/Rep_Sprod/Abs_Sprod; similarly for ssum
huffman
parents: 40095
diff changeset
    69
using Rep_sprod [of p] by (auto simp add: sprod_def Rep_sprod_simps)
16059
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    70
35783
38538bfe9ca6 declare case_names for various induction rules
huffman
parents: 35547
diff changeset
    71
lemma sprod_induct [case_names bottom spair, induct type: sprod]:
25757
5957e3d72fec declare sprodE as cases rule; new induction rule sprod_induct
huffman
parents: 25135
diff changeset
    72
  "\<lbrakk>P \<bottom>; \<And>x y. \<lbrakk>x \<noteq> \<bottom>; y \<noteq> \<bottom>\<rbrakk> \<Longrightarrow> P (:x, y:)\<rbrakk> \<Longrightarrow> P x"
5957e3d72fec declare sprodE as cases rule; new induction rule sprod_induct
huffman
parents: 25135
diff changeset
    73
by (cases x, simp_all)
5957e3d72fec declare sprodE as cases rule; new induction rule sprod_induct
huffman
parents: 25135
diff changeset
    74
35900
aa5dfb03eb1e remove LaTeX hyperref warnings by avoiding antiquotations within section headings
huffman
parents: 35783
diff changeset
    75
subsection {* Properties of \emph{spair} *}
16059
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    76
16317
868eddbcaf6e added theorems less_sprod, spair_less, spair_eq, spair_inject
huffman
parents: 16212
diff changeset
    77
lemma spair_strict1 [simp]: "(:\<bottom>, y:) = \<bottom>"
40098
9dbb01456031 use default names sprod/Rep_sprod/Abs_sprod from pcpodef instead of Sprod/Rep_Sprod/Abs_Sprod; similarly for ssum
huffman
parents: 40095
diff changeset
    78
by (simp add: Rep_sprod_simps)
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    79
16317
868eddbcaf6e added theorems less_sprod, spair_less, spair_eq, spair_inject
huffman
parents: 16212
diff changeset
    80
lemma spair_strict2 [simp]: "(:x, \<bottom>:) = \<bottom>"
40098
9dbb01456031 use default names sprod/Rep_sprod/Abs_sprod from pcpodef instead of Sprod/Rep_Sprod/Abs_Sprod; similarly for ssum
huffman
parents: 40095
diff changeset
    81
by (simp add: Rep_sprod_simps)
25914
ff835e25ae87 clean up some proofs;
huffman
parents: 25881
diff changeset
    82
40321
d065b195ec89 rename lemmas *_defined_iff and *_strict_iff to *_bottom_iff
huffman
parents: 40098
diff changeset
    83
lemma spair_bottom_iff [simp]: "((:x, y:) = \<bottom>) = (x = \<bottom> \<or> y = \<bottom>)"
40098
9dbb01456031 use default names sprod/Rep_sprod/Abs_sprod from pcpodef instead of Sprod/Rep_Sprod/Abs_Sprod; similarly for ssum
huffman
parents: 40095
diff changeset
    84
by (simp add: Rep_sprod_simps strict_conv_if)
25914
ff835e25ae87 clean up some proofs;
huffman
parents: 25881
diff changeset
    85
31076
99fe356cbbc2 rename constant sq_le to below; rename class sq_ord to below; less->below in many lemma names
huffman
parents: 29138
diff changeset
    86
lemma spair_below_iff:
25914
ff835e25ae87 clean up some proofs;
huffman
parents: 25881
diff changeset
    87
  "((:a, b:) \<sqsubseteq> (:c, d:)) = (a = \<bottom> \<or> b = \<bottom> \<or> (a \<sqsubseteq> c \<and> b \<sqsubseteq> d))"
40098
9dbb01456031 use default names sprod/Rep_sprod/Abs_sprod from pcpodef instead of Sprod/Rep_Sprod/Abs_Sprod; similarly for ssum
huffman
parents: 40095
diff changeset
    88
by (simp add: Rep_sprod_simps strict_conv_if)
25914
ff835e25ae87 clean up some proofs;
huffman
parents: 25881
diff changeset
    89
ff835e25ae87 clean up some proofs;
huffman
parents: 25881
diff changeset
    90
lemma spair_eq_iff:
ff835e25ae87 clean up some proofs;
huffman
parents: 25881
diff changeset
    91
  "((:a, b:) = (:c, d:)) =
ff835e25ae87 clean up some proofs;
huffman
parents: 25881
diff changeset
    92
    (a = c \<and> b = d \<or> (a = \<bottom> \<or> b = \<bottom>) \<and> (c = \<bottom> \<or> d = \<bottom>))"
40098
9dbb01456031 use default names sprod/Rep_sprod/Abs_sprod from pcpodef instead of Sprod/Rep_Sprod/Abs_Sprod; similarly for ssum
huffman
parents: 40095
diff changeset
    93
by (simp add: Rep_sprod_simps strict_conv_if)
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    94
16317
868eddbcaf6e added theorems less_sprod, spair_less, spair_eq, spair_inject
huffman
parents: 16212
diff changeset
    95
lemma spair_strict: "x = \<bottom> \<or> y = \<bottom> \<Longrightarrow> (:x, y:) = \<bottom>"
25914
ff835e25ae87 clean up some proofs;
huffman
parents: 25881
diff changeset
    96
by simp
16059
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    97
16212
422f836f6b39 renamed strict, defined, and inject lemmas; renamed sfst2, ssnd2 to sfst_spair, ssnd_spair
huffman
parents: 16082
diff changeset
    98
lemma spair_strict_rev: "(:x, y:) \<noteq> \<bottom> \<Longrightarrow> x \<noteq> \<bottom> \<and> y \<noteq> \<bottom>"
25914
ff835e25ae87 clean up some proofs;
huffman
parents: 25881
diff changeset
    99
by simp
16059
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   100
25914
ff835e25ae87 clean up some proofs;
huffman
parents: 25881
diff changeset
   101
lemma spair_defined: "\<lbrakk>x \<noteq> \<bottom>; y \<noteq> \<bottom>\<rbrakk> \<Longrightarrow> (:x, y:) \<noteq> \<bottom>"
ff835e25ae87 clean up some proofs;
huffman
parents: 25881
diff changeset
   102
by simp
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   103
16317
868eddbcaf6e added theorems less_sprod, spair_less, spair_eq, spair_inject
huffman
parents: 16212
diff changeset
   104
lemma spair_defined_rev: "(:x, y:) = \<bottom> \<Longrightarrow> x = \<bottom> \<or> y = \<bottom>"
25914
ff835e25ae87 clean up some proofs;
huffman
parents: 25881
diff changeset
   105
by simp
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   106
40095
huffman
parents: 40094
diff changeset
   107
lemma spair_below:
huffman
parents: 40094
diff changeset
   108
  "\<lbrakk>x \<noteq> \<bottom>; y \<noteq> \<bottom>\<rbrakk> \<Longrightarrow> (:x, y:) \<sqsubseteq> (:a, b:) = (x \<sqsubseteq> a \<and> y \<sqsubseteq> b)"
huffman
parents: 40094
diff changeset
   109
by (simp add: spair_below_iff)
huffman
parents: 40094
diff changeset
   110
16317
868eddbcaf6e added theorems less_sprod, spair_less, spair_eq, spair_inject
huffman
parents: 16212
diff changeset
   111
lemma spair_eq:
868eddbcaf6e added theorems less_sprod, spair_less, spair_eq, spair_inject
huffman
parents: 16212
diff changeset
   112
  "\<lbrakk>x \<noteq> \<bottom>; y \<noteq> \<bottom>\<rbrakk> \<Longrightarrow> ((:x, y:) = (:a, b:)) = (x = a \<and> y = b)"
25914
ff835e25ae87 clean up some proofs;
huffman
parents: 25881
diff changeset
   113
by (simp add: spair_eq_iff)
16317
868eddbcaf6e added theorems less_sprod, spair_less, spair_eq, spair_inject
huffman
parents: 16212
diff changeset
   114
16212
422f836f6b39 renamed strict, defined, and inject lemmas; renamed sfst2, ssnd2 to sfst_spair, ssnd_spair
huffman
parents: 16082
diff changeset
   115
lemma spair_inject:
16317
868eddbcaf6e added theorems less_sprod, spair_less, spair_eq, spair_inject
huffman
parents: 16212
diff changeset
   116
  "\<lbrakk>x \<noteq> \<bottom>; y \<noteq> \<bottom>; (:x, y:) = (:a, b:)\<rbrakk> \<Longrightarrow> x = a \<and> y = b"
868eddbcaf6e added theorems less_sprod, spair_less, spair_eq, spair_inject
huffman
parents: 16212
diff changeset
   117
by (rule spair_eq [THEN iffD1])
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   118
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   119
lemma inst_sprod_pcpo2: "UU = (:UU,UU:)"
16059
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   120
by simp
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   121
33504
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   122
lemma sprodE2: "(\<And>x y. p = (:x, y:) \<Longrightarrow> Q) \<Longrightarrow> Q"
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   123
by (cases p, simp only: inst_sprod_pcpo2, simp)
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   124
35900
aa5dfb03eb1e remove LaTeX hyperref warnings by avoiding antiquotations within section headings
huffman
parents: 35783
diff changeset
   125
subsection {* Properties of \emph{sfst} and \emph{ssnd} *}
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   126
16212
422f836f6b39 renamed strict, defined, and inject lemmas; renamed sfst2, ssnd2 to sfst_spair, ssnd_spair
huffman
parents: 16082
diff changeset
   127
lemma sfst_strict [simp]: "sfst\<cdot>\<bottom> = \<bottom>"
40098
9dbb01456031 use default names sprod/Rep_sprod/Abs_sprod from pcpodef instead of Sprod/Rep_Sprod/Abs_Sprod; similarly for ssum
huffman
parents: 40095
diff changeset
   128
by (simp add: sfst_def cont_Rep_sprod Rep_sprod_strict)
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   129
16212
422f836f6b39 renamed strict, defined, and inject lemmas; renamed sfst2, ssnd2 to sfst_spair, ssnd_spair
huffman
parents: 16082
diff changeset
   130
lemma ssnd_strict [simp]: "ssnd\<cdot>\<bottom> = \<bottom>"
40098
9dbb01456031 use default names sprod/Rep_sprod/Abs_sprod from pcpodef instead of Sprod/Rep_Sprod/Abs_Sprod; similarly for ssum
huffman
parents: 40095
diff changeset
   131
by (simp add: ssnd_def cont_Rep_sprod Rep_sprod_strict)
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   132
16212
422f836f6b39 renamed strict, defined, and inject lemmas; renamed sfst2, ssnd2 to sfst_spair, ssnd_spair
huffman
parents: 16082
diff changeset
   133
lemma sfst_spair [simp]: "y \<noteq> \<bottom> \<Longrightarrow> sfst\<cdot>(:x, y:) = x"
40098
9dbb01456031 use default names sprod/Rep_sprod/Abs_sprod from pcpodef instead of Sprod/Rep_Sprod/Abs_Sprod; similarly for ssum
huffman
parents: 40095
diff changeset
   134
by (simp add: sfst_def cont_Rep_sprod Rep_sprod_spair)
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   135
16212
422f836f6b39 renamed strict, defined, and inject lemmas; renamed sfst2, ssnd2 to sfst_spair, ssnd_spair
huffman
parents: 16082
diff changeset
   136
lemma ssnd_spair [simp]: "x \<noteq> \<bottom> \<Longrightarrow> ssnd\<cdot>(:x, y:) = y"
40098
9dbb01456031 use default names sprod/Rep_sprod/Abs_sprod from pcpodef instead of Sprod/Rep_Sprod/Abs_Sprod; similarly for ssum
huffman
parents: 40095
diff changeset
   137
by (simp add: ssnd_def cont_Rep_sprod Rep_sprod_spair)
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   138
40321
d065b195ec89 rename lemmas *_defined_iff and *_strict_iff to *_bottom_iff
huffman
parents: 40098
diff changeset
   139
lemma sfst_bottom_iff [simp]: "(sfst\<cdot>p = \<bottom>) = (p = \<bottom>)"
25757
5957e3d72fec declare sprodE as cases rule; new induction rule sprod_induct
huffman
parents: 25135
diff changeset
   140
by (cases p, simp_all)
16777
555c8951f05c added lemmas sfst_defined_iff, ssnd_defined_iff, sfst_defined, ssnd_defined
huffman
parents: 16751
diff changeset
   141
40321
d065b195ec89 rename lemmas *_defined_iff and *_strict_iff to *_bottom_iff
huffman
parents: 40098
diff changeset
   142
lemma ssnd_bottom_iff [simp]: "(ssnd\<cdot>p = \<bottom>) = (p = \<bottom>)"
25757
5957e3d72fec declare sprodE as cases rule; new induction rule sprod_induct
huffman
parents: 25135
diff changeset
   143
by (cases p, simp_all)
16317
868eddbcaf6e added theorems less_sprod, spair_less, spair_eq, spair_inject
huffman
parents: 16212
diff changeset
   144
16777
555c8951f05c added lemmas sfst_defined_iff, ssnd_defined_iff, sfst_defined, ssnd_defined
huffman
parents: 16751
diff changeset
   145
lemma sfst_defined: "p \<noteq> \<bottom> \<Longrightarrow> sfst\<cdot>p \<noteq> \<bottom>"
555c8951f05c added lemmas sfst_defined_iff, ssnd_defined_iff, sfst_defined, ssnd_defined
huffman
parents: 16751
diff changeset
   146
by simp
555c8951f05c added lemmas sfst_defined_iff, ssnd_defined_iff, sfst_defined, ssnd_defined
huffman
parents: 16751
diff changeset
   147
555c8951f05c added lemmas sfst_defined_iff, ssnd_defined_iff, sfst_defined, ssnd_defined
huffman
parents: 16751
diff changeset
   148
lemma ssnd_defined: "p \<noteq> \<bottom> \<Longrightarrow> ssnd\<cdot>p \<noteq> \<bottom>"
555c8951f05c added lemmas sfst_defined_iff, ssnd_defined_iff, sfst_defined, ssnd_defined
huffman
parents: 16751
diff changeset
   149
by simp
555c8951f05c added lemmas sfst_defined_iff, ssnd_defined_iff, sfst_defined, ssnd_defined
huffman
parents: 16751
diff changeset
   150
40094
0295606b6a36 rename lemma surjective_pairing_Sprod2 to spair_sfst_ssnd
huffman
parents: 40093
diff changeset
   151
lemma spair_sfst_ssnd: "(:sfst\<cdot>p, ssnd\<cdot>p:) = p"
25757
5957e3d72fec declare sprodE as cases rule; new induction rule sprod_induct
huffman
parents: 25135
diff changeset
   152
by (cases p, simp_all)
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   153
31076
99fe356cbbc2 rename constant sq_le to below; rename class sq_ord to below; less->below in many lemma names
huffman
parents: 29138
diff changeset
   154
lemma below_sprod: "x \<sqsubseteq> y = (sfst\<cdot>x \<sqsubseteq> sfst\<cdot>y \<and> ssnd\<cdot>x \<sqsubseteq> ssnd\<cdot>y)"
40098
9dbb01456031 use default names sprod/Rep_sprod/Abs_sprod from pcpodef instead of Sprod/Rep_Sprod/Abs_Sprod; similarly for ssum
huffman
parents: 40095
diff changeset
   155
by (simp add: Rep_sprod_simps sfst_def ssnd_def cont_Rep_sprod)
16317
868eddbcaf6e added theorems less_sprod, spair_less, spair_eq, spair_inject
huffman
parents: 16212
diff changeset
   156
16751
7af6723ad741 add lemma eq_sprod
huffman
parents: 16699
diff changeset
   157
lemma eq_sprod: "(x = y) = (sfst\<cdot>x = sfst\<cdot>y \<and> ssnd\<cdot>x = ssnd\<cdot>y)"
31076
99fe356cbbc2 rename constant sq_le to below; rename class sq_ord to below; less->below in many lemma names
huffman
parents: 29138
diff changeset
   158
by (auto simp add: po_eq_conv below_sprod)
16751
7af6723ad741 add lemma eq_sprod
huffman
parents: 16699
diff changeset
   159
31076
99fe356cbbc2 rename constant sq_le to below; rename class sq_ord to below; less->below in many lemma names
huffman
parents: 29138
diff changeset
   160
lemma sfst_below_iff: "sfst\<cdot>x \<sqsubseteq> y = x \<sqsubseteq> (:y, ssnd\<cdot>x:)"
25881
d80bd899ea95 Compactness subsection with new lemmas
huffman
parents: 25827
diff changeset
   161
apply (cases "x = \<bottom>", simp, cases "y = \<bottom>", simp)
31076
99fe356cbbc2 rename constant sq_le to below; rename class sq_ord to below; less->below in many lemma names
huffman
parents: 29138
diff changeset
   162
apply (simp add: below_sprod)
25881
d80bd899ea95 Compactness subsection with new lemmas
huffman
parents: 25827
diff changeset
   163
done
d80bd899ea95 Compactness subsection with new lemmas
huffman
parents: 25827
diff changeset
   164
31076
99fe356cbbc2 rename constant sq_le to below; rename class sq_ord to below; less->below in many lemma names
huffman
parents: 29138
diff changeset
   165
lemma ssnd_below_iff: "ssnd\<cdot>x \<sqsubseteq> y = x \<sqsubseteq> (:sfst\<cdot>x, y:)"
25881
d80bd899ea95 Compactness subsection with new lemmas
huffman
parents: 25827
diff changeset
   166
apply (cases "x = \<bottom>", simp, cases "y = \<bottom>", simp)
31076
99fe356cbbc2 rename constant sq_le to below; rename class sq_ord to below; less->below in many lemma names
huffman
parents: 29138
diff changeset
   167
apply (simp add: below_sprod)
25881
d80bd899ea95 Compactness subsection with new lemmas
huffman
parents: 25827
diff changeset
   168
done
d80bd899ea95 Compactness subsection with new lemmas
huffman
parents: 25827
diff changeset
   169
d80bd899ea95 Compactness subsection with new lemmas
huffman
parents: 25827
diff changeset
   170
subsection {* Compactness *}
d80bd899ea95 Compactness subsection with new lemmas
huffman
parents: 25827
diff changeset
   171
d80bd899ea95 Compactness subsection with new lemmas
huffman
parents: 25827
diff changeset
   172
lemma compact_sfst: "compact x \<Longrightarrow> compact (sfst\<cdot>x)"
31076
99fe356cbbc2 rename constant sq_le to below; rename class sq_ord to below; less->below in many lemma names
huffman
parents: 29138
diff changeset
   173
by (rule compactI, simp add: sfst_below_iff)
25881
d80bd899ea95 Compactness subsection with new lemmas
huffman
parents: 25827
diff changeset
   174
d80bd899ea95 Compactness subsection with new lemmas
huffman
parents: 25827
diff changeset
   175
lemma compact_ssnd: "compact x \<Longrightarrow> compact (ssnd\<cdot>x)"
31076
99fe356cbbc2 rename constant sq_le to below; rename class sq_ord to below; less->below in many lemma names
huffman
parents: 29138
diff changeset
   176
by (rule compactI, simp add: ssnd_below_iff)
25881
d80bd899ea95 Compactness subsection with new lemmas
huffman
parents: 25827
diff changeset
   177
d80bd899ea95 Compactness subsection with new lemmas
huffman
parents: 25827
diff changeset
   178
lemma compact_spair: "\<lbrakk>compact x; compact y\<rbrakk> \<Longrightarrow> compact (:x, y:)"
40098
9dbb01456031 use default names sprod/Rep_sprod/Abs_sprod from pcpodef instead of Sprod/Rep_Sprod/Abs_Sprod; similarly for ssum
huffman
parents: 40095
diff changeset
   179
by (rule compact_sprod, simp add: Rep_sprod_spair strict_conv_if)
25881
d80bd899ea95 Compactness subsection with new lemmas
huffman
parents: 25827
diff changeset
   180
d80bd899ea95 Compactness subsection with new lemmas
huffman
parents: 25827
diff changeset
   181
lemma compact_spair_iff:
d80bd899ea95 Compactness subsection with new lemmas
huffman
parents: 25827
diff changeset
   182
  "compact (:x, y:) = (x = \<bottom> \<or> y = \<bottom> \<or> (compact x \<and> compact y))"
d80bd899ea95 Compactness subsection with new lemmas
huffman
parents: 25827
diff changeset
   183
apply (safe elim!: compact_spair)
d80bd899ea95 Compactness subsection with new lemmas
huffman
parents: 25827
diff changeset
   184
apply (drule compact_sfst, simp)
d80bd899ea95 Compactness subsection with new lemmas
huffman
parents: 25827
diff changeset
   185
apply (drule compact_ssnd, simp)
d80bd899ea95 Compactness subsection with new lemmas
huffman
parents: 25827
diff changeset
   186
apply simp
d80bd899ea95 Compactness subsection with new lemmas
huffman
parents: 25827
diff changeset
   187
apply simp
d80bd899ea95 Compactness subsection with new lemmas
huffman
parents: 25827
diff changeset
   188
done
d80bd899ea95 Compactness subsection with new lemmas
huffman
parents: 25827
diff changeset
   189
35900
aa5dfb03eb1e remove LaTeX hyperref warnings by avoiding antiquotations within section headings
huffman
parents: 35783
diff changeset
   190
subsection {* Properties of \emph{ssplit} *}
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   191
16059
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   192
lemma ssplit1 [simp]: "ssplit\<cdot>f\<cdot>\<bottom> = \<bottom>"
15591
50c3384ca6c4 reordered and arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
   193
by (simp add: ssplit_def)
50c3384ca6c4 reordered and arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
   194
16920
ded12c9e88c2 cleaned up
huffman
parents: 16777
diff changeset
   195
lemma ssplit2 [simp]: "\<lbrakk>x \<noteq> \<bottom>; y \<noteq> \<bottom>\<rbrakk> \<Longrightarrow> ssplit\<cdot>f\<cdot>(:x, y:) = f\<cdot>x\<cdot>y"
15591
50c3384ca6c4 reordered and arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
   196
by (simp add: ssplit_def)
50c3384ca6c4 reordered and arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
   197
16553
aa36d41e4263 add csplit3, ssplit3, fup3 as simp rules
huffman
parents: 16317
diff changeset
   198
lemma ssplit3 [simp]: "ssplit\<cdot>spair\<cdot>z = z"
25757
5957e3d72fec declare sprodE as cases rule; new induction rule sprod_induct
huffman
parents: 25135
diff changeset
   199
by (cases z, simp_all)
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   200
25827
c2adeb1bae5c new instance proofs for classes finite_po, chfin, flat
huffman
parents: 25757
diff changeset
   201
subsection {* Strict product preserves flatness *}
c2adeb1bae5c new instance proofs for classes finite_po, chfin, flat
huffman
parents: 25757
diff changeset
   202
35525
fa231b86cb1e proper names for types cfun, sprod, ssum
huffman
parents: 35491
diff changeset
   203
instance sprod :: (flat, flat) flat
27310
d0229bc6c461 simplify profinite class axioms
huffman
parents: 26962
diff changeset
   204
proof
d0229bc6c461 simplify profinite class axioms
huffman
parents: 26962
diff changeset
   205
  fix x y :: "'a \<otimes> 'b"
d0229bc6c461 simplify profinite class axioms
huffman
parents: 26962
diff changeset
   206
  assume "x \<sqsubseteq> y" thus "x = \<bottom> \<or> x = y"
d0229bc6c461 simplify profinite class axioms
huffman
parents: 26962
diff changeset
   207
    apply (induct x, simp)
d0229bc6c461 simplify profinite class axioms
huffman
parents: 26962
diff changeset
   208
    apply (induct y, simp)
31076
99fe356cbbc2 rename constant sq_le to below; rename class sq_ord to below; less->below in many lemma names
huffman
parents: 29138
diff changeset
   209
    apply (simp add: spair_below_iff flat_below_iff)
27310
d0229bc6c461 simplify profinite class axioms
huffman
parents: 26962
diff changeset
   210
    done
d0229bc6c461 simplify profinite class axioms
huffman
parents: 26962
diff changeset
   211
qed
25827
c2adeb1bae5c new instance proofs for classes finite_po, chfin, flat
huffman
parents: 25757
diff changeset
   212
33504
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   213
subsection {* Map function for strict products *}
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   214
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   215
definition
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   216
  sprod_map :: "('a \<rightarrow> 'b) \<rightarrow> ('c \<rightarrow> 'd) \<rightarrow> 'a \<otimes> 'c \<rightarrow> 'b \<otimes> 'd"
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   217
where
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   218
  "sprod_map = (\<Lambda> f g. ssplit\<cdot>(\<Lambda> x y. (:f\<cdot>x, g\<cdot>y:)))"
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   219
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   220
lemma sprod_map_strict [simp]: "sprod_map\<cdot>a\<cdot>b\<cdot>\<bottom> = \<bottom>"
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   221
unfolding sprod_map_def by simp
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   222
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   223
lemma sprod_map_spair [simp]:
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   224
  "x \<noteq> \<bottom> \<Longrightarrow> y \<noteq> \<bottom> \<Longrightarrow> sprod_map\<cdot>f\<cdot>g\<cdot>(:x, y:) = (:f\<cdot>x, g\<cdot>y:)"
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   225
by (simp add: sprod_map_def)
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   226
35491
92e0028a46f2 add lemmas about ssum_map and sprod_map
huffman
parents: 35115
diff changeset
   227
lemma sprod_map_spair':
92e0028a46f2 add lemmas about ssum_map and sprod_map
huffman
parents: 35115
diff changeset
   228
  "f\<cdot>\<bottom> = \<bottom> \<Longrightarrow> g\<cdot>\<bottom> = \<bottom> \<Longrightarrow> sprod_map\<cdot>f\<cdot>g\<cdot>(:x, y:) = (:f\<cdot>x, g\<cdot>y:)"
92e0028a46f2 add lemmas about ssum_map and sprod_map
huffman
parents: 35115
diff changeset
   229
by (cases "x = \<bottom> \<or> y = \<bottom>") auto
92e0028a46f2 add lemmas about ssum_map and sprod_map
huffman
parents: 35115
diff changeset
   230
33808
31169fdc5ae7 add map_ID lemmas
huffman
parents: 33587
diff changeset
   231
lemma sprod_map_ID: "sprod_map\<cdot>ID\<cdot>ID = ID"
40002
c5b5f7a3a3b1 new theorem names: fun_below_iff, fun_belowI, cfun_eq_iff, cfun_eqI, cfun_below_iff, cfun_belowI
huffman
parents: 39987
diff changeset
   232
unfolding sprod_map_def by (simp add: cfun_eq_iff eta_cfun)
33808
31169fdc5ae7 add map_ID lemmas
huffman
parents: 33587
diff changeset
   233
33587
54f98d225163 add map_map lemmas
huffman
parents: 33504
diff changeset
   234
lemma sprod_map_map:
54f98d225163 add map_map lemmas
huffman
parents: 33504
diff changeset
   235
  "\<lbrakk>f1\<cdot>\<bottom> = \<bottom>; g1\<cdot>\<bottom> = \<bottom>\<rbrakk> \<Longrightarrow>
54f98d225163 add map_map lemmas
huffman
parents: 33504
diff changeset
   236
    sprod_map\<cdot>f1\<cdot>g1\<cdot>(sprod_map\<cdot>f2\<cdot>g2\<cdot>p) =
54f98d225163 add map_map lemmas
huffman
parents: 33504
diff changeset
   237
     sprod_map\<cdot>(\<Lambda> x. f1\<cdot>(f2\<cdot>x))\<cdot>(\<Lambda> x. g1\<cdot>(g2\<cdot>x))\<cdot>p"
54f98d225163 add map_map lemmas
huffman
parents: 33504
diff changeset
   238
apply (induct p, simp)
54f98d225163 add map_map lemmas
huffman
parents: 33504
diff changeset
   239
apply (case_tac "f2\<cdot>x = \<bottom>", simp)
54f98d225163 add map_map lemmas
huffman
parents: 33504
diff changeset
   240
apply (case_tac "g2\<cdot>y = \<bottom>", simp)
54f98d225163 add map_map lemmas
huffman
parents: 33504
diff changeset
   241
apply simp
54f98d225163 add map_map lemmas
huffman
parents: 33504
diff changeset
   242
done
54f98d225163 add map_map lemmas
huffman
parents: 33504
diff changeset
   243
33504
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   244
lemma ep_pair_sprod_map:
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   245
  assumes "ep_pair e1 p1" and "ep_pair e2 p2"
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   246
  shows "ep_pair (sprod_map\<cdot>e1\<cdot>e2) (sprod_map\<cdot>p1\<cdot>p2)"
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   247
proof
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   248
  interpret e1p1: pcpo_ep_pair e1 p1 unfolding pcpo_ep_pair_def by fact
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   249
  interpret e2p2: pcpo_ep_pair e2 p2 unfolding pcpo_ep_pair_def by fact
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   250
  fix x show "sprod_map\<cdot>p1\<cdot>p2\<cdot>(sprod_map\<cdot>e1\<cdot>e2\<cdot>x) = x"
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   251
    by (induct x) simp_all
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   252
  fix y show "sprod_map\<cdot>e1\<cdot>e2\<cdot>(sprod_map\<cdot>p1\<cdot>p2\<cdot>y) \<sqsubseteq> y"
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   253
    apply (induct y, simp)
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   254
    apply (case_tac "p1\<cdot>x = \<bottom>", simp, case_tac "p2\<cdot>y = \<bottom>", simp)
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   255
    apply (simp add: monofun_cfun e1p1.e_p_below e2p2.e_p_below)
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   256
    done
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   257
qed
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   258
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   259
lemma deflation_sprod_map:
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   260
  assumes "deflation d1" and "deflation d2"
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   261
  shows "deflation (sprod_map\<cdot>d1\<cdot>d2)"
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   262
proof
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   263
  interpret d1: deflation d1 by fact
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   264
  interpret d2: deflation d2 by fact
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   265
  fix x
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   266
  show "sprod_map\<cdot>d1\<cdot>d2\<cdot>(sprod_map\<cdot>d1\<cdot>d2\<cdot>x) = sprod_map\<cdot>d1\<cdot>d2\<cdot>x"
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   267
    apply (induct x, simp)
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   268
    apply (case_tac "d1\<cdot>x = \<bottom>", simp, case_tac "d2\<cdot>y = \<bottom>", simp)
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   269
    apply (simp add: d1.idem d2.idem)
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   270
    done
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   271
  show "sprod_map\<cdot>d1\<cdot>d2\<cdot>x \<sqsubseteq> x"
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   272
    apply (induct x, simp)
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   273
    apply (simp add: monofun_cfun d1.below d2.below)
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   274
    done
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   275
qed
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   276
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   277
lemma finite_deflation_sprod_map:
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   278
  assumes "finite_deflation d1" and "finite_deflation d2"
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   279
  shows "finite_deflation (sprod_map\<cdot>d1\<cdot>d2)"
39973
c62b4ff97bfc add lemma finite_deflation_intro
Brian Huffman <brianh@cs.pdx.edu>
parents: 36452
diff changeset
   280
proof (rule finite_deflation_intro)
33504
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   281
  interpret d1: finite_deflation d1 by fact
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   282
  interpret d2: finite_deflation d2 by fact
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   283
  have "deflation d1" and "deflation d2" by fact+
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   284
  thus "deflation (sprod_map\<cdot>d1\<cdot>d2)" by (rule deflation_sprod_map)
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   285
  have "{x. sprod_map\<cdot>d1\<cdot>d2\<cdot>x = x} \<subseteq> insert \<bottom>
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   286
        ((\<lambda>(x, y). (:x, y:)) ` ({x. d1\<cdot>x = x} \<times> {y. d2\<cdot>y = y}))"
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   287
    by (rule subsetI, case_tac x, auto simp add: spair_eq_iff)
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   288
  thus "finite {x. sprod_map\<cdot>d1\<cdot>d2\<cdot>x = x}"
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   289
    by (rule finite_subset, simp add: d1.finite_fixes d2.finite_fixes)
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   290
qed
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   291
26962
c8b20f615d6c use new class package for classes profinite, bifinite; remove approx class
huffman
parents: 25914
diff changeset
   292
end