src/ZF/Induct/PropLog.thy
author wenzelm
Tue, 17 Jul 2007 13:19:18 +0200
changeset 23823 441148ca8323
parent 20503 503ac4c5ef91
child 24893 b8ef7afe3a6b
permissions -rw-r--r--
added General/print_mode.ML, pure_setup.ML;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
12560
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
     1
(*  Title:      ZF/Induct/PropLog.thy
12088
6f463d16cbd0 reorganization of the ZF examples
paulson
parents:
diff changeset
     2
    ID:         $Id$
6f463d16cbd0 reorganization of the ZF examples
paulson
parents:
diff changeset
     3
    Author:     Tobias Nipkow & Lawrence C Paulson
6f463d16cbd0 reorganization of the ZF examples
paulson
parents:
diff changeset
     4
    Copyright   1993  University of Cambridge
12610
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
     5
*)
12560
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
     6
12610
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
     7
header {* Meta-theory of propositional logic *}
12088
6f463d16cbd0 reorganization of the ZF examples
paulson
parents:
diff changeset
     8
16417
9bc16273c2d4 migrated theory headers to new format
haftmann
parents: 12610
diff changeset
     9
theory PropLog imports Main begin
12088
6f463d16cbd0 reorganization of the ZF examples
paulson
parents:
diff changeset
    10
12610
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
    11
