src/HOLCF/Ssum.thy
author huffman
Wed, 06 Oct 2010 10:49:27 -0700
changeset 39974 b525988432e9
parent 39973 c62b4ff97bfc
child 39986 38677db30cad
permissions -rw-r--r--
major reorganization/simplification of HOLCF type classes: removed profinite/bifinite classes and approx function; universal domain uses approx_chain locale instead of bifinite class; ideal_completion locale does not use 'take' functions, requires countable basis instead; replaced type 'udom alg_defl' with type 'sfp'; replaced class 'rep' with class 'sfp'; renamed REP('a) to SFP('a);
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
15600
a59f07556a8d fixed filename in header
huffman
parents: 15593
diff changeset
     1
(*  Title:      HOLCF/Ssum.thy
16060
833be7f71ecd Simplified version of strict sum theory, using TypedefPcpo
huffman
parents: 15606
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 sums *}
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 Ssum
31115
7d6416f0d1e0 use Pair/fst/snd instead of cpair/cfst/csnd
huffman
parents: 31076
diff changeset
     8
imports Tr
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
16083
fca38c55c8fa added defaultsort declaration, moved cpair_less to Cprod.thy
huffman
parents: 16070
diff changeset
    12
15593
24d770bbc44a reordered and arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
    13
subsection {* Definition of strict sum type *}
24d770bbc44a reordered and arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
    14
35525
fa231b86cb1e proper names for types cfun, sprod, ssum
huffman
parents: 35491
diff changeset
    15
pcpodef (Ssum)  ('a, 'b) ssum (infixr "++" 10) = 
25740
de65baf89106 changed type definition to make Iwhen and reasoning about chains unnecessary;
huffman
parents: 25131
diff changeset
    16
  "{p :: tr \<times> ('a \<times> 'b).
31115
7d6416f0d1e0 use Pair/fst/snd instead of cpair/cfst/csnd
huffman
parents: 31076
diff changeset
    17
    (fst p \<sqsubseteq> TT \<longleftrightarrow> snd (snd p) = \<bottom>) \<and>
7d6416f0d1e0 use Pair/fst/snd instead of cpair/cfst/csnd
huffman
parents: 31076
diff changeset
    18
    (fst p \<sqsubseteq> FF \<longleftrightarrow> fst (snd p) = \<bottom>)}"
29063
7619f0561cd7 pcpodef package: state two goals, instead of encoded conjunction;
wenzelm
parents: 27310
diff changeset
    19
by simp_all
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    20
35525
fa231b86cb1e proper names for types cfun, sprod, ssum
huffman
parents: 35491
diff changeset
    21
instance ssum :: ("{finite_po,pcpo}", "{finite_po,pcpo}") finite_po
25827
c2adeb1bae5c new instance proofs for classes finite_po, chfin, flat
huffman
parents: 25756
diff changeset
    22
by (rule typedef_finite_po [OF type_definition_Ssum])
c2adeb1bae5c new instance proofs for classes finite_po, chfin, flat
huffman
parents: 25756
diff changeset
    23
35525
fa231b86cb1e proper names for types cfun, sprod, ssum
huffman
parents: 35491
diff changeset
    24
instance ssum :: ("{chfin,pcpo}", "{chfin,pcpo}") chfin
31076
99fe356cbbc2 rename constant sq_le to below; rename class sq_ord to below; less->below in many lemma names
huffman
parents: 29530
diff changeset
    25
by (rule typedef_chfin [OF type_definition_Ssum below_Ssum_def])
25827
c2adeb1bae5c new instance proofs for classes finite_po, chfin, flat
huffman
parents: 25756
diff changeset
    26
35427
ad039d29e01c proper (type_)notation;
wenzelm
parents: 33808
diff changeset
    27
type_notation (xsymbols)
35547
991a6af75978 merged, resolving some basic conflicts;
wenzelm
parents: 35525 35427
diff changeset
    28
  ssum  ("(_ \<oplus>/ _)" [21, 20] 20)
35427
ad039d29e01c proper (type_)notation;
wenzelm
parents: 33808
diff changeset
    29
type_notation (HTML output)
35547
991a6af75978 merged, resolving some basic conflicts;
wenzelm
parents: 35525 35427
diff changeset
    30
  ssum  ("(_ \<oplus>/ _)" [21, 20] 20)
991a6af75978 merged, resolving some basic conflicts;
wenzelm
parents: 35525 35427
diff changeset
    31
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    32
16060
833be7f71ecd Simplified version of strict sum theory, using TypedefPcpo
huffman
parents: 15606
diff changeset
    33
subsection {* Definitions of constructors *}
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    34
25131
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 19440
diff changeset
    35
definition
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 19440
diff changeset
    36
  sinl :: "'a \<rightarrow> ('a ++ 'b)" where
31115
7d6416f0d1e0 use Pair/fst/snd instead of cpair/cfst/csnd
huffman
parents: 31076
diff changeset
    37
  "sinl = (\<Lambda> a. Abs_Ssum (strictify\<cdot>(\<Lambda> _. TT)\<cdot>a, a, \<bottom>))"
16060
833be7f71ecd Simplified version of strict sum theory, using TypedefPcpo
huffman
parents: 15606
diff changeset
    38
25131
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 19440
diff changeset
    39
definition
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 19440
diff changeset
    40
  sinr :: "'b \<rightarrow> ('a ++ 'b)" where
31115
7d6416f0d1e0 use Pair/fst/snd instead of cpair/cfst/csnd
huffman
parents: 31076
diff changeset
    41
  "sinr = (\<Lambda> b. Abs_Ssum (strictify\<cdot>(\<Lambda> _. FF)\<cdot>b, \<bottom>, b))"
25740
de65baf89106 changed type definition to make Iwhen and reasoning about chains unnecessary;
huffman
parents: 25131
diff changeset
    42
31115
7d6416f0d1e0 use Pair/fst/snd instead of cpair/cfst/csnd
huffman
parents: 31076
diff changeset
    43
lemma sinl_Ssum: "(strictify\<cdot>(\<Lambda> _. TT)\<cdot>a, a, \<bottom>) \<in> Ssum"
25740
de65baf89106 changed type definition to make Iwhen and reasoning about chains unnecessary;
huffman
parents: 25131
diff changeset
    44
by (simp add: Ssum_def strictify_conv_if)
de65baf89106 changed type definition to make Iwhen and reasoning about chains unnecessary;
huffman
parents: 25131
diff changeset
    45
31115
7d6416f0d1e0 use Pair/fst/snd instead of cpair/cfst/csnd
huffman
parents: 31076
diff changeset
    46
lemma sinr_Ssum: "(strictify\<cdot>(\<Lambda> _. FF)\<cdot>b, \<bottom>, b) \<in> Ssum"
25740
de65baf89106 changed type definition to make Iwhen and reasoning about chains unnecessary;
huffman
parents: 25131
diff changeset
    47
by (simp add: Ssum_def strictify_conv_if)
de65baf89106 changed type definition to make Iwhen and reasoning about chains unnecessary;
huffman
parents: 25131
diff changeset
    48
