src/Doc/Isar_Ref/Proof_Script.thy
author wenzelm
Fri, 13 Nov 2015 14:49:30 +0100
changeset 61656 cfabbc083977
parent 61503 28e788ca2c5d
child 61657 5b878bc6ae98
permissions -rw-r--r--
more uniform jEdit properties;
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
61656
cfabbc083977 more uniform jEdit properties;
wenzelm
parents: 61503
diff changeset
     1
(*:maxLineLen=78:*)
cfabbc083977 more uniform jEdit properties;
wenzelm
parents: 61503
diff changeset
     2
60484
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
     3
theory Proof_Script
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
     4
imports Base Main
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
     5
begin
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
     6
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
     7
chapter \<open>Proof scripts\<close>
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
     8
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
     9
text \<open>
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
    10
  Interactive theorem proving is traditionally associated with ``proof
61477
e467ae7aa808 more control symbols;
wenzelm
parents: 61458
diff changeset
    11
  scripts'', but Isabelle/Isar is centered around structured \<^emph>\<open>proof
e467ae7aa808 more control symbols;
wenzelm
parents: 61458
diff changeset
    12
  documents\<close> instead (see also \chref{ch:proofs}).
60484
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
    13
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
    14
  Nonetheless, it is possible to emulate proof scripts by sequential
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
    15
  refinements of a proof state in backwards mode, notably with the @{command
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
    16
  apply} command (see \secref{sec:tactic-commands}). There are also various
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
    17
  proof methods that allow to refer to implicit goal state information that
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
    18
  is normally not accessible to structured Isar proofs (see
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
    19
  \secref{sec:tactics}).
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
    20
\<close>
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
    21
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
    22
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
    23
section \<open>Commands for step-wise refinement \label{sec:tactic-commands}\<close>
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
    24
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
    25
text \<open>
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
    26
  \begin{matharray}{rcl}
61493
0debd22f0c0e isabelle update_cartouches -t;
wenzelm
parents: 61477
diff changeset
    27
    @{command_def "supply"}\<open>\<^sup>*\<close> & : & \<open>proof(prove) \<rightarrow> proof(prove)\<close> \\
0debd22f0c0e isabelle update_cartouches -t;
wenzelm
parents: 61477
diff changeset
    28
    @{command_def "apply"}\<open>\<^sup>*\<close> & : & \<open>proof(prove) \<rightarrow> proof(prove)\<close> \\
0debd22f0c0e isabelle update_cartouches -t;
wenzelm
parents: 61477
diff changeset
    29
    @{command_def "apply_end"}\<open>\<^sup>*\<close> & : & \<open>proof(state) \<rightarrow> proof(state)\<close> \\
0debd22f0c0e isabelle update_cartouches -t;
wenzelm
parents: 61477
diff changeset
    30
    @{command_def "done"}\<open>\<^sup>*\<close> & : & \<open>proof(prove) \<rightarrow> proof(state) | local_theory | theory\<close> \\
0debd22f0c0e isabelle update_cartouches -t;
wenzelm
parents: 61477
diff changeset
    31
    @{command_def "defer"}\<open>\<^sup>*\<close> & : & \<open>proof \<rightarrow> proof\<close> \\
0debd22f0c0e isabelle update_cartouches -t;
wenzelm
parents: 61477
diff changeset
    32
    @{command_def "prefer"}\<open>\<^sup>*\<close> & : & \<open>proof \<rightarrow> proof\<close> \\
0debd22f0c0e isabelle update_cartouches -t;
wenzelm
parents: 61477
diff changeset
    33
    @{command_def "back"}\<open>\<^sup>*\<close> & : & \<open>proof \<rightarrow> proof\<close> \\
60484
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
    34
  \end{matharray}
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
    35
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
    36
  @{rail \<open>
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
    37
    @@{command supply} (@{syntax thmdef}? @{syntax thmrefs} + @'and')
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
    38
    ;
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
    39
    ( @@{command apply} | @@{command apply_end} ) @{syntax method}
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
    40
    ;
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
    41
    @@{command defer} @{syntax nat}?
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
    42
    ;
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
    43
    @@{command prefer} @{syntax nat}
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
    44
  \<close>}
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
    45
