-
Notifications
You must be signed in to change notification settings - Fork 21
/
lecture_tactics.v
658 lines (531 loc) · 21.4 KB
/
lecture_tactics.v
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
(** * Lecture 4: Tactics in UniMath *)
(** by Ralph Matthes, CNRS, IRIT, Univ. Toulouse, France *)
(** This is material for presentation at the UniMath school
2019 in Birmingham; an extended version for self-study
and for exploring the UniMath library is available as
[lecture_tactics_long_version.v].
It grew out of the presentation at the UniMath school
2017 in Birmingham.
Works with UniMath current as of mid-March 2019.
*)
(** Compiles with the command
[[
coqc -type-in-type lecture_tactics.v
]]
when placed into the UniMath library or with UniMath
installed into the current Coq. The option is crucial. *)
(** Can be transformed into HTML documentation with the command
[[
coqdoc -utf8 lecture_tactics.v
]]
*)
(** In Coq, one can define concepts by directly giving well-typed
terms, but one can also be helped in the construction by the
interactive mode.
*)
Require Import UniMath.Foundations.Preamble.
(** ** define a concept interactively: *)
Locate bool. (** a separate definition - [Init.Dataypes.bool] is in the Coq library *)
Definition myfirsttruthvalue: bool.
(** only the identifier and its type given, not the definiens *)
(** This opens the interactive mode.
The #<a href="https://github.com/UniMath/UniMath/tree/master/UniMath/README.md##unimath-coding-style">#UniMath style guide#</a>#
asks us to start what follows with [Proof.] in a separate line.
In vanilla Coq, this would be optional (it is anyway a "nop"). *)
Proof.
(** Now we still have to give the term, but we are in interactive mode. *)
(** If you want to see everything that *involves* booleans, then do *)
(* Search bool. *)
(** If you only want to find library elements that *yield* booleans, then try *)
(* SearchPattern bool. *)
(** [true] does not take an argument, and it is already a term we can take as definiens. *)
exact true.
(** [exact] is a tactic which takes the term as argument and informs Coq in the proof mode to
finish the current goal with that term. *)
(** We see in the response buffer: "No more subgoals."
Hence, there is nothing more to do, except for leaving the proof mode properly. *)
Defined.
(** [Defined.] instructs Coq to complete the whole interactive construction of a term,
verify it and to associate it with the given identifer, here [myfirsttruthvalue]. *)
(* Search bool. *)
(** The new definition appears at the beginning of the list. *)
Print myfirsttruthvalue.
(** *** a more compelling example *)
Definition mysecondtruthvalue: bool.
Proof.
(* Search bool. *)
apply negb.
(** applies the function [negb] to obtain the required boolean,
thus the system has to ask for its argument *)
exact myfirsttruthvalue.
Defined.
Print mysecondtruthvalue.
(**
[[
mysecondtruthvalue = negb myfirsttruthvalue
: bool
]]
*)
(** the definition is "as is", evaluation can be done subsequently: *)
Eval compute in mysecondtruthvalue.
(**
[[
= false
: bool
]]
*)
(** Again, not much has been gained by the interactive mode. *)
(** Here, we see a copy of the definition from the Coq library: *)
Definition andb (b1 b2:bool) : bool := if b1 then b2 else false.
(** only for illustration purposes - it would be better to define
it according to UniMath style *)
Definition mythirdtruthvalue: bool.
Proof.
(* Search bool. *)
apply andb.
(** [apply andb.] applies the function [andb] to obtain the required boolean,
thus the system has to ask for its TWO arguments, one by one. *)
(** This follows the proof pattern of "backward chaining" that tries to
attack goals instead of building up evidence. In the course of action,
more goals can be generated. The proof effort is over when no more
goal remains. *)
(** UniMath coding style asks you to use proof structuring syntax,
while vanilla Coq would allow you to write formally verified
"spaghetti code". *)
(** We tell Coq that we start working on the first subgoal. *)
-
(** only the "focused" subgoal is now on display *)
apply andb.
(** this again spawns two subgoals *)
(** we tell Coq that we start working on the first subgoal *)
+
(** normally, one would not leave the "bullet symbol" isolated in a line *)
exact mysecondtruthvalue.
+ exact myfirsttruthvalue.
(** The response buffer signals:
[[
This subproof is complete, but there are some unfocused goals.
Focus next goal with bullet -.
]]
*)
- exact true.
Defined.
(** The usual "UniMath bullet order" is -, +, *, --, ++, **, ---, +++, ***,
and so on (all the ones shown are being used).
Coq does not impose any order, so one can start with, e.g., *****,
if need be for the sake of experimenting with a proof.
Reuse of bullets even on one branch is possible by enclosing subproofs
in curly braces {}.
*)
Print mythirdtruthvalue.
Eval compute in mythirdtruthvalue.
(** You only saw the tactics [exact] and [apply] at work, and there was no context. *)
(** ** doing Curry-Howard logic *)
(** Interactive mode is more wide-spread when it comes to carrying out proofs
(the command [Proof.] is reminiscent of that). *)
(** Disclaimer: this section has a logical flavour, but the "connectives"
are not confined to the world of propositional or predicate logic.
In particular, there is no reference to the sort Prop of Coq.
Prop is not used at all in UniMath!
On first reading, it is useful to focus on the logical meaning. *)
Locate "->". (** non-dependent product, can be seen as implication *)
Locate "∅".
Print empty. (** an inductive type that has no constructor *)
Locate "¬". (** we need to refer to the UniMath library more explicitly *)
Require Import UniMath.Foundations.PartA.
(** Do not write the import statements in the middle of a vernacular file.
Here, it is done to show the order of appearance, but this is only for
reasons of pedagogy.
*)
Locate "¬".
Print neg.
(** Negation is not a native concept; it is reduced to implication,
as is usual in constructive logic. *)
Locate "×".
Print dirprod. (** non-dependent sum, can be seen as conjunction *)
Definition combinatorS (A B C: UU): (A × B -> C) × (A -> B) × A -> C.
Proof.
(** how to infer an implication? *)
intro Hyp123.
set (Hyp1 := pr1 Hyp123).
(** This is already a bit of "forward chaining" which is a fact-building process. *)
set (Hyp23 := pr2 Hyp123).
cbn in Hyp23.
(** [cbn] simplifies a goal, and [cbn in H] does this for hypothesis [H];
note that [simpl] has the same high-level description but should better
be avoided in new developments. *)
set (Hyp2 := pr1 Hyp23).
set (Hyp3 := pr2 Hyp23).
cbn in Hyp3.
apply Hyp1.
apply tpair.
- exact Hyp3.
- apply Hyp2.
exact Hyp3.
Defined.
Print combinatorS.
Eval compute in combinatorS.
(** a more comfortable variant: *)
Definition combinatorS_induction (A B C: UU): (A × B -> C) × (A -> B) × A -> C.
Proof.
intro Hyp123.
induction Hyp123 as [Hyp1 Hyp23].
apply Hyp1.
induction Hyp23 as [Hyp2 Hyp3].
apply tpair.
- exact Hyp3.
- apply Hyp2.
exact Hyp3.
Defined.
Print combinatorS_induction.
Eval compute in combinatorS_induction.
Definition combinatorS_curried (A B C: UU): (A -> B -> C) -> (A -> B) -> A -> C.
Proof.
(** use [intro] three times or rather [intros] once; reasonable coding style
gives names to all hypotheses that are not already present
in the goal formula, see also the next definition *)
intros H1 H2 H3.
apply H1.
- exact H3.
- set (proofofB := H2 H3).
(** set up abbreviations that can make use of the current context *)
exact proofofB.
Defined.
Print combinatorS_curried.
(** We see that [set] gives rise to [let]-expressions that are known
from functional programming languages, in other words: the use of
[set] is not a "macro" facility to ease typing. *)
(** [let]-bindings disappear when computing the normal form of a term: *)
Eval compute in combinatorS_curried.
(** [set] can only be used if the term of the desired type is provided,
but we can also work interactively as follows: *)
Definition combinatorS_curried_with_assert (A B C: UU):
(A -> B -> C) -> (A -> B) -> A -> C.
Proof.
intros H1 H2 H3.
(** we can momentarily forget about our goal and build up knowledge: *)
assert (proofofB : B).
(** the current goal [C] becomes the second sub-goal, and the new current goal is [B] *)
(** It is not wise to handle this situation by "bullets" since many assertions
can appear in a linearly thought argument. It would pretend a tree structure
although it would rather be a comb. The proof of the assertion should
be packaged by enclosing it in curly braces like so: *)
{ apply H2.
exact H3.
}
(** Now, [proofofB] is in the context with type [B]. *)
apply H1.
- exact H3.
- exact proofofB.
Defined.
(** the wildcard [?] for [intros] *)
Definition combinatorS_curried_variant (A B C: UU):
(A -> B -> C) -> (A -> B) -> forall H7:A, C.
Proof.
intros H1 H2 ?.
(** a question mark instructs Coq to use the corresponding identifier
from the goal formula *)
exact (H1 H7 (H2 H7)).
Defined.
(** the wildcard [_] for [intros] forgets the respective hypothesis *)
Locate "⨿". (** this symbol is harder to type in with Agda input
mode: use backslash union and then choose the right symbol with
arrow down key: the symbol might only appear in the menu to
choose from after having hit the arrow down key! *)
Print coprod. (** defined in UniMath preamble as inductive type,
can be seen as disjunction *)
Locate "∏".
(** company-coq shows the result with universal quantifiers,
but that is only the "prettified" version of "forall" which
is a basic syntactic element of the language of Coq. *)
Locate "=". (** the identity type of UniMath *)
Print paths.
(** *** How to decompose formulas *)
(** In "Coq in a Hurry", Yves Bertot gives recipes for decomposing the usual logical
connectives. Crucially, one has to distinguish between decomposition of the goal
or decomposition of a hypothesis in the context.
Here, we do it alike.
*)
(** **** Decomposition of goal formulas:
A1,...,An -> B: tactic [intro] or [intros]
[¬ A]: idem (negation is defined through implication)
Π-type: idem (implication is a special case of product)
[×]: [apply dirprodpair], less specifically [apply tpair]
Σ-type: [use tpair] or [exists], see explanations below
[A ⨿ B]: [apply ii1] or [apply ii2], but this constitutes a choice
of which way to go
[A = B]: [apply idpath], however this only works when the expressions
are convertible
[nat]: [exact 1000], for example (a logical reading is not
useful for this type); beware that UniMath knows only 27 numerals
*)
(** **** Decomposition of formula of hypothesis [H]:
[∅]: [induction H]
This terminates a goal. (It corresponds to ex falso quodlibet.)
There is naturally no recipe for getting rid of [∅] in the conclusion.
But [apply fromempty] allows to replace any goal by [∅].
A1,...,An -> B: [apply H], but the formula has to fit with the goal
[×]: [induction H as [H1 H2]]
As seen above, this introduces names of hypotheses for the two components.
Σ-type: idem, but rather more asymmetric as [induction H as [x H']]
[A ⨿ B]: [induction H as [H1 | H2]]
This introduces names for the hypotheses in the two branches.
[A = B]: [induction H]
The supposedly equal [A] and [B] become the same [A] in the goal.
This is the least intuitive rule for the non-expert in type theory.
[nat]: [induction n as [ | n IH]]
Here, we assume that the hypothesis has the name [n] which
is more idiomatic than [H], and there is no extra name in
the base case, while in the step case, the preceding number
is now given the name [n] and the induction hypothesis is
named [IH].
*)
(** ** Working with holes in proofs *)
(** Our previous proofs were particularly clear because the goal formulas
and all hypotheses were fully given by the system.
*)
Print pathscomp0.
(** This is the UniMath proof of transitivity of equality. *)
(** The salient feature of transitivity is that the intermediate
expression cannot be deduced from the equation to be proven. *)
Lemma badex (A B C D: UU) : ((A × B) × (C × D)) = (A × (B × C) × D).
(** Notice that the outermost parentheses are needed here. *)
Proof.
Fail apply pathscomp0.
(**
[[
The command has indeed failed with message:
Cannot infer the implicit parameter b of pathscomp0 whose type is
"Type" in environment:
A, B, C, D : UU
]]
(When using the standard setup of UniMath with ProofGeneral,
this message appears only when starting emacs at the root of the
UniMath library.)
[Fail] announces failure and therefore allows to continue with
the interpretation of the vernacular file.
We need to help Coq with the argument [b] to [pathscomp0].
*)
apply (pathscomp0 (b := A × (B × (C × D)))).
- (** is this not just associativity with third argument [C × D]? *)
(* Search (_ × _). *)
(** No hope at all for our equation - we can only hope
for weak equivalence. *)
Abort.
(** [badex] is not in the symbol table. *)
(** [Abort.] is a way of documenting a problem with proving a result. *)
Lemma sumex (A: UU) (P Q: A -> UU):
(∑ x:A, P x × Q x) -> (∑ x:A, P x) × ∑ x:A, Q x.
Proof.
(** decompose the implication: *)
intro H.
(** decompose the Σ-type: *)
induction H as [x H'].
(** decompose the pair: *)
induction H' as [H1 H2].
(** decompose the pair in the goal *)
apply tpair.
- Fail (apply tpair).
(**
[[
The command has indeed failed with message:
Unable to find an instance for the variable pr1.
]]
*)
(** A simple way out, by providing the first component: *)
exists x.
exact H1.
- (** or use [use] *)
use tpair.
+ exact x.
+ cbn. (** is given only for better readability *)
exact H2.
Defined.
(* [use] is not generally available in Coq but defined in the
preamble of the UniMath library.
*)
(** ** a bit more on equational reasoning *)
Section homot.
(** A section allows to introduce local variables/parameters
that will be bound outside of the section. *)
Locate "~".
(** printing ~ #~# *)
Print homot. (** this is just pointwise equality *)
Print idfun. (** the identity function *)
Locate "∘".
Print funcomp.
(** plain function composition in diagrammatic order, i.e.,
first the first argument, then the second argument *)
Variables A B: UU.
(* makes good sense in a section *)
Definition interestingstatement : UU :=
∏ (v w : A → B) (v' w' : B → A),
w ∘ w' ~ idfun B → v' ∘ v ~ idfun A → v' ~ w' → v ~ w.
Check (isinjinvmap': interestingstatement).
Lemma ourisinjinvmap': interestingstatement.
Proof.
intros. (** is a nop since the formula structure is not analyzed *)
unfold interestingstatement. (** [unfold] unfolds a definition *)
intros ? ? ? ? homoth1 homoth2 hyp a.
(** the extra element [a] triggers Coq to unfold the formula further;
[unfold interestingstatement] was there only for illustration! *)
(** we want to use transitivity that is expressed by [pathscomp0] and
instruct Coq to take a specific intermediate term; for this, there
is a "convenience tactic" in UniMath: [intermediate_path] *)
intermediate_path (w (w' (v a))).
- apply pathsinv0. (** apply symmetry of equality *)
unfold homot in homoth1.
unfold funcomp in homoth1.
unfold idfun in homoth1.
apply homoth1. (** all the [unfold] were only for illustration! *)
-
Print maponpaths.
apply maponpaths.
unfold homot in hyp.
(** we use the equation in [hyp] from right to left, i.e., backwards: *)
rewrite <- hyp.
(** remark: for a forward rewrite, use [rewrite] without directional
argument *)
apply homoth2.
Defined.
Variables v w: A -> B.
Variables v' w': B → A.
Eval compute in (ourisinjinvmap' v w v' w').
Opaque ourisinjinvmap'.
Eval compute in (ourisinjinvmap' v w v' w').
(** [Opaque] made the definition opaque in the sense that the identifier
is still in the symbol table, together with its type, but that it does
not evaluate to anything but itself.
If inhabitants of a type are irrelevant (for example if it is known
that there is at most one inhabitant, and if one therefore is not interested
in computing with that inhabitant), then opaqueness is an asset to make
the subsequent proof process lighter.
[Opaque] can be undone with [Transparent]:
*)
Transparent ourisinjinvmap'.
Eval compute in (ourisinjinvmap' v w v' w').
(** Full and irreversible opaqueness is obtained for a construction
in interactive mode by completing it with [Qed.] in place of [Defined.]
Using [Qed.] is discouraged by the UniMath style guide. In Coq,
most lemmas, theorems, etc. (nearly every assertion in [Prop]) are
made opaque in this way. In UniMath, many lemmas enter subsequent
computation, and one should have good reasons for not closing an
interactive construction with [Defined.]
*)
End homot.
Check ourisinjinvmap'.
(** The section variables [A] and [B] are abstracted away after the end
of the section. *)
(** ** composing tactics *)
(** Up to now, we "composed" tactics in two ways: we gave them sequentially,
separated by periods, or we introduced a tree structure through the
"bullet" notation. We did not think of these operations as composition
of tactics, in particular since we had to trigger each of them separately
in interactive mode. However, we can also explicitly compose them, like so:
*)
Definition combinatorS_induction_in_one_step (A B C: UU):
(A × B -> C) × (A -> B) × A -> C.
Proof.
intro Hyp123;
induction Hyp123 as [Hyp1 Hyp23];
apply Hyp1;
induction Hyp23 as [Hyp2 Hyp3];
apply tpair;
[ exact Hyp3
| apply Hyp2;
exact Hyp3].
Defined.
(** The sequential composition is written by (infix) semicolon,
and the two branches created by [apply tpair] are treated
in the |-separated list of arguments to the brackets. *)
(** Why would we want to do such compositions? There are at least four good reasons:
(1) We indicate that the intermediate results are irrelevant for someone who
executes the script so as to understand how and why the construction /
the proof works.
(2) The same tactic (expression) can uniformly treat all sub-goals stemming
from the preceding tactic application, as will be shown next.
*)
Definition combinatorS_curried_with_assert_in_one_step (A B C: UU):
(A -> B -> C) -> (A -> B) -> A -> C.
Proof.
intros H1 H2 H3;
assert (proofofB : B) by
( apply H2;
exact H3
);
apply H1;
assumption.
Defined.
(** This illustrates the grouping of tactic expressions by parentheses, the variant
[assert by] of [assert] used when only one tactic expression forms the proof of
the assertion, and also point (2): the last line is simpler than the expected line
[[
[exact H3 | exact proofofB].
]]
This works since each branch can be given simpler as [assumption].
*)
(** Why would we want to do such compositions (cont'd)?
(3) We want to capture recurring patterns of construction / proof by tactics into
reusable Ltac definitions (see long version of the lecture).
(4) We want to make use of the [abstract] facility, explained now.
*)
Definition combinatorS_induction_with_abstract (A B C: UU):
(A × B -> C) × (A -> B) × A -> C.
Proof.
intro Hyp123;
induction Hyp123 as [Hyp1 Hyp23];
apply Hyp1;
induction Hyp23 as [Hyp2 Hyp3].
(** Now imagine that the following proof was very complicated but had no computational
relevance, i.e., could also be packed into a lemma whose proof would be finished
by [Qed]. We can encapsulate it into [abstract]: *)
abstract (apply tpair;
[ assumption
| apply Hyp2;
assumption]).
Defined.
Print combinatorS_induction_with_abstract.
(** The term features an occurrence of [combinatorS_induction_with_abstract_subproof]
that contains the abstracted part; using the latter name is forbidden by the
UniMath style guide. Note that [abstract] is used hundreds of times in the
UniMath library. *)
(** ** a very useful tactic specifically in UniMath *)
(** Recall that [use tpair] is the right idiom for an interactive
construction of inhabitants of Σ-types. Note that the second
generated sub-goal may need [cbn] to make further tactics
applicable.
If the first component of the inhabitant is already at hand,
then the "exists" tactic yields a leaner proof script.
[use] is not confined to Σ-types. Whenever one would be
inclined to start trying to apply a lemma [H] with a varying
number of underscores, [use H] may be a better option.
*)
(** ** a final word, just on searching the library *)
(** [SearchPattern] searches for the given pattern in what the library
gives as *conclusions* of definitions, lemmas, etc., and the current
hypotheses.
[Search] searches in the (full) types of all the library elements (and
the current hypotheses). It may provide too many irrelevant result
for your question. At least, it will also show all the relevant ones.
*)
(** ** List of tactics that were mentioned *)
(**
[[
exact
apply
intro
set
cbn / cbn in (old form: simpl / simpl in)
intros (with pattern, with wild cards)
induction / induction as
exists
use (Ltac notation)
unfold / unfold in
intermediate_path (Ltac def.)
rewrite / rewrite <-
assert {} / assert by
assumption
abstract
]]
*)
(* End of file *)