31115
7d6416f0d1e0 use Pair/fst/snd instead of cpair/cfst/csnd
huffman
parents: 31076
diff changeset
    49
lemma sinl_Abs_Ssum: "sinl\<cdot>a = Abs_Ssum (strictify\<cdot>(\<Lambda> _. TT)\<cdot>a, a, \<bottom>)"
25740
de65baf89106 changed type definition to make Iwhen and reasoning about chains unnecessary;
huffman
parents: 25131
diff changeset
    50
by (unfold sinl_def, simp add: cont_Abs_Ssum sinl_Ssum)
de65baf89106 changed type definition to make Iwhen and reasoning about chains unnecessary;
huffman
parents: 25131
diff changeset
    51
31115
7d6416f0d1e0 use Pair/fst/snd instead of cpair/cfst/csnd
huffman
parents: 31076
diff changeset
    52
lemma sinr_Abs_Ssum: "sinr\<cdot>b = Abs_Ssum (strictify\<cdot>(\<Lambda> _. FF)\<cdot>b, \<bottom>, b)"
25740
de65baf89106 changed type definition to make Iwhen and reasoning about chains unnecessary;
huffman
parents: 25131
diff changeset
    53
by (unfold sinr_def, simp add: cont_Abs_Ssum sinr_Ssum)
de65baf89106 changed type definition to make Iwhen and reasoning about chains unnecessary;
huffman
parents: 25131
diff changeset
    54
31115
7d6416f0d1e0 use Pair/fst/snd instead of cpair/cfst/csnd
huffman
parents: 31076
diff changeset
    55
lemma Rep_Ssum_sinl: "Rep_Ssum (sinl\<cdot>a) = (strictify\<cdot>(\<Lambda> _. TT)\<cdot>a, a, \<bottom>)"
25740
de65baf89106 changed type definition to make Iwhen and reasoning about chains unnecessary;
huffman
parents: 25131
diff changeset
    56
by (simp add: sinl_Abs_Ssum Abs_Ssum_inverse sinl_Ssum)
de65baf89106 changed type definition to make Iwhen and reasoning about chains unnecessary;
huffman
parents: 25131
diff changeset
    57
31115
7d6416f0d1e0 use Pair/fst/snd instead of cpair/cfst/csnd
huffman
parents: 31076
diff changeset
    58
lemma Rep_Ssum_sinr: "Rep_Ssum (sinr\<cdot>b) = (strictify\<cdot>(\<Lambda> _. FF)\<cdot>b, \<bottom>, b)"
25740
de65baf89106 changed type definition to make Iwhen and reasoning about chains unnecessary;
huffman
parents: 25131
diff changeset
    59
by (simp add: sinr_Abs_Ssum Abs_Ssum_inverse sinr_Ssum)
16060
833be7f71ecd Simplified version of strict sum theory, using TypedefPcpo
huffman
parents: 15606
diff changeset
    60
35900
aa5dfb03eb1e remove LaTeX hyperref warnings by avoiding antiquotations within section headings
huffman
parents: 35783
diff changeset
    61
subsection {* Properties of \emph{sinl} and \emph{sinr} *}
16060
833be7f71ecd Simplified version of strict sum theory, using TypedefPcpo
huffman
parents: 15606
diff changeset
    62
25740
de65baf89106 changed type definition to make Iwhen and reasoning about chains unnecessary;
huffman
parents: 25131
diff changeset
    63
text {* Ordering *}
de65baf89106 changed type definition to make Iwhen and reasoning about chains unnecessary;
huffman
parents: 25131
diff changeset
    64
31076
99fe356cbbc2 rename constant sq_le to below; rename class sq_ord to below; less->below in many lemma names
huffman
parents: 29530
diff changeset
    65
lemma sinl_below [simp]: "(sinl\<cdot>x \<sqsubseteq> sinl\<cdot>y) = (x \<sqsubseteq> y)"
99fe356cbbc2 rename constant sq_le to below; rename class sq_ord to below; less->below in many lemma names
huffman
parents: 29530
diff changeset
    66
by (simp add: below_Ssum_def Rep_Ssum_sinl strictify_conv_if)
25740
de65baf89106 changed type definition to make Iwhen and reasoning about chains unnecessary;
huffman
parents: 25131
diff changeset
    67
31076
99fe356cbbc2 rename constant sq_le to below; rename class sq_ord to below; less->below in many lemma names
huffman
parents: 29530
diff changeset
    68
lemma sinr_below [simp]: "(sinr\<cdot>x \<sqsubseteq> sinr\<cdot>y) = (x \<sqsubseteq> y)"
99fe356cbbc2 rename constant sq_le to below; rename class sq_ord to below; less->below in many lemma names
huffman
parents: 29530
diff changeset
    69
by (simp add: below_Ssum_def Rep_Ssum_sinr strictify_conv_if)
25740
de65baf89106 changed type definition to make Iwhen and reasoning about chains unnecessary;
huffman
parents: 25131
diff changeset
    70
31076
99fe356cbbc2 rename constant sq_le to below; rename class sq_ord to below; less->below in many lemma names
huffman
parents: 29530
diff changeset
    71
lemma sinl_below_sinr [simp]: "(sinl\<cdot>x \<sqsubseteq> sinr\<cdot>y) = (x = \<bottom>)"
99fe356cbbc2 rename constant sq_le to below; rename class sq_ord to below; less->below in many lemma names
huffman
parents: 29530
diff changeset
    72
by (simp add: below_Ssum_def Rep_Ssum_sinl Rep_Ssum_sinr strictify_conv_if)
25740
de65baf89106 changed type definition to make Iwhen and reasoning about chains unnecessary;
huffman
parents: 25131
diff changeset
    73
31076
99fe356cbbc2 rename constant sq_le to below; rename class sq_ord to below; less->below in many lemma names
huffman
parents: 29530
diff changeset
    74
lemma sinr_below_sinl [simp]: "(sinr\<cdot>x \<sqsubseteq> sinl\<cdot>y) = (x = \<bottom>)"
99fe356cbbc2 rename constant sq_le to below; rename class sq_ord to below; less->below in many lemma names
huffman
parents: 29530
diff changeset
    75
by (simp add: below_Ssum_def Rep_Ssum_sinl Rep_Ssum_sinr strictify_conv_if)
25740
de65baf89106 changed type definition to make Iwhen and reasoning about chains unnecessary;
huffman
parents: 25131
diff changeset
    76
de65baf89106 changed type definition to make Iwhen and reasoning about chains unnecessary;
huffman
parents: 25131
diff changeset
    77
text {* Equality *}
de65baf89106 changed type definition to make Iwhen and reasoning about chains unnecessary;
huffman
parents: 25131
diff changeset
    78
de65baf89106 changed type definition to make Iwhen and reasoning about chains unnecessary;
huffman
parents: 25131
diff changeset
    79
lemma sinl_eq [simp]: "(sinl\<cdot>x = sinl\<cdot>y) = (x = y)"
de65baf89106 changed type definition to make Iwhen and reasoning about chains unnecessary;
huffman
parents: 25131
diff changeset
    80