text {*
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
    12
  Datatype definition of propositional logic formulae and inductive
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
    13
  definition of the propositional tautologies.
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
    14
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
    15
  Inductive definition of propositional logic.  Soundness and
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
    16
  completeness w.r.t.\ truth-tables.
12088
6f463d16cbd0 reorganization of the ZF examples
paulson
parents:
diff changeset
    17
12610
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
    18
  Prove: If @{text "H |= p"} then @{text "G |= p"} where @{text "G \<in>
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
    19
  Fin(H)"}
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
    20
*}
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
    21
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
    22
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
    23
subsection {* The datatype of propositions *}
12088
6f463d16cbd0 reorganization of the ZF examples
paulson
parents:
diff changeset
    24
6f463d16cbd0 reorganization of the ZF examples
paulson
parents:
diff changeset
    25
consts
12610
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
    26
  propn :: i
12088
6f463d16cbd0 reorganization of the ZF examples
paulson
parents:
diff changeset
    27
12610
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
    28
datatype propn =
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
    29
    Fls
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
    30
  | Var ("n \<in> nat")    ("#_" [100] 100)
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
    31
  | Imp ("p \<in> propn", "q \<in> propn")    (infixr "=>" 90)
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
    32
12088
6f463d16cbd0 reorganization of the ZF examples
paulson
parents:
diff changeset
    33
12610
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
    34
subsection {* The proof system *}
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
    35
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
    36
consts thms     :: "i => i"
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
    37
syntax "_thms"  :: "[i,i] => o"    (infixl "|-" 50)
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
    38
translations "H |- p" == "p \<in> thms(H)"
12088
6f463d16cbd0 reorganization of the ZF examples
paulson
parents:
diff changeset
    39
6f463d16cbd0 reorganization of the ZF examples
paulson
parents:
diff changeset
    40
inductive
12610
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
    41
  domains "thms(H)" \<subseteq> "propn"
12560
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
    42
  intros
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
    43
    H:  "[| p \<in> H;  p \<in> propn |] ==> H |- p"
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
    44
    K:  "[| p \<in> propn;  q \<in> propn |] ==> H |- p=>q=>p"
12610
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
    45
    S:  "[| p \<in> propn;  q \<in> propn;  r \<in> propn |]
12560
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
    46
         ==> H |- (p=>q=>r) => (p=>q) => p=>r"
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
    47
    DN: "p \<in> propn ==> H |- ((p=>Fls) => Fls) => p"
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
    48
    MP: "[| H |- p=>q;  H |- p;  p \<in> propn;  q \<in> propn |] ==> H |- q"
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
    49
  type_intros "propn.intros"
12088
6f463d16cbd0 reorganization of the ZF examples
paulson
parents:
diff changeset
    50
12560
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
    51
declare propn.intros [simp]
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
    52
12610
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
    53
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
    54
subsection {* The semantics *}
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
    55
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
    56
subsubsection {* Semantics of propositional logic. *}
12560
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
    57
12610
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
    58
consts
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
    59
  is_true_fun :: "[i,i] => i"
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
    60
primrec
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
    61
  "is_true_fun(Fls, t) = 0"
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
    62
  "is_true_fun(Var(v), t) = (if v \<in> t then 1 else 0)"
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
    63
  "is_true_fun(p=>q, t) = (if is_true_fun(p,t) = 1 then is_true_fun(q,t) else 1)"
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
    64
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
    65
constdefs
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
    66
  is_true :: "[i,i] => o"
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
    67
  "is_true(p,t) == is_true_fun(p,t) = 1"
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
    68
  -- {* this definition is required since predicates can't be recursive *}
12560
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
    69
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
    70
lemma is_true_Fls [simp]: "is_true(Fls,t) <-> False"
12610
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
    71
  by (simp add: is_true_def)
12560
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
    72
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
    73
lemma is_true_Var [simp]: "is_true(#v,t) <-> v \<in> t"
12610
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
    74
  by (simp add: is_true_def)
12560
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
    75
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
    76
lemma is_true_Imp [simp]: "is_true(p=>q,t) <-> (is_true(p,t)-->is_true(q,t))"
12610
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
    77
  by (simp add: is_true_def)
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
    78
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
    79
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
    80
subsubsection {* Logical consequence *}
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
    81
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
    82
text {*
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
    83
  For every valuation, if all elements of @{text H} are true then so
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
    84
  is @{text p}.
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
    85
*}
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
    86
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
    87
constdefs
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
    88
  logcon :: "[i,i] => o"    (infixl "|=" 50)
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
    89
  "H |= p == \<forall>t. (\<forall>q \<in> H. is_true(q,t)) --> is_true(p,t)"
12560
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
    90
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
    91
12610
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
    92
text {*
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
    93
  A finite set of hypotheses from @{text t} and the @{text Var}s in
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
    94
  @{text p}.
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
    95
*}
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
    96
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
    97
consts
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
    98
  hyps :: "[i,i] => i"
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
    99
primrec
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   100
  "hyps(Fls, t) = 0"
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   101
  "hyps(Var(v), t) = (if v \<in> t then {#v} else {#v=>Fls})"
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   102
  "hyps(p=>q, t) = hyps(p,t) \<union> hyps(q,t)"
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   103
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   104
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   105
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   106
subsection {* Proof theory of propositional logic *}
12560
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
   107
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
   108
lemma thms_mono: "G \<subseteq> H ==> thms(G) \<subseteq> thms(H)"
12610
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   109
  apply (unfold thms.defs)
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   110
  apply (rule lfp_mono)
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   111
    apply (rule thms.bnd_mono)+
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   112
  apply (assumption | rule univ_mono basic_monos)+
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   113
  done
12560
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
   114
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
   115
lemmas thms_in_pl = thms.dom_subset [THEN subsetD]
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
   116
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
   117
inductive_cases ImpE: "p=>q \<in> propn"
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
   118
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
   119
lemma thms_MP: "[| H |- p=>q;  H |- p |] ==> H |- q"
12610
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   120
  -- {* Stronger Modus Ponens rule: no typechecking! *}
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   121
  apply (rule thms.MP)
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   122
     apply (erule asm_rl thms_in_pl thms_in_pl [THEN ImpE])+
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   123
  done
12560
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
   124
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
   125
lemma thms_I: "p \<in> propn ==> H |- p=>p"
12610
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   126
  -- {*Rule is called @{text I} for Identity Combinator, not for Introduction. *}
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   127
  apply (rule thms.S [THEN thms_MP, THEN thms_MP])
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   128
      apply (rule_tac [5] thms.K)
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   129
       apply (rule_tac [4] thms.K)
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   130
         apply simp_all
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   131
  done
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   132
12560
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
   133
12610
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   134
subsubsection {* Weakening, left and right *}
12560
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
   135
12610
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   136
lemma weaken_left: "[| G \<subseteq> H;  G|-p |] ==> H|-p"
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   137
  -- {* Order of premises is convenient with @{text THEN} *}
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   138
  by (erule thms_mono [THEN subsetD])
12560
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
   139
12610
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   140
lemma weaken_left_cons: "H |- p ==> cons(a,H) |- p"
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   141
  by (erule subset_consI [THEN weaken_left])
12560
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
   142
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
   143
lemmas weaken_left_Un1  = Un_upper1 [THEN weaken_left]
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
   144
lemmas weaken_left_Un2  = Un_upper2 [THEN weaken_left]
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
   145
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
   146
lemma weaken_right: "[| H |- q;  p \<in> propn |] ==> H |- p=>q"
12610
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   147
  by (simp_all add: thms.K [THEN thms_MP] thms_in_pl)
12560
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
   148
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
   149
12610
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   150
subsubsection {* The deduction theorem *}
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   151
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   152
theorem deduction: "[| cons(p,H) |- q;  p \<in> propn |] ==>  H |- p=>q"
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   153
  apply (erule thms.induct)
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   154
      apply (blast intro: thms_I thms.H [THEN weaken_right])
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   155
     apply (blast intro: thms.K [THEN weaken_right])
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   156
    apply (blast intro: thms.S [THEN weaken_right])
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   157
   apply (blast intro: thms.DN [THEN weaken_right])
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   158
  apply (blast intro: thms.S [THEN thms_MP [THEN thms_MP]])
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   159
  done
12560
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
   160
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
   161
12610
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   162
subsubsection {* The cut rule *}
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   163
12560
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
   164
lemma cut: "[| H|-p;  cons(p,H) |- q |] ==>  H |- q"
12610
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   165
  apply (rule deduction [THEN thms_MP])
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   166
    apply (simp_all add: thms_in_pl)
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   167
  done
12560
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
   168
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
   169
lemma thms_FlsE: "[| H |- Fls; p \<in> propn |] ==> H |- p"
12610
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   170
  apply (rule thms.DN [THEN thms_MP])
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   171
   apply (rule_tac [2] weaken_right)
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   172
    apply (simp_all add: propn.intros)
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   173
  done
12560
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
   174
12610
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   175
lemma thms_notE: "[| H |- p=>Fls;  H |- p;  q \<in> propn |] ==> H |- q"
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   176
  by (erule thms_MP [THEN thms_FlsE])
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   177
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   178
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   179
subsubsection {* Soundness of the rules wrt truth-table semantics *}
12560
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
   180
12610
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   181
theorem soundness: "H |- p ==> H |= p"
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   182
  apply (unfold logcon_def)
18415
eb68dc98bda2 improved proofs;
wenzelm
parents: 16417
diff changeset
   183
  apply (induct set: thms)
12610
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   184
      apply auto
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   185
  done
12560
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
   186
12610
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   187
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   188
subsection {* Completeness *}
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   189
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   190
subsubsection {* Towards the completeness proof *}
12560
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
   191
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
   192
lemma Fls_Imp: "[| H |- p=>Fls; q \<in> propn |] ==> H |- p=>q"
12610
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   193
  apply (frule thms_in_pl)
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   194
  apply (rule deduction)
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   195
   apply (rule weaken_left_cons [THEN thms_notE])
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   196
     apply (blast intro: thms.H elim: ImpE)+
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   197
  done
12560
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
   198
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
   199
lemma Imp_Fls: "[| H |- p;  H |- q=>Fls |] ==> H |- (p=>q)=>Fls"
12610
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   200
  apply (frule thms_in_pl)
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   201
  apply (frule thms_in_pl [of concl: "q=>Fls"])
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   202
  apply (rule deduction)
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   203
   apply (erule weaken_left_cons [THEN thms_MP])
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   204
   apply (rule consI1 [THEN thms.H, THEN thms_MP])
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   205
    apply (blast intro: weaken_left_cons elim: ImpE)+
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   206
  done
12560
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
   207
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
   208
lemma hyps_thms_if:
12610
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   209
    "p \<in> propn ==> hyps(p,t) |- (if is_true(p,t) then p else p=>Fls)"
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   210
  -- {* Typical example of strengthening the induction statement. *}
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   211
  apply simp
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   212
  apply (induct_tac p)
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   213
    apply (simp_all add: thms_I thms.H)
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   214
  apply (safe elim!: Fls_Imp [THEN weaken_left_Un1] Fls_Imp [THEN weaken_left_Un2])
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   215
  apply (blast intro: weaken_left_Un1 weaken_left_Un2 weaken_right Imp_Fls)+
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   216
  done
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   217
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   218
lemma logcon_thms_p: "[| p \<in> propn;  0 |= p |] ==> hyps(p,t) |- p"
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   219
  -- {* Key lemma for completeness; yields a set of assumptions satisfying @{text p} *}
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   220
  apply (drule hyps_thms_if)
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   221
  apply (simp add: logcon_def)
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   222
  done
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   223
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   224
text {*
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   225
  For proving certain theorems in our new propositional logic.
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   226
*}
12560
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
   227
12610
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   228
lemmas propn_SIs = propn.intros deduction
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   229
  and propn_Is = thms_in_pl thms.H thms.H [THEN thms_MP]
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   230
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   231
text {*
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   232
  The excluded middle in the form of an elimination rule.
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   233
*}
12560
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
   234
12610
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   235
lemma thms_excluded_middle:
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   236
    "[| p \<in> propn;  q \<in> propn |] ==> H |- (p=>q) => ((p=>Fls)=>q) => q"
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   237
  apply (rule deduction [THEN deduction])
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   238
    apply (rule thms.DN [THEN thms_MP])
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   239
     apply (best intro!: propn_SIs intro: propn_Is)+
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   240
  done
12560
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
   241
12610
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   242
lemma thms_excluded_middle_rule:
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   243
  "[| cons(p,H) |- q;  cons(p=>Fls,H) |- q;  p \<in> propn |] ==> H |- q"
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   244
  -- {* Hard to prove directly because it requires cuts *}
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   245
  apply (rule thms_excluded_middle [THEN thms_MP, THEN thms_MP])
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   246
     apply (blast intro!: propn_SIs intro: propn_Is)+
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   247
  done
12560
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
   248
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
   249
12610
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   250
subsubsection {* Completeness -- lemmas for reducing the set of assumptions *}
12560
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
   251
12610
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   252
text {*
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   253
  For the case @{prop "hyps(p,t)-cons(#v,Y) |- p"} we also have @{prop
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   254
  "hyps(p,t)-{#v} \<subseteq> hyps(p, t-{v})"}.
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   255
*}
12560
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
   256
12610
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   257
lemma hyps_Diff:
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   258
    "p \<in> propn ==> hyps(p, t-{v}) \<subseteq> cons(#v=>Fls, hyps(p,t)-{#v})"
18415
eb68dc98bda2 improved proofs;
wenzelm
parents: 16417
diff changeset
   259
  by (induct set: propn) auto
12560
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
   260
12610
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   261
text {*
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   262
  For the case @{prop "hyps(p,t)-cons(#v => Fls,Y) |- p"} we also have
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   263
  @{prop "hyps(p,t)-{#v=>Fls} \<subseteq> hyps(p, cons(v,t))"}.
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   264
*}
12560
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
   265
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
   266
lemma hyps_cons:
12610
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   267
    "p \<in> propn ==> hyps(p, cons(v,t)) \<subseteq> cons(#v, hyps(p,t)-{#v=>Fls})"
18415
eb68dc98bda2 improved proofs;
wenzelm
parents: 16417
diff changeset
   268
  by (induct set: propn) auto
12560
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
   269
12610
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   270
text {* Two lemmas for use with @{text weaken_left} *}
12560
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
   271
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
   272
lemma cons_Diff_same: "B-C \<subseteq> cons(a, B-cons(a,C))"
12610
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   273
  by blast
12560
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
   274
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
   275
lemma cons_Diff_subset2: "cons(a, B-{c}) - D \<subseteq> cons(a, B-cons(c,D))"
12610
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   276
  by blast
12560
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
   277
12610
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   278
text {*
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   279
  The set @{term "hyps(p,t)"} is finite, and elements have the form
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   280
  @{term "#v"} or @{term "#v=>Fls"}; could probably prove the stronger
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   281
  @{prop "hyps(p,t) \<in> Fin(hyps(p,0) \<union> hyps(p,nat))"}.
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   282
*}
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   283
12560
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
   284
lemma hyps_finite: "p \<in> propn ==> hyps(p,t) \<in> Fin(\<Union>v \<in> nat. {#v, #v=>Fls})"
18415
eb68dc98bda2 improved proofs;
wenzelm
parents: 16417
diff changeset
   285
  by (induct set: propn) auto
12560
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
   286
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
   287
lemmas Diff_weaken_left = Diff_mono [OF _ subset_refl, THEN weaken_left]
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
   288
12610
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   289
text {*
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   290
  Induction on the finite set of assumptions @{term "hyps(p,t0)"}.  We
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   291
  may repeatedly subtract assumptions until none are left!
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   292
*}
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   293
12560
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
   294
lemma completeness_0_lemma [rule_format]:
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
   295
    "[| p \<in> propn;  0 |= p |] ==> \<forall>t. hyps(p,t) - hyps(p,t0) |- p"
12610
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   296
  apply (frule hyps_finite)
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   297
  apply (erule Fin_induct)
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   298
   apply (simp add: logcon_thms_p Diff_0)
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   299
  txt {* inductive step *}
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   300
  apply safe
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   301
   txt {* Case @{prop "hyps(p,t)-cons(#v,Y) |- p"} *}
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   302
   apply (rule thms_excluded_middle_rule)
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   303
     apply (erule_tac [3] propn.intros)
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   304
    apply (blast intro: cons_Diff_same [THEN weaken_left])
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   305
   apply (blast intro: cons_Diff_subset2 [THEN weaken_left]
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   306
     hyps_Diff [THEN Diff_weaken_left])
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   307
  txt {* Case @{prop "hyps(p,t)-cons(#v => Fls,Y) |- p"} *}
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   308
  apply (rule thms_excluded_middle_rule)
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   309
    apply (erule_tac [3] propn.intros)
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   310
   apply (blast intro: cons_Diff_subset2 [THEN weaken_left]
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   311
     hyps_cons [THEN Diff_weaken_left])
12560
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
   312
  apply (blast intro: cons_Diff_same [THEN weaken_left])
12610
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   313
  done
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   314
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   315
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   316
subsubsection {* Completeness theorem *}
12560
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
   317
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
   318
lemma completeness_0: "[| p \<in> propn;  0 |= p |] ==> 0 |- p"
12610
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   319
  -- {* The base case for completeness *}
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   320
  apply (rule Diff_cancel [THEN subst])
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   321
  apply (blast intro: completeness_0_lemma)
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   322
  done
12560
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
   323
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
   324
lemma logcon_Imp: "[| cons(p,H) |= q |] ==> H |= p=>q"
12610
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   325
  -- {* A semantic analogue of the Deduction Theorem *}
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   326
  by (simp add: logcon_def)
12560
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
   327
18415
eb68dc98bda2 improved proofs;
wenzelm
parents: 16417
diff changeset
   328
lemma completeness:
eb68dc98bda2 improved proofs;
wenzelm
parents: 16417
diff changeset
   329
     "H \<in> Fin(propn) ==> p \<in> propn \<Longrightarrow> H |= p \<Longrightarrow> H |- p"
20503
503ac4c5ef91 induct method: renamed 'fixing' to 'arbitrary';
wenzelm
parents: 18415
diff changeset
   330
  apply (induct arbitrary: p set: Fin)
12610
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   331
   apply (safe intro!: completeness_0)
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   332
  apply (rule weaken_left_cons [THEN thms_MP])
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   333
   apply (blast intro!: logcon_Imp propn.intros)
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   334
  apply (blast intro: propn_Is)
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   335
  done
12560
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
   336
12610
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   337
theorem thms_iff: "H \<in> Fin(propn) ==> H |- p <-> H |= p \<and> p \<in> propn"
8b9845807f77 tuned document sources;
wenzelm
parents: 12560
diff changeset
   338
  by (blast intro: soundness completeness thms_in_pl)
12560
5820841f21fd converted some ZF/Induct examples to Isar
paulson
parents: 12088
diff changeset
   339
12088
6f463d16cbd0 reorganization of the ZF examples
paulson
parents:
diff changeset
   340
end