61439
2bf52eec4e8a more symbols;
wenzelm
parents: 60631
diff changeset
    46
  \<^descr> @{command "supply"} supports fact definitions during goal
60484
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
    47
  refinement: it is similar to @{command "note"}, but it operates in
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
    48
  backwards mode and does not have any impact on chained facts.
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
    49
61493
0debd22f0c0e isabelle update_cartouches -t;
wenzelm
parents: 61477
diff changeset
    50
  \<^descr> @{command "apply"}~\<open>m\<close> applies proof method \<open>m\<close> in
0debd22f0c0e isabelle update_cartouches -t;
wenzelm
parents: 61477
diff changeset
    51
  initial position, but unlike @{command "proof"} it retains ``\<open>proof(prove)\<close>'' mode.  Thus consecutive method applications may be
60484
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
    52
  given just as in tactic scripts.
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
    53
61493
0debd22f0c0e isabelle update_cartouches -t;
wenzelm
parents: 61477
diff changeset
    54
  Facts are passed to \<open>m\<close> as indicated by the goal's
61477
e467ae7aa808 more control symbols;
wenzelm
parents: 61458
diff changeset
    55
  forward-chain mode, and are \<^emph>\<open>consumed\<close> afterwards.  Thus any
60484
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
    56
  further @{command "apply"} command would always work in a purely
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
    57
  backward manner.
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
    58
61493
0debd22f0c0e isabelle update_cartouches -t;
wenzelm
parents: 61477
diff changeset
    59
  \<^descr> @{command "apply_end"}~\<open>m\<close> applies proof method \<open>m\<close> as if in terminal position.  Basically, this simulates a
60484
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
    60
  multi-step tactic script for @{command "qed"}, but may be given
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
    61
  anywhere within the proof body.
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
    62
61493
0debd22f0c0e isabelle update_cartouches -t;
wenzelm
parents: 61477
diff changeset
    63
  No facts are passed to \<open>m\<close> here.  Furthermore, the static
60484
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
    64
  context is that of the enclosing goal (as for actual @{command
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
    65
  "qed"}).  Thus the proof method may not refer to any assumptions
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
    66
  introduced in the current body, for example.
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
    67
61439
2bf52eec4e8a more symbols;
wenzelm
parents: 60631
diff changeset
    68
  \<^descr> @{command "done"} completes a proof script, provided that the
60484
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
    69
  current goal state is solved completely.  Note that actual
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
    70
  structured proof commands (e.g.\ ``@{command "."}'' or @{command
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
    71
  "sorry"}) may be used to conclude proof scripts as well.
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
    72
61493
0debd22f0c0e isabelle update_cartouches -t;
wenzelm
parents: 61477
diff changeset
    73
  \<^descr> @{command "defer"}~\<open>n\<close> and @{command "prefer"}~\<open>n\<close>
60484
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
    74
  shuffle the list of pending goals: @{command "defer"} puts off
61493
0debd22f0c0e isabelle update_cartouches -t;
wenzelm
parents: 61477
diff changeset
    75
  sub-goal \<open>n\<close> to the end of the list (\<open>n = 1\<close> by
0debd22f0c0e isabelle update_cartouches -t;
wenzelm
parents: 61477
diff changeset
    76
  default), while @{command "prefer"} brings sub-goal \<open>n\<close> to the
60484
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
    77
  front.
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
    78
61439
2bf52eec4e8a more symbols;
wenzelm
parents: 60631
diff changeset
    79
  \<^descr> @{command "back"} does back-tracking over the result sequence
60484
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
    80
  of the latest proof command.  Any proof command may return multiple
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
    81
  results, and this command explores the possibilities step-by-step.
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
    82
  It is mainly useful for experimentation and interactive exploration,
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
    83
  and should be avoided in finished proofs.
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
    84
\<close>
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
    85
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
    86