by (simp add: po_eq_conv)
de65baf89106 changed type definition to make Iwhen and reasoning about chains unnecessary;
huffman
parents: 25131
diff changeset
    81
de65baf89106 changed type definition to make Iwhen and reasoning about chains unnecessary;
huffman
parents: 25131
diff changeset
    82
lemma sinr_eq [simp]: "(sinr\<cdot>x = sinr\<cdot>y) = (x = y)"
de65baf89106 changed type definition to make Iwhen and reasoning about chains unnecessary;
huffman
parents: 25131
diff changeset
    83
by (simp add: po_eq_conv)
de65baf89106 changed type definition to make Iwhen and reasoning about chains unnecessary;
huffman
parents: 25131
diff changeset
    84
de65baf89106 changed type definition to make Iwhen and reasoning about chains unnecessary;
huffman
parents: 25131
diff changeset
    85
lemma sinl_eq_sinr [simp]: "(sinl\<cdot>x = sinr\<cdot>y) = (x = \<bottom> \<and> y = \<bottom>)"
de65baf89106 changed type definition to make Iwhen and reasoning about chains unnecessary;
huffman
parents: 25131
diff changeset
    86
by (subst po_eq_conv, simp)
de65baf89106 changed type definition to make Iwhen and reasoning about chains unnecessary;
huffman
parents: 25131
diff changeset
    87
de65baf89106 changed type definition to make Iwhen and reasoning about chains unnecessary;
huffman
parents: 25131
diff changeset
    88
lemma sinr_eq_sinl [simp]: "(sinr\<cdot>x = sinl\<cdot>y) = (x = \<bottom> \<and> y = \<bottom>)"
de65baf89106 changed type definition to make Iwhen and reasoning about chains unnecessary;
huffman
parents: 25131
diff changeset
    89
by (subst po_eq_conv, simp)
de65baf89106 changed type definition to make Iwhen and reasoning about chains unnecessary;
huffman
parents: 25131
diff changeset
    90
de65baf89106 changed type definition to make Iwhen and reasoning about chains unnecessary;
huffman
parents: 25131
diff changeset
    91
lemma sinl_inject: "sinl\<cdot>x = sinl\<cdot>y \<Longrightarrow> x = y"
de65baf89106 changed type definition to make Iwhen and reasoning about chains unnecessary;
huffman
parents: 25131
diff changeset
    92
by (rule sinl_eq [THEN iffD1])
de65baf89106 changed type definition to make Iwhen and reasoning about chains unnecessary;
huffman
parents: 25131
diff changeset
    93
de65baf89106 changed type definition to make Iwhen and reasoning about chains unnecessary;
huffman
parents: 25131
diff changeset
    94
lemma sinr_inject: "sinr\<cdot>x = sinr\<cdot>y \<Longrightarrow> x = y"
de65baf89106 changed type definition to make Iwhen and reasoning about chains unnecessary;
huffman
parents: 25131
diff changeset
    95
by (rule sinr_eq [THEN iffD1])
de65baf89106 changed type definition to make Iwhen and reasoning about chains unnecessary;
huffman
parents: 25131
diff changeset
    96
de65baf89106 changed type definition to make Iwhen and reasoning about chains unnecessary;
huffman
parents: 25131
diff changeset
    97
text {* Strictness *}
17837
2922be3544f8 added compactness lemmas; cleaned up
huffman
parents: 17817
diff changeset
    98
16211
faa9691da2bc changed to use new contI; renamed strict, defined, and inject lemmas
huffman
parents: 16083
diff changeset
    99
lemma sinl_strict [simp]: "sinl\<cdot>\<bottom> = \<bottom>"
25915
f1bce5261dec add instance for class bifinite
huffman
parents: 25882
diff changeset
   100
by (simp add: sinl_Abs_Ssum Abs_Ssum_strict)
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   101
16211
faa9691da2bc changed to use new contI; renamed strict, defined, and inject lemmas
huffman
parents: 16083
diff changeset
   102
lemma sinr_strict [simp]: "sinr\<cdot>\<bottom> = \<bottom>"
25915
f1bce5261dec add instance for class bifinite
huffman
parents: 25882
diff changeset
   103
by (simp add: sinr_Abs_Ssum Abs_Ssum_strict)
16060
833be7f71ecd Simplified version of strict sum theory, using TypedefPcpo
huffman
parents: 15606
diff changeset
   104
16752
270ec60cc9e8 added lemmas sinl_defined_iff sinr_defined_iff, sinl_eq_sinr, sinr_eq_sinl; added more simp rules; cleaned up
huffman
parents: 16742
diff changeset
   105
lemma sinl_defined_iff [simp]: "(sinl\<cdot>x = \<bottom>) = (x = \<bottom>)"
17837
2922be3544f8 added compactness lemmas; cleaned up
huffman
parents: 17817
diff changeset
   106
by (cut_tac sinl_eq [of "x" "\<bottom>"], simp)
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   107
16752
270ec60cc9e8 added lemmas sinl_defined_iff sinr_defined_iff, sinl_eq_sinr, sinr_eq_sinl; added more simp rules; cleaned up
huffman
parents: 16742
diff changeset
   108
lemma sinr_defined_iff [simp]: "(sinr\<cdot>x = \<bottom>) = (x = \<bottom>)"
17837
2922be3544f8 added compactness lemmas; cleaned up
huffman
parents: 17817
diff changeset
   109
by (cut_tac sinr_eq [of "x" "\<bottom>"], simp)
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   110
16752
270ec60cc9e8 added lemmas sinl_defined_iff sinr_defined_iff, sinl_eq_sinr, sinr_eq_sinl; added more simp rules; cleaned up
huffman
parents: 16742
diff changeset
   111
lemma sinl_defined [intro!]: "x \<noteq> \<bottom> \<Longrightarrow> sinl\<cdot>x \<noteq> \<bottom>"
270ec60cc9e8 added lemmas sinl_defined_iff sinr_defined_iff, sinl_eq_sinr, sinr_eq_sinl; added more simp rules; cleaned up
huffman
parents: 16742
diff changeset
   112
by simp
270ec60cc9e8 added lemmas sinl_defined_iff sinr_defined_iff, sinl_eq_sinr, sinr_eq_sinl; added more simp rules; cleaned up
huffman
parents: 16742
diff changeset
   113
270ec60cc9e8 added lemmas sinl_defined_iff sinr_defined_iff, sinl_eq_sinr, sinr_eq_sinl; added more simp rules; cleaned up
huffman
parents: 16742
diff changeset
   114
lemma sinr_defined [intro!]: "x \<noteq> \<bottom> \<Longrightarrow> sinr\<cdot>x \<noteq> \<bottom>"
270ec60cc9e8 added lemmas sinl_defined_iff sinr_defined_iff, sinl_eq_sinr, sinr_eq_sinl; added more simp rules; cleaned up
huffman
parents: 16742
diff changeset
   115
by simp
270ec60cc9e8 added lemmas sinl_defined_iff sinr_defined_iff, sinl_eq_sinr, sinr_eq_sinl; added more simp rules; cleaned up
huffman
parents: 16742
diff changeset
   116
