src/HOLCF/Sprod.thy
author paulson
Tue, 24 May 2005 11:19:50 +0200
changeset 16063 7dd4eb2c8055
parent 16059 dab0d004732f
child 16070 4a83dd540b88
permissions -rw-r--r--
oracle example converted to Isar
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
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
     2
    ID:         $Id$
16059
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
     3
    Author:     Franz Regensburger and Brian Huffman
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
     4
    License:    GPL (GNU GENERAL PUBLIC LICENSE)
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
     5
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
     6
Strict product with typedef.
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
     7
*)
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
     8
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
     9
header {* The type of strict products *}
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    10
15577
e16da3068ad6 fix headers
huffman
parents: 15576
diff changeset
    11
theory Sprod
16059
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    12
imports Cprod TypedefPcpo
15577
e16da3068ad6 fix headers
huffman
parents: 15576
diff changeset
    13
begin
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    14
15591
50c3384ca6c4 reordered and arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
    15
subsection {* Definition of strict product type *}
50c3384ca6c4 reordered and arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
    16
16059
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    17
typedef (Sprod)  ('a, 'b) "**" (infixr 20) =
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    18
        "{p::'a \<times> 'b. p = \<bottom> \<or> (cfst\<cdot>p \<noteq> \<bottom> \<and> csnd\<cdot>p \<noteq> \<bottom>)}"
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    19
by (auto simp add: inst_cprod_pcpo)
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    20
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    21
syntax (xsymbols)
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    22
  "**"		:: "[type, type] => type"	 ("(_ \<otimes>/ _)" [21,20] 20)
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    23
syntax (HTML output)
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    24
  "**"		:: "[type, type] => type"	 ("(_ \<otimes>/ _)" [21,20] 20)
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    25
16059
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    26
subsection {* Class instances *}
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    27
16059
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    28
instance "**" :: (pcpo, pcpo) sq_ord ..
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    29
defs (overloaded)
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    30
  less_sprod_def: "op \<sqsubseteq> \<equiv> \<lambda>x y. Rep_Sprod x \<sqsubseteq> Rep_Sprod y"
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    31
16059
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    32
lemma adm_Sprod: "adm (\<lambda>x. x \<in> Sprod)"
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    33
by (simp add: Sprod_def)
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    34
16059
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    35
lemma UU_Sprod: "\<bottom> \<in> Sprod"
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    36
by (simp add: Sprod_def)
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    37
16059
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    38
instance "**" :: (pcpo, pcpo) po
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    39
by (rule typedef_po [OF type_definition_Sprod less_sprod_def])
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    40
16059
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    41
instance "**" :: (pcpo, pcpo) cpo
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    42
by (rule typedef_cpo [OF type_definition_Sprod less_sprod_def adm_Sprod])
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    43
16059
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    44
instance "**" :: (pcpo, pcpo) pcpo
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    45
by (rule typedef_pcpo_UU [OF type_definition_Sprod less_sprod_def UU_Sprod])
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    46
16059
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    47
lemmas cont_Rep_Sprod =
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    48
  typedef_cont_Rep [OF type_definition_Sprod less_sprod_def adm_Sprod]
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    49
16059
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    50
lemmas cont_Abs_Sprod = 
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    51
  typedef_cont_Abs [OF type_definition_Sprod less_sprod_def adm_Sprod]
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    52
16059
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    53
lemmas strict_Rep_Sprod =
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    54
  typedef_strict_Rep [OF type_definition_Sprod less_sprod_def UU_Sprod]
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    55
16059
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    56
lemmas strict_Abs_Sprod =
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    57
  typedef_strict_Abs [OF type_definition_Sprod less_sprod_def UU_Sprod]
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    58
16059
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    59
lemma UU_Abs_Sprod: "\<bottom> = Abs_Sprod <\<bottom>, \<bottom>>"
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    60
by (simp add: strict_Abs_Sprod inst_cprod_pcpo2 [symmetric])
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    61
16059
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    62
lemma spair_lemma:
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    63
  "<strictify\<cdot>(\<Lambda> b. a)\<cdot>b, strictify\<cdot>(\<Lambda> a. b)\<cdot>a> \<in> Sprod"
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    64
apply (simp add: Sprod_def inst_cprod_pcpo2)
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    65
apply (case_tac "a = \<bottom>", case_tac [!] "b = \<bottom>", simp_all)
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    66
done
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    67
16059
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    68
subsection {* Definitions of constants *}
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    69
16059
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    70
consts
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    71
  sfst :: "('a ** 'b) \<rightarrow> 'a"
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    72
  ssnd :: "('a ** 'b) \<rightarrow> 'b"
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    73
  spair :: "'a \<rightarrow> 'b \<rightarrow> ('a ** 'b)"
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    74
  ssplit :: "('a \<rightarrow> 'b \<rightarrow> 'c) \<rightarrow> ('a ** 'b) \<rightarrow> 'c"
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    75
16059
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    76
defs
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    77
  sfst_def: "sfst \<equiv> \<Lambda> p. cfst\<cdot>(Rep_Sprod p)"
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    78
  ssnd_def: "ssnd \<equiv> \<Lambda> p. csnd\<cdot>(Rep_Sprod p)"
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    79
  spair_def: "spair \<equiv> \<Lambda> a b. Abs_Sprod
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    80
                <strictify\<cdot>(\<Lambda> b. a)\<cdot>b, strictify\<cdot>(\<Lambda> a. b)\<cdot>a>"
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    81
  ssplit_def: "ssplit \<equiv> \<Lambda> f. strictify\<cdot>(\<Lambda> p. f\<cdot>(sfst\<cdot>p)\<cdot>(ssnd\<cdot>p))"
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    82
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    83
syntax  
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    84
  "@stuple"	:: "['a, args] => 'a ** 'b"	("(1'(:_,/ _:'))")
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    85
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    86
translations
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    87
        "(:x, y, z:)"   == "(:x, (:y, z:):)"
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    88
        "(:x, y:)"      == "spair$x$y"
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    89
16059
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    90
subsection {* Case analysis *}
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    91
16059
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    92
lemma spair_Abs_Sprod:
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    93
  "(:a, b:) = Abs_Sprod <strictify\<cdot>(\<Lambda> b. a)\<cdot>b, strictify\<cdot>(\<Lambda> a. b)\<cdot>a>"
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    94
apply (unfold spair_def)
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    95
apply (simp add: cont_Abs_Sprod spair_lemma)
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    96
done
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    97
16059
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    98
lemma Exh_Sprod2:
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    99
  "z = \<bottom> \<or> (\<exists>a b. z = (:a, b:) \<and> a \<noteq> \<bottom> \<and> b \<noteq> \<bottom>)"
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   100
apply (rule_tac x=z in Abs_Sprod_cases)
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   101
apply (simp add: Sprod_def)
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   102
apply (erule disjE)
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   103
apply (simp add: strict_Abs_Sprod)
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   104
apply (rule disjI2)
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   105
apply (rule_tac x="cfst\<cdot>y" in exI)
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   106
apply (rule_tac x="csnd\<cdot>y" in exI)
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   107
apply (simp add: spair_Abs_Sprod Abs_Sprod_inject spair_lemma)
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   108
apply (simp add: surjective_pairing_Cprod2)
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   109
done
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   110
16059
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   111
lemma sprodE:
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   112
  "\<lbrakk>p = \<bottom> \<Longrightarrow> Q; \<And>x y. \<lbrakk>p = (:x, y:); x \<noteq> \<bottom>; y \<noteq> \<bottom>\<rbrakk> \<Longrightarrow> Q\<rbrakk> \<Longrightarrow> Q"
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   113
by (cut_tac z=p in Exh_Sprod2, auto)
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   114
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   115
subsection {* Properties of @{term spair} *}
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   116
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   117
lemma strict_spair1 [simp]: "(:\<bottom>, b:) = \<bottom>"
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   118
apply (simp add: spair_Abs_Sprod UU_Abs_Sprod)
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   119
apply (case_tac "b = \<bottom>", simp_all)
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   120
done
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   121
16059
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   122
lemma strict_spair2 [simp]: "(:a, \<bottom>:) = \<bottom>"
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   123
apply (simp add: spair_Abs_Sprod UU_Abs_Sprod)
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   124
apply (case_tac "a = \<bottom>", simp_all)
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   125
done
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   126
16059
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   127
lemma strict_spair: "a = \<bottom> \<or> b = \<bottom> \<Longrightarrow> (:a, b:) = \<bottom>"
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   128
by auto
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   129
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   130
lemma strict_spair_rev: "(:x, y:) \<noteq> \<bottom> \<Longrightarrow> x \<noteq> \<bottom> \<and> y \<noteq> \<bottom>"
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   131
by (erule contrapos_np, auto)
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   132
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   133
lemma defined_spair [simp]: 
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   134
  "\<lbrakk>a \<noteq> \<bottom>; b \<noteq> \<bottom>\<rbrakk> \<Longrightarrow> (:a, b:) \<noteq> \<bottom>"
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   135
apply (simp add: spair_Abs_Sprod UU_Abs_Sprod)
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   136
apply (subst Abs_Sprod_inject)
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   137
apply (simp add: Sprod_def)
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   138
apply (simp add: Sprod_def inst_cprod_pcpo2)
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   139
apply simp
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   140
done
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   141
16059
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   142
lemma defined_spair_rev: "(:a, b:) = \<bottom> \<Longrightarrow> a = \<bottom> \<or> b = \<bottom>"
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   143
by (erule contrapos_pp, simp)
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   144
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   145
lemma inject_spair: 
16059
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   146
  "\<lbrakk>aa \<noteq> \<bottom>; ba \<noteq> \<bottom>; (:a,b:) = (:aa,ba:)\<rbrakk> \<Longrightarrow> a = aa \<and> b = ba"
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   147
apply (simp add: spair_Abs_Sprod)
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   148
apply (simp add: Abs_Sprod_inject [OF spair_lemma] Sprod_def)
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   149
apply (case_tac "a = \<bottom>", simp_all)
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   150
apply (case_tac "b = \<bottom>", simp_all)
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   151
done
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   152
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   153
lemma inst_sprod_pcpo2: "UU = (:UU,UU:)"
16059
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   154
by simp
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   155
16059
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   156
subsection {* Properties of @{term sfst} and @{term ssnd} *}
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   157
16059
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   158
lemma strict_sfst [simp]: "sfst\<cdot>\<bottom> = \<bottom>"
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   159
by (simp add: sfst_def cont_Rep_Sprod strict_Rep_Sprod)
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   160
16059
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   161
lemma strict_ssnd [simp]: "ssnd\<cdot>\<bottom> = \<bottom>"
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   162
by (simp add: ssnd_def cont_Rep_Sprod strict_Rep_Sprod)
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   163
16059
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   164
lemma Rep_Sprod_spair:
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   165
  "Rep_Sprod (:a, b:) = <strictify\<cdot>(\<Lambda> b. a)\<cdot>b, strictify\<cdot>(\<Lambda> a. b)\<cdot>a>"
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   166
apply (unfold spair_def)
16059
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   167
apply (simp add: cont_Abs_Sprod Abs_Sprod_inverse spair_lemma)
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   168
done
15591
50c3384ca6c4 reordered and arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
   169