60631
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
    87
section \<open>Explicit subgoal structure\<close>
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
    88
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
    89
text \<open>
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
    90
  \begin{matharray}{rcl}
61493
0debd22f0c0e isabelle update_cartouches -t;
wenzelm
parents: 61477
diff changeset
    91
    @{command_def "subgoal"}\<open>\<^sup>*\<close> & : & \<open>proof \<rightarrow> proof\<close> \\
60631
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
    92
  \end{matharray}
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
    93
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
    94
  @{rail \<open>
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
    95
    @@{command subgoal} @{syntax thmbind}? prems? params?
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
    96
    ;
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
    97
    prems: @'premises' @{syntax thmbind}?
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
    98
    ;
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
    99
    params: @'for' '\<dots>'? (('_' | @{syntax name})+)
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
   100
  \<close>}
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
   101
61439
2bf52eec4e8a more symbols;
wenzelm
parents: 60631
diff changeset
   102
  \<^descr> @{command "subgoal"} allows to impose some structure on backward
60631
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
   103
  refinements, to avoid proof scripts degenerating into long of @{command
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
   104
  apply} sequences.
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
   105
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
   106
  The current goal state, which is essentially a hidden part of the Isar/VM
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
   107
  configurtation, is turned into a proof context and remaining conclusion.
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
   108
  This correponds to @{command fix}~/ @{command assume}~/ @{command show} in
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
   109
  structured proofs, but the text of the parameters, premises and conclusion
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
   110
  is not given explicitly.
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
   111
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
   112
  Goal parameters may be specified separately, in order to allow referring
61493
0debd22f0c0e isabelle update_cartouches -t;
wenzelm
parents: 61477
diff changeset
   113
  to them in the proof body: ``@{command subgoal}~@{keyword "for"}~\<open>x
0debd22f0c0e isabelle update_cartouches -t;
wenzelm
parents: 61477
diff changeset
   114
  y z\<close>'' names a \<^emph>\<open>prefix\<close>, and ``@{command subgoal}~@{keyword
0debd22f0c0e isabelle update_cartouches -t;
wenzelm
parents: 61477
diff changeset
   115
  "for"}~\<open>\<dots> x y z\<close>'' names a \<^emph>\<open>suffix\<close> of goal parameters. The
61503
28e788ca2c5d more control symbols;
wenzelm
parents: 61493
diff changeset
   116
  latter uses a literal \<^verbatim>\<open>\<dots>\<close> symbol as notation. Parameter
60631
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
   117
  positions may be skipped via dummies (underscore). Unspecified names
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
   118
  remain internal, and thus inaccessible in the proof text.
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
   119
61493
0debd22f0c0e isabelle update_cartouches -t;
wenzelm
parents: 61477
diff changeset
   120
  ``@{command subgoal}~@{keyword "premises"}~\<open>prems\<close>'' indicates that
60631
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
   121
  goal premises should be turned into assumptions of the context (otherwise
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
   122
  the remaining conclusion is a Pure implication). The fact name and
61493
0debd22f0c0e isabelle update_cartouches -t;
wenzelm
parents: 61477
diff changeset
   123
  attributes are optional; the particular name ``\<open>prems\<close>'' is a common
60631
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
   124
  convention for the premises of an arbitrary goal context in proof scripts.
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
   125
61493
0debd22f0c0e isabelle update_cartouches -t;
wenzelm
parents: 61477
diff changeset
   126
  ``@{command subgoal}~\<open>result\<close>'' indicates a fact name for the result
60631
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
   127
  of a proven subgoal. Thus it may be re-used in further reasoning, similar
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
   128
  to the result of @{command show} in structured Isar proofs.
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
   129
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
   130
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
   131
  Here are some abstract examples:
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
   132
\<close>
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
   133
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
   134
lemma "\<And>x y z. A x \<Longrightarrow> B y \<Longrightarrow> C z"
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
   135
  and "\<And>u v. X u \<Longrightarrow> Y v"
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
   136
  subgoal sorry
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
   137
  subgoal sorry
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
   138
  done
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
   139
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
   140