25882
c58e380d9f7d new compactness lemmas; removed duplicated flat_less_iff
huffman
parents: 25827
diff changeset
   117
text {* Compactness *}
c58e380d9f7d new compactness lemmas; removed duplicated flat_less_iff
huffman
parents: 25827
diff changeset
   118
c58e380d9f7d new compactness lemmas; removed duplicated flat_less_iff
huffman
parents: 25827
diff changeset
   119
lemma compact_sinl: "compact x \<Longrightarrow> compact (sinl\<cdot>x)"
c58e380d9f7d new compactness lemmas; removed duplicated flat_less_iff
huffman
parents: 25827
diff changeset
   120
by (rule compact_Ssum, simp add: Rep_Ssum_sinl strictify_conv_if)
c58e380d9f7d new compactness lemmas; removed duplicated flat_less_iff
huffman
parents: 25827
diff changeset
   121
c58e380d9f7d new compactness lemmas; removed duplicated flat_less_iff
huffman
parents: 25827
diff changeset
   122
lemma compact_sinr: "compact x \<Longrightarrow> compact (sinr\<cdot>x)"
c58e380d9f7d new compactness lemmas; removed duplicated flat_less_iff
huffman
parents: 25827
diff changeset
   123
by (rule compact_Ssum, simp add: Rep_Ssum_sinr strictify_conv_if)
c58e380d9f7d new compactness lemmas; removed duplicated flat_less_iff
huffman
parents: 25827
diff changeset
   124
c58e380d9f7d new compactness lemmas; removed duplicated flat_less_iff
huffman
parents: 25827
diff changeset
   125
lemma compact_sinlD: "compact (sinl\<cdot>x) \<Longrightarrow> compact x"
c58e380d9f7d new compactness lemmas; removed duplicated flat_less_iff
huffman
parents: 25827
diff changeset
   126
unfolding compact_def
c58e380d9f7d new compactness lemmas; removed duplicated flat_less_iff
huffman
parents: 25827
diff changeset
   127
by (drule adm_subst [OF cont_Rep_CFun2 [where f=sinl]], simp)
c58e380d9f7d new compactness lemmas; removed duplicated flat_less_iff
huffman
parents: 25827
diff changeset
   128
c58e380d9f7d new compactness lemmas; removed duplicated flat_less_iff
huffman
parents: 25827
diff changeset
   129
lemma compact_sinrD: "compact (sinr\<cdot>x) \<Longrightarrow> compact x"
c58e380d9f7d new compactness lemmas; removed duplicated flat_less_iff
huffman
parents: 25827
diff changeset
   130
unfolding compact_def
c58e380d9f7d new compactness lemmas; removed duplicated flat_less_iff
huffman
parents: 25827
diff changeset
   131
by (drule adm_subst [OF cont_Rep_CFun2 [where f=sinr]], simp)
c58e380d9f7d new compactness lemmas; removed duplicated flat_less_iff
huffman
parents: 25827
diff changeset
   132
c58e380d9f7d new compactness lemmas; removed duplicated flat_less_iff
huffman
parents: 25827
diff changeset
   133
lemma compact_sinl_iff [simp]: "compact (sinl\<cdot>x) = compact x"
c58e380d9f7d new compactness lemmas; removed duplicated flat_less_iff
huffman
parents: 25827
diff changeset
   134
by (safe elim!: compact_sinl compact_sinlD)
c58e380d9f7d new compactness lemmas; removed duplicated flat_less_iff
huffman
parents: 25827
diff changeset
   135
c58e380d9f7d new compactness lemmas; removed duplicated flat_less_iff
huffman
parents: 25827
diff changeset
   136
lemma compact_sinr_iff [simp]: "compact (sinr\<cdot>x) = compact x"
c58e380d9f7d new compactness lemmas; removed duplicated flat_less_iff
huffman
parents: 25827
diff changeset
   137
by (safe elim!: compact_sinr compact_sinrD)
c58e380d9f7d new compactness lemmas; removed duplicated flat_less_iff
huffman
parents: 25827
diff changeset
   138
16060
833be7f71ecd Simplified version of strict sum theory, using TypedefPcpo
huffman
parents: 15606
diff changeset
   139
subsection {* Case analysis *}
833be7f71ecd Simplified version of strict sum theory, using TypedefPcpo
huffman
parents: 15606
diff changeset
   140
16921
16094ed8ac6b renamed Exh_Ssum1 to Exh_Ssum; cleaned up
huffman
parents: 16823
diff changeset
   141
lemma Exh_Ssum: 
16060
833be7f71ecd Simplified version of strict sum theory, using TypedefPcpo
huffman
parents: 15606
diff changeset
   142
  "z = \<bottom> \<or> (\<exists>a. z = sinl\<cdot>a \<and> a \<noteq> \<bottom>) \<or> (\<exists>b. z = sinr\<cdot>b \<and> b \<noteq> \<bottom>)"
31115
7d6416f0d1e0 use Pair/fst/snd instead of cpair/cfst/csnd
huffman
parents: 31076
diff changeset
   143
apply (induct z rule: Abs_Ssum_induct)
7d6416f0d1e0 use Pair/fst/snd instead of cpair/cfst/csnd
huffman
parents: 31076
diff changeset
   144
apply (case_tac y, rename_tac t a b)
7d6416f0d1e0 use Pair/fst/snd instead of cpair/cfst/csnd
huffman
parents: 31076
diff changeset
   145
apply (case_tac t rule: trE)
25740
de65baf89106 changed type definition to make Iwhen and reasoning about chains unnecessary;
huffman
parents: 25131
diff changeset
   146
apply (rule disjI1)
31115
7d6416f0d1e0 use Pair/fst/snd instead of cpair/cfst/csnd
huffman
parents: 31076
diff changeset
   147
apply (simp add: Ssum_def Abs_Ssum_strict)
25740
de65baf89106 changed type definition to make Iwhen and reasoning about chains unnecessary;
huffman
parents: 25131
diff changeset
   148
apply (rule disjI2, rule disjI1, rule_tac x=a in exI)
de65baf89106 changed type definition to make Iwhen and reasoning about chains unnecessary;
huffman
parents: 25131
diff changeset
   149
apply (simp add: sinl_Abs_Ssum Ssum_def)
de65baf89106 changed type definition to make Iwhen and reasoning about chains unnecessary;
huffman
parents: 25131
diff changeset
   150
apply (rule disjI2, rule disjI2, rule_tac x=b in exI)
de65baf89106 changed type definition to make Iwhen and reasoning about chains unnecessary;
huffman
parents: 25131
diff changeset
   151
apply (simp add: sinr_Abs_Ssum Ssum_def)
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   152
done
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   153
35783
38538bfe9ca6 declare case_names for various induction rules
huffman
parents: 35547
diff changeset
   154
lemma ssumE [case_names bottom sinl sinr, cases type: ssum]:
16060
833be7f71ecd Simplified version of strict sum theory, using TypedefPcpo
huffman
parents: 15606
diff changeset
   155
  "\<lbrakk>p = \<bottom> \<Longrightarrow> Q;
