src/HOLCF/Sprod.thy
author wenzelm
Wed, 13 Jul 2005 16:07:35 +0200
changeset 16813 67140ae50e77
parent 16777 555c8951f05c
child 16920 ded12c9e88c2
permissions -rw-r--r--
removed ad-hoc atp_hook, cal_atp; removed depth_of; tuned;
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
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
     5
Strict product with typedef.
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
     6
*)
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
header {* The type of strict products *}
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
     9
15577
e16da3068ad6 fix headers
huffman
parents: 15576
diff changeset
    10
theory Sprod
16699
24b494ff8f0f use new pcpodef package
huffman
parents: 16553
diff changeset
    11
imports Cprod
15577
e16da3068ad6 fix headers
huffman
parents: 15576
diff changeset
    12
begin
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    13
16082
ebb53ebfd4e2 added defaultsort declaration
huffman
parents: 16070
diff changeset
    14
defaultsort pcpo
ebb53ebfd4e2 added defaultsort declaration
huffman
parents: 16070
diff changeset
    15
15591
50c3384ca6c4 reordered and arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
    16
subsection {* Definition of strict product type *}
50c3384ca6c4 reordered and arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
    17
16699
24b494ff8f0f use new pcpodef package
huffman
parents: 16553
diff changeset
    18
pcpodef (Sprod)  ('a, 'b) "**" (infixr 20) =
16059
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    19
        "{p::'a \<times> 'b. p = \<bottom> \<or> (cfst\<cdot>p \<noteq> \<bottom> \<and> csnd\<cdot>p \<noteq> \<bottom>)}"
16699
24b494ff8f0f use new pcpodef package
huffman
parents: 16553
diff changeset
    20
by simp
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    21
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    22
syntax (xsymbols)
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    23
  "**"		:: "[type, type] => type"	 ("(_ \<otimes>/ _)" [21,20] 20)
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    24
syntax (HTML output)
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    25
  "**"		:: "[type, type] => type"	 ("(_ \<otimes>/ _)" [21,20] 20)
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
lemma UU_Abs_Sprod: "\<bottom> = Abs_Sprod <\<bottom>, \<bottom>>"
16212
422f836f6b39 renamed strict, defined, and inject lemmas; renamed sfst2, ssnd2 to sfst_spair, ssnd_spair
huffman
parents: 16082
diff changeset
    28
by (simp add: Abs_Sprod_strict inst_cprod_pcpo2 [symmetric])
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    29
16059
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    30
lemma spair_lemma:
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    31
  "<strictify\<cdot>(\<Lambda> b. a)\<cdot>b, strictify\<cdot>(\<Lambda> a. b)\<cdot>a> \<in> Sprod"
16212
422f836f6b39 renamed strict, defined, and inject lemmas; renamed sfst2, ssnd2 to sfst_spair, ssnd_spair
huffman
parents: 16082
diff changeset
    32
by (simp add: Sprod_def strictify_conv_if cpair_strict)
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    33
16059
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    34
subsection {* Definitions of constants *}
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    35
16059
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    36
consts
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    37
  sfst :: "('a ** 'b) \<rightarrow> 'a"
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    38
  ssnd :: "('a ** 'b) \<rightarrow> 'b"
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    39
  spair :: "'a \<rightarrow> 'b \<rightarrow> ('a ** 'b)"
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    40
  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
    41
16059
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    42
defs
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    43
  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
    44
  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
    45
  spair_def: "spair \<equiv> \<Lambda> a b. Abs_Sprod
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    46
                <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
    47
  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
    48
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    49
syntax  
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    50
  "@stuple"	:: "['a, args] => 'a ** 'b"	("(1'(:_,/ _:'))")
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    51
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    52
translations
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    53
        "(:x, y, z:)"   == "(:x, (:y, z:):)"
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    54
        "(:x, y:)"      == "spair$x$y"
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
subsection {* Case analysis *}
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    57
16059
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    58
lemma spair_Abs_Sprod:
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    59
  "(: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
    60
apply (unfold spair_def)
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    61
apply (simp add: cont_Abs_Sprod spair_lemma)
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    62
done
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    63
16059
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    64
lemma Exh_Sprod2:
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    65
  "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
    66
apply (rule_tac x=z in Abs_Sprod_cases)
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    67
apply (simp add: Sprod_def)
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    68
apply (erule disjE)
16212
422f836f6b39 renamed strict, defined, and inject lemmas; renamed sfst2, ssnd2 to sfst_spair, ssnd_spair
huffman
parents: 16082
diff changeset
    69