lemma "\<And>x y z. A x \<Longrightarrow> B y \<Longrightarrow> C z"
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
   141
  and "\<And>u v. X u \<Longrightarrow> Y v"
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
   142
  subgoal for x y z sorry
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
   143
  subgoal for u v sorry
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
   144
  done
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
   145
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
   146
lemma "\<And>x y z. A x \<Longrightarrow> B y \<Longrightarrow> C z"
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
   147
  and "\<And>u v. X u \<Longrightarrow> Y v"
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
   148
  subgoal premises for x y z
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
   149
    using \<open>A x\<close> \<open>B y\<close>
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
   150
    sorry
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
   151
  subgoal premises for u v
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
   152
    using \<open>X u\<close>
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
   153
    sorry
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
   154
  done
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
   155
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
   156
lemma "\<And>x y z. A x \<Longrightarrow> B y \<Longrightarrow> C z"
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
   157
  and "\<And>u v. X u \<Longrightarrow> Y v"
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
   158
  subgoal r premises prems for x y z
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
   159
  proof -
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
   160
    have "A x" by (fact prems)
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
   161
    moreover have "B y" by (fact prems)
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
   162
    ultimately show ?thesis sorry
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
   163
  qed
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
   164
  subgoal premises prems for u v
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
   165
  proof -
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
   166
    have "\<And>x y z. A x \<Longrightarrow> B y \<Longrightarrow> C z" by (fact r)
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
   167
    moreover
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
   168
    have "X u" by (fact prems)
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
   169
    ultimately show ?thesis sorry
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
   170
  qed
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
   171
  done
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
   172
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
   173
lemma "\<And>x y z. A x \<Longrightarrow> B y \<Longrightarrow> C z"
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
   174
  subgoal premises prems for \<dots> z
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
   175
  proof -
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
   176
    from prems show "C z" sorry
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
   177
  qed
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
   178
  done
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
   179
441fdbfbb2d3 documentation for 'subgoal' command;
wenzelm
parents: 60484
diff changeset
   180
60484
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   181
section \<open>Tactics: improper proof methods \label{sec:tactics}\<close>
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   182
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   183
text \<open>
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   184
  The following improper proof methods emulate traditional tactics.
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   185
  These admit direct access to the goal state, which is normally
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   186
  considered harmful!  In particular, this may involve both numbered
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   187
  goal addressing (default 1), and dynamic instantiation within the
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   188
  scope of some subgoal.
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   189
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   190
  \begin{warn}
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   191
    Dynamic instantiations refer to universally quantified parameters
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   192
    of a subgoal (the dynamic context) rather than fixed variables and
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   193
    term abbreviations of a (static) Isar context.
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   194
  \end{warn}
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   195
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   196
  Tactic emulation methods, unlike their ML counterparts, admit
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   197
  simultaneous instantiation from both dynamic and static contexts.
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   198
  If names occur in both contexts goal parameters hide locally fixed
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   199
  variables.  Likewise, schematic variables refer to term
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   200
  abbreviations, if present in the static context.  Otherwise the
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   201
  schematic variable is interpreted as a schematic variable and left
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   202
  to be solved by unification with certain parts of the subgoal.
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   203
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   204
  Note that the tactic emulation proof methods in Isabelle/Isar are
61493
0debd22f0c0e isabelle update_cartouches -t;
wenzelm
parents: 61477
diff changeset
   205
  consistently named \<open>foo_tac\<close>.  Note also that variable names
60484
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   206
  occurring on left hand sides of instantiations must be preceded by a
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   207
  question mark if they coincide with a keyword or contain dots.  This
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   208
  is consistent with the attribute @{attribute "where"} (see
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   209
  \secref{sec:pure-meth-att}).
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   210
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   211
  \begin{matharray}{rcl}
61493
0debd22f0c0e isabelle update_cartouches -t;
wenzelm
parents: 61477
diff changeset
   212
    @{method_def rule_tac}\<open>\<^sup>*\<close> & : & \<open>method\<close> \\