833be7f71ecd Simplified version of strict sum theory, using TypedefPcpo
huffman
parents: 15606
diff changeset
   156
   \<And>x. \<lbrakk>p = sinl\<cdot>x; x \<noteq> \<bottom>\<rbrakk> \<Longrightarrow> Q;
833be7f71ecd Simplified version of strict sum theory, using TypedefPcpo
huffman
parents: 15606
diff changeset
   157
   \<And>y. \<lbrakk>p = sinr\<cdot>y; y \<noteq> \<bottom>\<rbrakk> \<Longrightarrow> Q\<rbrakk> \<Longrightarrow> Q"
35783
38538bfe9ca6 declare case_names for various induction rules
huffman
parents: 35547
diff changeset
   158
using Exh_Ssum [of p] by auto
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   159
35783
38538bfe9ca6 declare case_names for various induction rules
huffman
parents: 35547
diff changeset
   160
lemma ssum_induct [case_names bottom sinl sinr, induct type: ssum]:
25756
86d4930373a1 add induction rule ssum_induct
huffman
parents: 25740
diff changeset
   161
  "\<lbrakk>P \<bottom>;
86d4930373a1 add induction rule ssum_induct
huffman
parents: 25740
diff changeset
   162
   \<And>x. x \<noteq> \<bottom> \<Longrightarrow> P (sinl\<cdot>x);
86d4930373a1 add induction rule ssum_induct
huffman
parents: 25740
diff changeset
   163
   \<And>y. y \<noteq> \<bottom> \<Longrightarrow> P (sinr\<cdot>y)\<rbrakk> \<Longrightarrow> P x"
86d4930373a1 add induction rule ssum_induct
huffman
parents: 25740
diff changeset
   164
by (cases x, simp_all)
86d4930373a1 add induction rule ssum_induct
huffman
parents: 25740
diff changeset
   165
35783
38538bfe9ca6 declare case_names for various induction rules
huffman
parents: 35547
diff changeset
   166
lemma ssumE2 [case_names sinl sinr]:
16060
833be7f71ecd Simplified version of strict sum theory, using TypedefPcpo
huffman
parents: 15606
diff changeset
   167
  "\<lbrakk>\<And>x. p = sinl\<cdot>x \<Longrightarrow> Q; \<And>y. p = sinr\<cdot>y \<Longrightarrow> Q\<rbrakk> \<Longrightarrow> Q"
25740
de65baf89106 changed type definition to make Iwhen and reasoning about chains unnecessary;
huffman
parents: 25131
diff changeset
   168
by (cases p, simp only: sinl_strict [symmetric], simp, simp)
16060
833be7f71ecd Simplified version of strict sum theory, using TypedefPcpo
huffman
parents: 15606
diff changeset
   169
31076
99fe356cbbc2 rename constant sq_le to below; rename class sq_ord to below; less->below in many lemma names
huffman
parents: 29530
diff changeset
   170
lemma below_sinlD: "p \<sqsubseteq> sinl\<cdot>x \<Longrightarrow> \<exists>y. p = sinl\<cdot>y \<and> y \<sqsubseteq> x"
25740
de65baf89106 changed type definition to make Iwhen and reasoning about chains unnecessary;
huffman
parents: 25131
diff changeset
   171
by (cases p, rule_tac x="\<bottom>" in exI, simp_all)
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   172
31076
99fe356cbbc2 rename constant sq_le to below; rename class sq_ord to below; less->below in many lemma names
huffman
parents: 29530
diff changeset
   173
lemma below_sinrD: "p \<sqsubseteq> sinr\<cdot>x \<Longrightarrow> \<exists>y. p = sinr\<cdot>y \<and> y \<sqsubseteq> x"
25740
de65baf89106 changed type definition to make Iwhen and reasoning about chains unnecessary;
huffman
parents: 25131
diff changeset
   174
by (cases p, rule_tac x="\<bottom>" in exI, simp_all)
16060
833be7f71ecd Simplified version of strict sum theory, using TypedefPcpo
huffman
parents: 15606
diff changeset
   175
25740
de65baf89106 changed type definition to make Iwhen and reasoning about chains unnecessary;
huffman
parents: 25131
diff changeset
   176
subsection {* Case analysis combinator *}
16060
833be7f71ecd Simplified version of strict sum theory, using TypedefPcpo
huffman
parents: 15606
diff changeset
   177
25131
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 19440
diff changeset
   178
definition
2c8caac48ade modernized specifications ('definition', 'abbreviation', 'notation');
wenzelm
parents: 19440
diff changeset
   179
  sscase :: "('a \<rightarrow> 'c) \<rightarrow> ('b \<rightarrow> 'c) \<rightarrow> ('a ++ 'b) \<rightarrow> 'c" where
31115
7d6416f0d1e0 use Pair/fst/snd instead of cpair/cfst/csnd
huffman
parents: 31076
diff changeset
   180
  "sscase = (\<Lambda> f g s. (\<lambda>(t, x, y). If t then f\<cdot>x else g\<cdot>y fi) (Rep_Ssum s))"
16060
833be7f71ecd Simplified version of strict sum theory, using TypedefPcpo
huffman
parents: 15606
diff changeset
   181
833be7f71ecd Simplified version of strict sum theory, using TypedefPcpo
huffman
parents: 15606
diff changeset
   182
translations
26046
1624b3304bb9 fix broken syntax translations
huffman
parents: 25915
diff changeset
   183
  "case s of XCONST sinl\<cdot>x \<Rightarrow> t1 | XCONST sinr\<cdot>y \<Rightarrow> t2" == "CONST sscase\<cdot>(\<Lambda> x. t1)\<cdot>(\<Lambda> y. t2)\<cdot>s"
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
   184
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
   185
translations
26046
1624b3304bb9 fix broken syntax translations
huffman
parents: 25915
diff changeset
   186
  "\<Lambda>(XCONST sinl\<cdot>x). t" == "CONST sscase\<cdot>(\<Lambda> x. t)\<cdot>\<bottom>"
1624b3304bb9 fix broken syntax translations
huffman
parents: 25915
diff changeset
   187
  "\<Lambda>(XCONST sinr\<cdot>y). t" == "CONST sscase\<cdot>\<bottom>\<cdot>(\<Lambda> y. t)"
16060
833be7f71ecd Simplified version of strict sum theory, using TypedefPcpo
huffman
parents: 15606
diff changeset
   188
25740
de65baf89106 changed type definition to make Iwhen and reasoning about chains unnecessary;
huffman
parents: 25131
diff changeset
   189
lemma beta_sscase:
31115
7d6416f0d1e0 use Pair/fst/snd instead of cpair/cfst/csnd
huffman
parents: 31076
diff changeset
   190
  "sscase\<cdot>f\<cdot>g\<cdot>s = (\<lambda>(t, x, y). If t then f\<cdot>x else g\<cdot>y fi) (Rep_Ssum s)"
7d6416f0d1e0 use Pair/fst/snd instead of cpair/cfst/csnd
huffman
parents: 31076
diff changeset
   191