16059
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   170
lemma sfst2 [simp]: "y \<noteq> \<bottom> \<Longrightarrow> sfst\<cdot>(:x, y:) = x"
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   171
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
   172
16059
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   173
lemma ssnd2 [simp]: "x \<noteq> \<bottom> \<Longrightarrow> ssnd\<cdot>(:x, y:) = y"
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   174
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
   175
16059
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   176
lemma defined_sfstssnd: "p \<noteq> \<bottom> \<Longrightarrow> sfst\<cdot>p \<noteq> \<bottom> \<and> ssnd\<cdot>p \<noteq> \<bottom>"
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   177
by (rule_tac p=p in sprodE, simp_all)
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   178
 
16059
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   179
lemma surjective_pairing_Sprod2: "(:sfst\<cdot>p, ssnd\<cdot>p:) = p"
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   180
by (rule_tac p=p in sprodE, simp_all)
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   181
16059
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   182
subsection {* Properties of @{term ssplit} *}
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   183
16059
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   184
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
   185
by (simp add: ssplit_def)
50c3384ca6c4 reordered and arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
   186
16059
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   187
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
   188
by (simp add: ssplit_def)
50c3384ca6c4 reordered and arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
   189
16059
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   190
lemma ssplit3: "ssplit\<cdot>spair\<cdot>z = z"
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   191
by (rule_tac p=z in sprodE, simp_all)
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   192
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   193
end