0debd22f0c0e isabelle update_cartouches -t;
wenzelm
parents: 61477
diff changeset
   213
    @{method_def erule_tac}\<open>\<^sup>*\<close> & : & \<open>method\<close> \\
0debd22f0c0e isabelle update_cartouches -t;
wenzelm
parents: 61477
diff changeset
   214
    @{method_def drule_tac}\<open>\<^sup>*\<close> & : & \<open>method\<close> \\
0debd22f0c0e isabelle update_cartouches -t;
wenzelm
parents: 61477
diff changeset
   215
    @{method_def frule_tac}\<open>\<^sup>*\<close> & : & \<open>method\<close> \\
0debd22f0c0e isabelle update_cartouches -t;
wenzelm
parents: 61477
diff changeset
   216
    @{method_def cut_tac}\<open>\<^sup>*\<close> & : & \<open>method\<close> \\
0debd22f0c0e isabelle update_cartouches -t;
wenzelm
parents: 61477
diff changeset
   217
    @{method_def thin_tac}\<open>\<^sup>*\<close> & : & \<open>method\<close> \\
0debd22f0c0e isabelle update_cartouches -t;
wenzelm
parents: 61477
diff changeset
   218
    @{method_def subgoal_tac}\<open>\<^sup>*\<close> & : & \<open>method\<close> \\
0debd22f0c0e isabelle update_cartouches -t;
wenzelm
parents: 61477
diff changeset
   219
    @{method_def rename_tac}\<open>\<^sup>*\<close> & : & \<open>method\<close> \\
0debd22f0c0e isabelle update_cartouches -t;
wenzelm
parents: 61477
diff changeset
   220
    @{method_def rotate_tac}\<open>\<^sup>*\<close> & : & \<open>method\<close> \\
0debd22f0c0e isabelle update_cartouches -t;
wenzelm
parents: 61477
diff changeset
   221
    @{method_def tactic}\<open>\<^sup>*\<close> & : & \<open>method\<close> \\
0debd22f0c0e isabelle update_cartouches -t;
wenzelm
parents: 61477
diff changeset
   222
    @{method_def raw_tactic}\<open>\<^sup>*\<close> & : & \<open>method\<close> \\
60484
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   223
  \end{matharray}
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   224
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   225
  @{rail \<open>
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   226
    (@@{method rule_tac} | @@{method erule_tac} | @@{method drule_tac} |
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   227
      @@{method frule_tac} | @@{method cut_tac}) @{syntax goal_spec}? \<newline>
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   228
    (@{syntax named_insts} @{syntax for_fixes} @'in' @{syntax thmref} | @{syntax thmrefs} )
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   229
    ;
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   230
    @@{method thin_tac} @{syntax goal_spec}? @{syntax prop} @{syntax for_fixes}
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   231
    ;
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   232
    @@{method subgoal_tac} @{syntax goal_spec}? (@{syntax prop} +) @{syntax for_fixes}
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   233
    ;
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   234
    @@{method rename_tac} @{syntax goal_spec}? (@{syntax name} +)
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   235
    ;
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   236
    @@{method rotate_tac} @{syntax goal_spec}? @{syntax int}?
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   237
    ;
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   238
    (@@{method tactic} | @@{method raw_tactic}) @{syntax text}
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   239
  \<close>}
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   240
61439
2bf52eec4e8a more symbols;
wenzelm
parents: 60631
diff changeset
   241
  \<^descr> @{method rule_tac} etc. do resolution of rules with explicit
60484
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   242
  instantiation.  This works the same way as the ML tactics @{ML
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   243
  Rule_Insts.res_inst_tac} etc.\ (see @{cite "isabelle-implementation"}).
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   244
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   245
  Multiple rules may be only given if there is no instantiation; then
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   246
  @{method rule_tac} is the same as @{ML resolve_tac} in ML (see
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   247
  @{cite "isabelle-implementation"}).
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   248
61439
2bf52eec4e8a more symbols;
wenzelm
parents: 60631
diff changeset
   249
  \<^descr> @{method cut_tac} inserts facts into the proof state as