apply (simp add: Abs_Sprod_strict)
16059
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    70
apply (rule disjI2)
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    71
apply (rule_tac x="cfst\<cdot>y" in exI)
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    72
apply (rule_tac x="csnd\<cdot>y" in exI)
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    73
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
    74
apply (simp add: surjective_pairing_Cprod2)
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    75
done
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    76
16059
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    77
lemma sprodE:
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    78
  "\<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
    79
by (cut_tac z=p in Exh_Sprod2, auto)
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    80
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    81
subsection {* Properties of @{term spair} *}
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    82
16317
868eddbcaf6e added theorems less_sprod, spair_less, spair_eq, spair_inject
huffman
parents: 16212
diff changeset
    83
lemma spair_strict1 [simp]: "(:\<bottom>, y:) = \<bottom>"
16212
422f836f6b39 renamed strict, defined, and inject lemmas; renamed sfst2, ssnd2 to sfst_spair, ssnd_spair
huffman
parents: 16082
diff changeset
    84
by (simp add: spair_Abs_Sprod UU_Abs_Sprod strictify_conv_if)
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    85
16317
868eddbcaf6e added theorems less_sprod, spair_less, spair_eq, spair_inject
huffman
parents: 16212
diff changeset
    86
lemma spair_strict2 [simp]: "(:x, \<bottom>:) = \<bottom>"
16212
422f836f6b39 renamed strict, defined, and inject lemmas; renamed sfst2, ssnd2 to sfst_spair, ssnd_spair
huffman
parents: 16082
diff changeset
    87
by (simp add: spair_Abs_Sprod UU_Abs_Sprod strictify_conv_if)
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
    88
16317
868eddbcaf6e added theorems less_sprod, spair_less, spair_eq, spair_inject
huffman
parents: 16212
diff changeset
    89
lemma spair_strict: "x = \<bottom> \<or> y = \<bottom> \<Longrightarrow> (:x, y:) = \<bottom>"
16059
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    90
by auto
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    91
16212
422f836f6b39 renamed strict, defined, and inject lemmas; renamed sfst2, ssnd2 to sfst_spair, ssnd_spair
huffman
parents: 16082
diff changeset
    92
lemma spair_strict_rev: "(:x, y:) \<noteq> \<bottom> \<Longrightarrow> x \<noteq> \<bottom> \<and> y \<noteq> \<bottom>"
16059
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    93
by (erule contrapos_np, auto)
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    94
16212
422f836f6b39 renamed strict, defined, and inject lemmas; renamed sfst2, ssnd2 to sfst_spair, ssnd_spair
huffman
parents: 16082
diff changeset
    95
lemma spair_defined [simp]: 
16317
868eddbcaf6e added theorems less_sprod, spair_less, spair_eq, spair_inject
huffman
parents: 16212
diff changeset
    96
  "\<lbrakk>x \<noteq> \<bottom>; y \<noteq> \<bottom>\<rbrakk> \<Longrightarrow> (:x, y:) \<noteq> \<bottom>"
16059
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    97
apply (simp add: spair_Abs_Sprod UU_Abs_Sprod)
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    98
apply (subst Abs_Sprod_inject)
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
    99
apply (simp add: Sprod_def)
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   100
apply (simp add: Sprod_def inst_cprod_pcpo2)
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   101
apply simp
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   102
done
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>"
16059
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   105
by (erule contrapos_pp, simp)
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   106
16317
868eddbcaf6e added theorems less_sprod, spair_less, spair_eq, spair_inject
huffman
parents: 16212
diff changeset
   107
lemma spair_eq:
868eddbcaf6e added theorems less_sprod, spair_less, spair_eq, spair_inject
huffman
parents: 16212
diff changeset
   108
  "\<lbrakk>x \<noteq> \<bottom>; y \<noteq> \<bottom>\<rbrakk> \<Longrightarrow> ((:x, y:) = (:a, b:)) = (x = a \<and> y = b)"
868eddbcaf6e added theorems less_sprod, spair_less, spair_eq, spair_inject
huffman
parents: 16212
diff changeset
   109
apply (simp add: spair_Abs_Sprod)
868eddbcaf6e added theorems less_sprod, spair_less, spair_eq, spair_inject
huffman
parents: 16212
diff changeset
   110
apply (simp add: Abs_Sprod_inject [OF _ spair_lemma] Sprod_def)
868eddbcaf6e added theorems less_sprod, spair_less, spair_eq, spair_inject
huffman
parents: 16212
diff changeset
   111
apply (simp add: strictify_conv_if)
868eddbcaf6e added theorems less_sprod, spair_less, spair_eq, spair_inject
huffman
parents: 16212
diff changeset
   112