unfolding sscase_def by (simp add: cont_Rep_Ssum [THEN cont_compose])
16060
833be7f71ecd Simplified version of strict sum theory, using TypedefPcpo
huffman
parents: 15606
diff changeset
   192
833be7f71ecd Simplified version of strict sum theory, using TypedefPcpo
huffman
parents: 15606
diff changeset
   193
lemma sscase1 [simp]: "sscase\<cdot>f\<cdot>g\<cdot>\<bottom> = \<bottom>"
25740
de65baf89106 changed type definition to make Iwhen and reasoning about chains unnecessary;
huffman
parents: 25131
diff changeset
   194
unfolding beta_sscase by (simp add: Rep_Ssum_strict)
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   195
16060
833be7f71ecd Simplified version of strict sum theory, using TypedefPcpo
huffman
parents: 15606
diff changeset
   196
lemma sscase2 [simp]: "x \<noteq> \<bottom> \<Longrightarrow> sscase\<cdot>f\<cdot>g\<cdot>(sinl\<cdot>x) = f\<cdot>x"
25740
de65baf89106 changed type definition to make Iwhen and reasoning about chains unnecessary;
huffman
parents: 25131
diff changeset
   197
unfolding beta_sscase by (simp add: Rep_Ssum_sinl)
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   198
16060
833be7f71ecd Simplified version of strict sum theory, using TypedefPcpo
huffman
parents: 15606
diff changeset
   199
lemma sscase3 [simp]: "y \<noteq> \<bottom> \<Longrightarrow> sscase\<cdot>f\<cdot>g\<cdot>(sinr\<cdot>y) = g\<cdot>y"
25740
de65baf89106 changed type definition to make Iwhen and reasoning about chains unnecessary;
huffman
parents: 25131
diff changeset
   200
unfolding beta_sscase by (simp add: Rep_Ssum_sinr)
15593
24d770bbc44a reordered and arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
   201
16060
833be7f71ecd Simplified version of strict sum theory, using TypedefPcpo
huffman
parents: 15606
diff changeset
   202
lemma sscase4 [simp]: "sscase\<cdot>sinl\<cdot>sinr\<cdot>z = z"
25756
86d4930373a1 add induction rule ssum_induct
huffman
parents: 25740
diff changeset
   203
by (cases z, simp_all)
15593
24d770bbc44a reordered and arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
   204
25827
c2adeb1bae5c new instance proofs for classes finite_po, chfin, flat
huffman
parents: 25756
diff changeset
   205
subsection {* Strict sum preserves flatness *}
c2adeb1bae5c new instance proofs for classes finite_po, chfin, flat
huffman
parents: 25756
diff changeset
   206
35525
fa231b86cb1e proper names for types cfun, sprod, ssum
huffman
parents: 35491
diff changeset
   207
instance ssum :: (flat, flat) flat
25827
c2adeb1bae5c new instance proofs for classes finite_po, chfin, flat
huffman
parents: 25756
diff changeset
   208
apply (intro_classes, clarify)
31115
7d6416f0d1e0 use Pair/fst/snd instead of cpair/cfst/csnd
huffman
parents: 31076
diff changeset
   209
apply (case_tac x, simp)
7d6416f0d1e0 use Pair/fst/snd instead of cpair/cfst/csnd
huffman
parents: 31076
diff changeset
   210
apply (case_tac y, simp_all add: flat_below_iff)
7d6416f0d1e0 use Pair/fst/snd instead of cpair/cfst/csnd
huffman
parents: 31076
diff changeset
   211
apply (case_tac y, simp_all add: flat_below_iff)
25827
c2adeb1bae5c new instance proofs for classes finite_po, chfin, flat
huffman
parents: 25756
diff changeset
   212
done
c2adeb1bae5c new instance proofs for classes finite_po, chfin, flat
huffman
parents: 25756
diff changeset
   213
33504
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   214
subsection {* Map function for strict sums *}
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   215
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   216
definition
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   217
  ssum_map :: "('a \<rightarrow> 'b) \<rightarrow> ('c \<rightarrow> 'd) \<rightarrow> 'a \<oplus> 'c \<rightarrow> 'b \<oplus> 'd"
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   218
where
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   219
  "ssum_map = (\<Lambda> f g. sscase\<cdot>(sinl oo f)\<cdot>(sinr oo g))"
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   220
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   221
lemma ssum_map_strict [simp]: "ssum_map\<cdot>f\<cdot>g\<cdot>\<bottom> = \<bottom>"
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   222
unfolding ssum_map_def by simp
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   223
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   224
lemma ssum_map_sinl [simp]: "x \<noteq> \<bottom> \<Longrightarrow> ssum_map\<cdot>f\<cdot>g\<cdot>(sinl\<cdot>x) = sinl\<cdot>(f\<cdot>x)"
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   225
unfolding ssum_map_def by simp
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   226
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   227
lemma ssum_map_sinr [simp]: "x \<noteq> \<bottom> \<Longrightarrow> ssum_map\<cdot>f\<cdot>g\<cdot>(sinr\<cdot>x) = sinr\<cdot>(g\<cdot>x)"
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   228
unfolding ssum_map_def by simp
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   229
35491
92e0028a46f2 add lemmas about ssum_map and sprod_map
huffman
parents: 33808
diff changeset
   230
lemma ssum_map_sinl': "f\<cdot>\<bottom> = \<bottom> \<Longrightarrow> ssum_map\<cdot>f\<cdot>g\<cdot>(sinl\<cdot>x) = sinl\<cdot>(f\<cdot>x)"
92e0028a46f2 add lemmas about ssum_map and sprod_map
huffman
parents: 33808
diff changeset
   231
by (cases "x = \<bottom>") simp_all
92e0028a46f2 add lemmas about ssum_map and sprod_map
huffman
parents: 33808
diff changeset
   232
92e0028a46f2 add lemmas about ssum_map and sprod_map
huffman
parents: 33808
diff changeset
   233
lemma ssum_map_sinr': "g\<cdot>\<bottom> = \<bottom> \<Longrightarrow> ssum_map\<cdot>f\<cdot>g\<cdot>(sinr\<cdot>x) = sinr\<cdot>(g\<cdot>x)"
92e0028a46f2 add lemmas about ssum_map and sprod_map
huffman
parents: 33808
diff changeset
   234
by (cases "x = \<bottom>") simp_all
92e0028a46f2 add lemmas about ssum_map and sprod_map
huffman
parents: 33808
diff changeset
   235
33808
31169fdc5ae7 add map_ID lemmas
huffman
parents: 33587
diff changeset
   236
lemma ssum_map_ID: "ssum_map\<cdot>ID\<cdot>ID = ID"
31169fdc5ae7 add map_ID lemmas
huffman
parents: 33587
diff changeset
   237
unfolding ssum_map_def by (simp add: expand_cfun_eq eta_cfun)
31169fdc5ae7 add map_ID lemmas
huffman
parents: 33587
diff changeset
   238
33587
54f98d225163 add map_map lemmas
huffman
parents: 33504
diff changeset
   239