60484
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   250
  assumption of a subgoal; instantiations may be given as well.  Note
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   251
  that the scope of schematic variables is spread over the main goal
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   252
  statement and rule premises are turned into new subgoals.  This is
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   253
  in contrast to the regular method @{method insert} which inserts
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   254
  closed rule statements.
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   255
61493
0debd22f0c0e isabelle update_cartouches -t;
wenzelm
parents: 61477
diff changeset
   256
  \<^descr> @{method thin_tac}~\<open>\<phi>\<close> deletes the specified premise
0debd22f0c0e isabelle update_cartouches -t;
wenzelm
parents: 61477
diff changeset
   257
  from a subgoal.  Note that \<open>\<phi>\<close> may contain schematic
60484
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   258
  variables, to abbreviate the intended proposition; the first
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   259
  matching subgoal premise will be deleted.  Removing useless premises
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   260
  from a subgoal increases its readability and can make search tactics
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   261
  run faster.
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   262
61493
0debd22f0c0e isabelle update_cartouches -t;
wenzelm
parents: 61477
diff changeset
   263
  \<^descr> @{method subgoal_tac}~\<open>\<phi>\<^sub>1 \<dots> \<phi>\<^sub>n\<close> adds the propositions
0debd22f0c0e isabelle update_cartouches -t;
wenzelm
parents: 61477
diff changeset
   264
  \<open>\<phi>\<^sub>1 \<dots> \<phi>\<^sub>n\<close> as local premises to a subgoal, and poses the same
60484
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   265
  as new subgoals (in the original context).
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   266
61493
0debd22f0c0e isabelle update_cartouches -t;
wenzelm
parents: 61477
diff changeset
   267
  \<^descr> @{method rename_tac}~\<open>x\<^sub>1 \<dots> x\<^sub>n\<close> renames parameters of a
0debd22f0c0e isabelle update_cartouches -t;
wenzelm
parents: 61477
diff changeset
   268
  goal according to the list \<open>x\<^sub>1, \<dots>, x\<^sub>n\<close>, which refers to the
61477
e467ae7aa808 more control symbols;
wenzelm
parents: 61458
diff changeset
   269
  \<^emph>\<open>suffix\<close> of variables.
60484
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   270
61493
0debd22f0c0e isabelle update_cartouches -t;
wenzelm
parents: 61477
diff changeset
   271
  \<^descr> @{method rotate_tac}~\<open>n\<close> rotates the premises of a
0debd22f0c0e isabelle update_cartouches -t;
wenzelm
parents: 61477
diff changeset
   272
  subgoal by \<open>n\<close> positions: from right to left if \<open>n\<close> is
0debd22f0c0e isabelle update_cartouches -t;
wenzelm
parents: 61477
diff changeset
   273
  positive, and from left to right if \<open>n\<close> is negative; the
60484
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   274
  default value is 1.
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   275
61493
0debd22f0c0e isabelle update_cartouches -t;
wenzelm
parents: 61477
diff changeset
   276
  \<^descr> @{method tactic}~\<open>text\<close> produces a proof method from
60484
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   277
  any ML text of type @{ML_type tactic}.  Apart from the usual ML
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   278
  environment and the current proof context, the ML code may refer to
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   279
  the locally bound values @{ML_text facts}, which indicates any
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   280
  current facts used for forward-chaining.
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   281
61439
2bf52eec4e8a more symbols;
wenzelm
parents: 60631
diff changeset
   282
  \<^descr> @{method raw_tactic} is similar to @{method tactic}, but
60484
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   283
  presents the goal state in its raw internal form, where simultaneous
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   284
  subgoals appear as conjunction of the logical framework instead of
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   285
  the usual split into several subgoals.  While feature this is useful
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   286
  for debugging of complex method definitions, it should not never
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   287
  appear in production theories.
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   288
\<close>
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   289
98ee86354354 moved sections;
wenzelm
parents:
diff changeset
   290
end