done
868eddbcaf6e added theorems less_sprod, spair_less, spair_eq, spair_inject
huffman
parents: 16212
diff changeset
   113
16212
422f836f6b39 renamed strict, defined, and inject lemmas; renamed sfst2, ssnd2 to sfst_spair, ssnd_spair
huffman
parents: 16082
diff changeset
   114
lemma spair_inject:
16317
868eddbcaf6e added theorems less_sprod, spair_less, spair_eq, spair_inject
huffman
parents: 16212
diff changeset
   115
  "\<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
   116
by (rule spair_eq [THEN iffD1])
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   117
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   118
lemma inst_sprod_pcpo2: "UU = (:UU,UU:)"
16059
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   119
by simp
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   120
16059
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   121
subsection {* Properties of @{term sfst} and @{term ssnd} *}
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   122
16212
422f836f6b39 renamed strict, defined, and inject lemmas; renamed sfst2, ssnd2 to sfst_spair, ssnd_spair
huffman
parents: 16082
diff changeset
   123
lemma sfst_strict [simp]: "sfst\<cdot>\<bottom> = \<bottom>"
422f836f6b39 renamed strict, defined, and inject lemmas; renamed sfst2, ssnd2 to sfst_spair, ssnd_spair
huffman
parents: 16082
diff changeset
   124
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
   125
16212
422f836f6b39 renamed strict, defined, and inject lemmas; renamed sfst2, ssnd2 to sfst_spair, ssnd_spair
huffman
parents: 16082
diff changeset
   126
lemma ssnd_strict [simp]: "ssnd\<cdot>\<bottom> = \<bottom>"
422f836f6b39 renamed strict, defined, and inject lemmas; renamed sfst2, ssnd2 to sfst_spair, ssnd_spair
huffman
parents: 16082
diff changeset
   127
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
   128
16059
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   129
lemma Rep_Sprod_spair:
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   130
  "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
   131
apply (unfold spair_def)
16059
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   132
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
   133
done
15591
50c3384ca6c4 reordered and arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
   134
16212
422f836f6b39 renamed strict, defined, and inject lemmas; renamed sfst2, ssnd2 to sfst_spair, ssnd_spair
huffman
parents: 16082
diff changeset
   135
lemma sfst_spair [simp]: "y \<noteq> \<bottom> \<Longrightarrow> sfst\<cdot>(:x, y:) = x"
16059
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   136
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
   137
16212
422f836f6b39 renamed strict, defined, and inject lemmas; renamed sfst2, ssnd2 to sfst_spair, ssnd_spair
huffman
parents: 16082
diff changeset
   138
lemma ssnd_spair [simp]: "x \<noteq> \<bottom> \<Longrightarrow> ssnd\<cdot>(:x, y:) = y"
16059
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   139
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
   140
16777
555c8951f05c added lemmas sfst_defined_iff, ssnd_defined_iff, sfst_defined, ssnd_defined
huffman
parents: 16751
diff changeset
   141
lemma sfst_defined_iff [simp]: "(sfst\<cdot>p = \<bottom>) = (p = \<bottom>)"
555c8951f05c added lemmas sfst_defined_iff, ssnd_defined_iff, sfst_defined, ssnd_defined
huffman
parents: 16751
diff changeset
   142
by (rule_tac p=p in sprodE, simp_all)
555c8951f05c added lemmas sfst_defined_iff, ssnd_defined_iff, sfst_defined, ssnd_defined
huffman
parents: 16751
diff changeset
   143
555c8951f05c added lemmas sfst_defined_iff, ssnd_defined_iff, sfst_defined, ssnd_defined
huffman
parents: 16751
diff changeset
   144
lemma ssnd_defined_iff [simp]: "(ssnd\<cdot>p = \<bottom>) = (p = \<bottom>)"
16059
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   145
by (rule_tac p=p in sprodE, simp_all)
16317
868eddbcaf6e added theorems less_sprod, spair_less, spair_eq, spair_inject
huffman
parents: 16212
diff changeset
   146
16777
555c8951f05c added lemmas sfst_defined_iff, ssnd_defined_iff, sfst_defined, ssnd_defined
huffman
parents: 16751
diff changeset
   147
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
   148
by simp
555c8951f05c added lemmas sfst_defined_iff, ssnd_defined_iff, sfst_defined, ssnd_defined
huffman
parents: 16751
diff changeset
   149
555c8951f05c added lemmas sfst_defined_iff, ssnd_defined_iff, sfst_defined, ssnd_defined
huffman
parents: 16751
diff changeset
   150
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
   151