lemma ssum_map_map:
54f98d225163 add map_map lemmas
huffman
parents: 33504
diff changeset
   240
  "\<lbrakk>f1\<cdot>\<bottom> = \<bottom>; g1\<cdot>\<bottom> = \<bottom>\<rbrakk> \<Longrightarrow>
54f98d225163 add map_map lemmas
huffman
parents: 33504
diff changeset
   241
    ssum_map\<cdot>f1\<cdot>g1\<cdot>(ssum_map\<cdot>f2\<cdot>g2\<cdot>p) =
54f98d225163 add map_map lemmas
huffman
parents: 33504
diff changeset
   242
     ssum_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
   243
apply (induct p, simp)
54f98d225163 add map_map lemmas
huffman
parents: 33504
diff changeset
   244
apply (case_tac "f2\<cdot>x = \<bottom>", simp, simp)
54f98d225163 add map_map lemmas
huffman
parents: 33504
diff changeset
   245
apply (case_tac "g2\<cdot>y = \<bottom>", simp, simp)
54f98d225163 add map_map lemmas
huffman
parents: 33504
diff changeset
   246
done
54f98d225163 add map_map lemmas
huffman
parents: 33504
diff changeset
   247
33504
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   248
lemma ep_pair_ssum_map:
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   249
  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
   250
  shows "ep_pair (ssum_map\<cdot>e1\<cdot>e2) (ssum_map\<cdot>p1\<cdot>p2)"
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   251
proof
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   252
  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
   253
  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
   254
  fix x show "ssum_map\<cdot>p1\<cdot>p2\<cdot>(ssum_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
   255
    by (induct x) simp_all
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   256
  fix y show "ssum_map\<cdot>e1\<cdot>e2\<cdot>(ssum_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
   257
    apply (induct y, simp)
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   258
    apply (case_tac "p1\<cdot>x = \<bottom>", simp, simp add: e1p1.e_p_below)
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   259
    apply (case_tac "p2\<cdot>y = \<bottom>", simp, simp add: e2p2.e_p_below)
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   260
    done
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   261
qed
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   262
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   263
lemma deflation_ssum_map:
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   264
  assumes "deflation d1" and "deflation d2"
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   265
  shows "deflation (ssum_map\<cdot>d1\<cdot>d2)"
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   266
proof
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   267
  interpret d1: deflation d1 by fact
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   268
  interpret d2: deflation d2 by fact
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   269
  fix x
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   270
  show "ssum_map\<cdot>d1\<cdot>d2\<cdot>(ssum_map\<cdot>d1\<cdot>d2\<cdot>x) = ssum_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
   271
    apply (induct x, simp)
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   272
    apply (case_tac "d1\<cdot>x = \<bottom>", simp, simp add: d1.idem)
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   273
    apply (case_tac "d2\<cdot>y = \<bottom>", simp, simp add: d2.idem)
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
  show "ssum_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
   276
    apply (induct x, simp)
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   277
    apply (case_tac "d1\<cdot>x = \<bottom>", simp, simp add: d1.below)
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   278
    apply (case_tac "d2\<cdot>y = \<bottom>", simp, simp add: d2.below)
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   279
    done
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   280
qed
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   281
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   282
lemma finite_deflation_ssum_map:
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   283
  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
   284
  shows "finite_deflation (ssum_map\<cdot>d1\<cdot>d2)"
39973
c62b4ff97bfc add lemma finite_deflation_intro
Brian Huffman <brianh@cs.pdx.edu>
parents: 36452
diff changeset
   285
proof (rule finite_deflation_intro)
33504
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   286
  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
   287
  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
   288
  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
   289
  thus "deflation (ssum_map\<cdot>d1\<cdot>d2)" by (rule deflation_ssum_map)
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   290
  have "{x. ssum_map\<cdot>d1\<cdot>d2\<cdot>x = x} \<subseteq>
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   291
        (\<lambda>x. sinl\<cdot>x) ` {x. d1\<cdot>x = x} \<union>
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   292
        (\<lambda>x. sinr\<cdot>x) ` {x. d2\<cdot>x = x} \<union> {\<bottom>}"
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   293
    by (rule subsetI, case_tac x, simp_all)
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   294
  thus "finite {x. ssum_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
   295
    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
   296
qed
b4210cc3ac97 map functions for various types, with ep_pair/deflation/finite_deflation lemmas
huffman
parents: 32960
diff changeset
   297
39974
b525988432e9 major reorganization/simplification of HOLCF type classes:
huffman
parents: 39973
diff changeset
   298
subsection {* Strict sum is an SFP domain *}
b525988432e9 major reorganization/simplification of HOLCF type classes:
huffman
parents: 39973
diff changeset
   299
b525988432e9 major reorganization/simplification of HOLCF type classes:
huffman
parents: 39973
diff changeset
   300
definition
b525988432e9 major reorganization/simplification of HOLCF type classes:
huffman
parents: 39973
diff changeset
   301
  ssum_approx :: "nat \<Rightarrow> udom \<oplus> udom \<rightarrow> udom \<oplus> udom"
b525988432e9 major reorganization/simplification of HOLCF type classes:
huffman
parents: 39973
diff changeset
   302
where
b525988432e9 major reorganization/simplification of HOLCF type classes:
huffman
parents: 39973
diff changeset
   303
  "ssum_approx = (\<lambda>i. ssum_map\<cdot>(udom_approx i)\<cdot>(udom_approx i))"
25915
f1bce5261dec add instance for class bifinite
huffman
parents: 25882
diff changeset
   304
39974
b525988432e9 major reorganization/simplification of HOLCF type classes:
huffman
parents: 39973
diff changeset
   305
lemma ssum_approx: "approx_chain ssum_approx"
b525988432e9 major reorganization/simplification of HOLCF type classes:
huffman
parents: 39973
diff changeset
   306
proof (rule approx_chain.intro)
b525988432e9 major reorganization/simplification of HOLCF type classes:
huffman
parents: 39973
diff changeset
   307
  show "chain (\<lambda>i. ssum_approx i)"
b525988432e9 major reorganization/simplification of HOLCF type classes:
huffman
parents: 39973
diff changeset
   308
    unfolding ssum_approx_def by simp
b525988432e9 major reorganization/simplification of HOLCF type classes:
huffman
parents: 39973
diff changeset
   309
  show "(\<Squnion>i. ssum_approx i) = ID"
b525988432e9 major reorganization/simplification of HOLCF type classes:
huffman
parents: 39973
diff changeset
   310
    unfolding ssum_approx_def
b525988432e9 major reorganization/simplification of HOLCF type classes:
huffman
parents: 39973
diff changeset
   311
    by (simp add: lub_distribs ssum_map_ID)
b525988432e9 major reorganization/simplification of HOLCF type classes:
huffman
parents: 39973
diff changeset
   312
  show "\<And>i. finite_deflation (ssum_approx i)"
b525988432e9 major reorganization/simplification of HOLCF type classes:
huffman
parents: 39973
diff changeset
   313
    unfolding ssum_approx_def
b525988432e9 major reorganization/simplification of HOLCF type classes:
huffman
parents: 39973
diff changeset
   314
    by (intro finite_deflation_ssum_map finite_deflation_udom_approx)
b525988432e9 major reorganization/simplification of HOLCF type classes:
huffman
parents: 39973
diff changeset
   315
qed
b525988432e9 major reorganization/simplification of HOLCF type classes:
huffman
parents: 39973
diff changeset
   316
b525988432e9 major reorganization/simplification of HOLCF type classes:
huffman
parents: 39973
diff changeset
   317
definition ssum_sfp :: "sfp \<rightarrow> sfp \<rightarrow> sfp"
b525988432e9 major reorganization/simplification of HOLCF type classes:
huffman
parents: 39973
diff changeset
   318
where "ssum_sfp = sfp_fun2 ssum_approx ssum_map"
b525988432e9 major reorganization/simplification of HOLCF type classes:
huffman
parents: 39973
diff changeset
   319
b525988432e9 major reorganization/simplification of HOLCF type classes:
huffman
parents: 39973
diff changeset
   320
lemma cast_ssum_sfp:
b525988432e9 major reorganization/simplification of HOLCF type classes:
huffman
parents: 39973
diff changeset
   321
  "cast\<cdot>(ssum_sfp\<cdot>A\<cdot>B) =
b525988432e9 major reorganization/simplification of HOLCF type classes:
huffman
parents: 39973
diff changeset
   322
    udom_emb ssum_approx oo ssum_map\<cdot>(cast\<cdot>A)\<cdot>(cast\<cdot>B) oo udom_prj ssum_approx"
b525988432e9 major reorganization/simplification of HOLCF type classes:
huffman
parents: 39973
diff changeset
   323
unfolding ssum_sfp_def
b525988432e9 major reorganization/simplification of HOLCF type classes:
huffman
parents: 39973
diff changeset
   324
apply (rule cast_sfp_fun2 [OF ssum_approx])
b525988432e9 major reorganization/simplification of HOLCF type classes:
huffman
parents: 39973
diff changeset
   325
apply (erule (1) finite_deflation_ssum_map)
b525988432e9 major reorganization/simplification of HOLCF type classes:
huffman
parents: 39973
diff changeset
   326
done
b525988432e9 major reorganization/simplification of HOLCF type classes:
huffman
parents: 39973
diff changeset
   327
b525988432e9 major reorganization/simplification of HOLCF type classes:
huffman
parents: 39973
diff changeset
   328
instantiation ssum :: (sfp, sfp) sfp
26962
c8b20f615d6c use new class package for classes profinite, bifinite; remove approx class
huffman
parents: 26046
diff changeset
   329
begin
25915
f1bce5261dec add instance for class bifinite
huffman
parents: 25882
diff changeset
   330
26962
c8b20f615d6c use new class package for classes profinite, bifinite; remove approx class
huffman
parents: 26046
diff changeset
   331
definition
39974
b525988432e9 major reorganization/simplification of HOLCF type classes:
huffman
parents: 39973
diff changeset
   332
  "emb = udom_emb ssum_approx oo ssum_map\<cdot>emb\<cdot>emb"
25915
f1bce5261dec add instance for class bifinite
huffman
parents: 25882
diff changeset
   333
39974
b525988432e9 major reorganization/simplification of HOLCF type classes:
huffman
parents: 39973
diff changeset
   334
definition
b525988432e9 major reorganization/simplification of HOLCF type classes:
huffman
parents: 39973
diff changeset
   335
  "prj = ssum_map\<cdot>prj\<cdot>prj oo udom_prj ssum_approx"
25915
f1bce5261dec add instance for class bifinite
huffman
parents: 25882
diff changeset
   336
39974
b525988432e9 major reorganization/simplification of HOLCF type classes:
huffman
parents: 39973
diff changeset
   337
definition
b525988432e9 major reorganization/simplification of HOLCF type classes:
huffman
parents: 39973
diff changeset
   338
  "sfp (t::('a \<oplus> 'b) itself) = ssum_sfp\<cdot>SFP('a)\<cdot>SFP('b)"
25915
f1bce5261dec add instance for class bifinite
huffman
parents: 25882
diff changeset
   339
26962
c8b20f615d6c use new class package for classes profinite, bifinite; remove approx class
huffman
parents: 26046
diff changeset
   340
instance proof
39974
b525988432e9 major reorganization/simplification of HOLCF type classes:
huffman
parents: 39973
diff changeset
   341
  show "ep_pair emb (prj :: udom \<rightarrow> 'a \<oplus> 'b)"
b525988432e9 major reorganization/simplification of HOLCF type classes:
huffman
parents: 39973
diff changeset
   342
    unfolding emb_ssum_def prj_ssum_def
b525988432e9 major reorganization/simplification of HOLCF type classes:
huffman
parents: 39973
diff changeset
   343
    using ep_pair_udom [OF ssum_approx]
b525988432e9 major reorganization/simplification of HOLCF type classes:
huffman
parents: 39973
diff changeset
   344
    by (intro ep_pair_comp ep_pair_ssum_map ep_pair_emb_prj)
b525988432e9 major reorganization/simplification of HOLCF type classes:
huffman
parents: 39973
diff changeset
   345
next
b525988432e9 major reorganization/simplification of HOLCF type classes:
huffman
parents: 39973
diff changeset
   346
  show "cast\<cdot>SFP('a \<oplus> 'b) = emb oo (prj :: udom \<rightarrow> 'a \<oplus> 'b)"
b525988432e9 major reorganization/simplification of HOLCF type classes:
huffman
parents: 39973
diff changeset
   347
    unfolding emb_ssum_def prj_ssum_def sfp_ssum_def cast_ssum_sfp
b525988432e9 major reorganization/simplification of HOLCF type classes:
huffman
parents: 39973
diff changeset
   348
    by (simp add: cast_SFP oo_def expand_cfun_eq ssum_map_map)
25915
f1bce5261dec add instance for class bifinite
huffman
parents: 25882
diff changeset
   349
qed
f1bce5261dec add instance for class bifinite
huffman
parents: 25882
diff changeset
   350
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   351
end
26962
c8b20f615d6c use new class package for classes profinite, bifinite; remove approx class
huffman
parents: 26046
diff changeset
   352
39974
b525988432e9 major reorganization/simplification of HOLCF type classes:
huffman
parents: 39973
diff changeset
   353
text {* SFP of type constructor = type combinator *}
b525988432e9 major reorganization/simplification of HOLCF type classes:
huffman
parents: 39973
diff changeset
   354
b525988432e9 major reorganization/simplification of HOLCF type classes:
huffman
parents: 39973
diff changeset
   355
lemma SFP_ssum: "SFP('a::sfp \<oplus> 'b::sfp) = ssum_sfp\<cdot>SFP('a)\<cdot>SFP('b)"
b525988432e9 major reorganization/simplification of HOLCF type classes:
huffman
parents: 39973
diff changeset
   356
by (rule sfp_ssum_def)
b525988432e9 major reorganization/simplification of HOLCF type classes:
huffman
parents: 39973
diff changeset
   357
26962
c8b20f615d6c use new class package for classes profinite, bifinite; remove approx class
huffman
parents: 26046
diff changeset
   358
end