by simp
555c8951f05c added lemmas sfst_defined_iff, ssnd_defined_iff, sfst_defined, ssnd_defined
huffman
parents: 16751
diff changeset
   152
16059
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   153
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
   154
by (rule_tac p=p in sprodE, simp_all)
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   155
16751
7af6723ad741 add lemma eq_sprod
huffman
parents: 16699
diff changeset
   156
lemma less_sprod: "x \<sqsubseteq> y = (sfst\<cdot>x \<sqsubseteq> sfst\<cdot>y \<and> ssnd\<cdot>x \<sqsubseteq> ssnd\<cdot>y)"
16699
24b494ff8f0f use new pcpodef package
huffman
parents: 16553
diff changeset
   157
apply (simp add: less_Sprod_def sfst_def ssnd_def cont_Rep_Sprod)
16317
868eddbcaf6e added theorems less_sprod, spair_less, spair_eq, spair_inject
huffman
parents: 16212
diff changeset
   158
apply (rule less_cprod)
868eddbcaf6e added theorems less_sprod, spair_less, spair_eq, spair_inject
huffman
parents: 16212
diff changeset
   159
done
868eddbcaf6e added theorems less_sprod, spair_less, spair_eq, spair_inject
huffman
parents: 16212
diff changeset
   160
16751
7af6723ad741 add lemma eq_sprod
huffman
parents: 16699
diff changeset
   161
lemma eq_sprod: "(x = y) = (sfst\<cdot>x = sfst\<cdot>y \<and> ssnd\<cdot>x = ssnd\<cdot>y)"
7af6723ad741 add lemma eq_sprod
huffman
parents: 16699
diff changeset
   162
by (auto simp add: po_eq_conv less_sprod)
7af6723ad741 add lemma eq_sprod
huffman
parents: 16699
diff changeset
   163
16317
868eddbcaf6e added theorems less_sprod, spair_less, spair_eq, spair_inject
huffman
parents: 16212
diff changeset
   164
lemma spair_less:
868eddbcaf6e added theorems less_sprod, spair_less, spair_eq, spair_inject
huffman
parents: 16212
diff changeset
   165
  "\<lbrakk>x \<noteq> \<bottom>; y \<noteq> \<bottom>\<rbrakk> \<Longrightarrow> (:x, y:) \<sqsubseteq> (:a, b:) = (x \<sqsubseteq> a \<and> y \<sqsubseteq> b)"
868eddbcaf6e added theorems less_sprod, spair_less, spair_eq, spair_inject
huffman
parents: 16212
diff changeset
   166
apply (case_tac "a = \<bottom>")
868eddbcaf6e added theorems less_sprod, spair_less, spair_eq, spair_inject
huffman
parents: 16212
diff changeset
   167
apply (simp add: eq_UU_iff [symmetric])
868eddbcaf6e added theorems less_sprod, spair_less, spair_eq, spair_inject
huffman
parents: 16212
diff changeset
   168
apply (case_tac "b = \<bottom>")
868eddbcaf6e added theorems less_sprod, spair_less, spair_eq, spair_inject
huffman
parents: 16212
diff changeset
   169
apply (simp add: eq_UU_iff [symmetric])
868eddbcaf6e added theorems less_sprod, spair_less, spair_eq, spair_inject
huffman
parents: 16212
diff changeset
   170
apply (simp add: less_sprod)
868eddbcaf6e added theorems less_sprod, spair_less, spair_eq, spair_inject
huffman
parents: 16212
diff changeset
   171
done
868eddbcaf6e added theorems less_sprod, spair_less, spair_eq, spair_inject
huffman
parents: 16212
diff changeset
   172
868eddbcaf6e added theorems less_sprod, spair_less, spair_eq, spair_inject
huffman
parents: 16212
diff changeset
   173
16059
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   174
subsection {* Properties of @{term ssplit} *}
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 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
   177
by (simp add: ssplit_def)
50c3384ca6c4 reordered and arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
   178
16059
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   179
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
   180
by (simp add: ssplit_def)
50c3384ca6c4 reordered and arranged for document generation, cleaned up some proofs
huffman
parents: 15577
diff changeset
   181
16553
aa36d41e4263 add csplit3, ssplit3, fup3 as simp rules
huffman
parents: 16317
diff changeset
   182
lemma ssplit3 [simp]: "ssplit\<cdot>spair\<cdot>z = z"
16059
dab0d004732f Simplified version of strict product theory, using TypedefPcpo
huffman
parents: 15930
diff changeset
   183
by (rule_tac p=z in sprodE, simp_all)
15576
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   184
efb95d0d01f7 converted to new-style theories, and combined numbered files
huffman
parents:
diff changeset
   185
end