-
Notifications
You must be signed in to change notification settings - Fork 1
/
Prop.v
1920 lines (1587 loc) · 51.3 KB
/
Prop.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
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(** * Prop: Propositions and Evidence *)
Require Export Logic.
(* ####################################################### *)
(** ** From Boolean Functions to Propositions *)
(** In chapter [Basics] we defined a _function_ [evenb] that tests a
number for evenness, yielding [true] if so. We can use this
function to define the _proposition_ that some number [n] is
even: *)
Definition even (n:nat) : Prop :=
evenb n = true.
(** That is, we can define "[n] is even" to mean "the function [evenb]
returns [true] when applied to [n]."
Note that here we have given a name
to a proposition using a [Definition], just as we have
given names to expressions of other sorts. This isn't a fundamentally
new kind of proposition; it is still just an equality. *)
(** Another alternative is to define the concept of evenness
directly. Instead of going via the [evenb] function ("a number is
even if a certain computation yields [true]"), we can say what the
concept of evenness means by giving two different ways of
presenting _evidence_ that a number is even. *)
(** ** Inductively Defined Propositions *)
Inductive ev : nat -> Prop :=
| ev_0 : ev 0
| ev_SS : forall n:nat, ev n -> ev (S (S n)).
(** This definition says that there are two ways to give
evidence that a number [m] is even. First, [0] is even, and
[ev_0] is evidence for this. Second, if [m = S (S n)] for some
[n] and we can give evidence [e] that [n] is even, then [m] is
also even, and [ev_SS n e] is the evidence. *)
(** **** Exercise: 1 star (double_even) *)
Theorem double_even : forall n,
ev (double n).
Proof.
induction n as [|n'].
simpl.
apply ev_0.
simpl.
apply ev_SS.
apply IHn'.
Qed.
(** *** Discussion: Computational vs. Inductive Definitions *)
(** We have seen that the proposition "[n] is even" can be
phrased in two different ways -- indirectly, via a boolean testing
function [evenb], or directly, by inductively describing what
constitutes evidence for evenness. These two ways of defining
evenness are about equally easy to state and work with. Which we
choose is basically a question of taste.
However, for many other properties of interest, the direct
inductive definition is preferable, since writing a testing
function may be awkward or even impossible.
One such property is [beautiful]. This is a perfectly sensible
definition of a set of numbers, but we cannot translate its
definition directly into a Coq Fixpoint (or into a recursive
function in any other common programming language). We might be
able to find a clever way of testing this property using a
[Fixpoint] (indeed, it is not too hard to find one in this case),
but in general this could require arbitrarily deep thinking. In
fact, if the property we are interested in is uncomputable, then
we cannot define it as a [Fixpoint] no matter how hard we try,
because Coq requires that all [Fixpoint]s correspond to
terminating computations.
On the other hand, writing an inductive definition of what it
means to give evidence for the property [beautiful] is
straightforward. *)
(** **** Exercise: 1 star (ev__even) *)
(** Here is a proof that the inductive definition of evenness implies
the computational one. *)
Theorem ev__even : forall n,
ev n -> even n.
Proof.
intros n E. induction E as [|n' E'].
Case "E = ev_0".
unfold even. reflexivity.
Case "E = ev_SS n' E'".
unfold even. apply IHE'.
Qed.
Theorem ev__even' : forall n,
ev n -> even n.
Proof.
intros n E.
induction n as [|n'].
reflexivity.
unfold even.
unfold even in IHn'.
inversion E.
Abort.
(** Could this proof also be carried out by induction on [n] instead
of [E]? If not, why not? *)
(** induction on [n] will derive following situation
n' : nat
E : ev (S n')
IHn' : ev n' -> even n'
============================
even (S n')
as E holds, ev n' cannot be true. IHn' becomes meaningless
**)
(** The induction principle for inductively defined propositions does
not follow quite the same form as that of inductively defined
sets. For now, you can take the intuitive view that induction on
evidence [ev n] is similar to induction on [n], but restricts our
attention to only those numbers for which evidence [ev n] could be
generated. We'll look at the induction principle of [ev] in more
depth below, to explain what's really going on. *)
(** **** Exercise: 1 star (l_fails) *)
(** The following proof attempt will not succeed.
Theorem l : forall n,
ev n.
Proof.
intros n. induction n.
Case "O". simpl. apply ev_0.
Case "S".
...
Intuitively, we expect the proof to fail because not every
number is even. However, what exactly causes the proof to fail?
*)
Theorem l : forall n,
ev n.
Proof.
intros n. induction n.
Case "O". simpl. apply ev_0.
Case "S".
Abort.
(**
Case := "S" : String.string
n : nat
IHn : ev n
============================
ev (S n)
When ev n holds, ev (S n) cannot hold true, considering all possible constructors.
**)
(** **** Exercise: 2 stars (ev_sum) *)
(** Here's another exercise requiring induction. *)
Theorem ev_sum : forall n m,
ev n -> ev m -> ev (n+m).
Proof.
intros n m e1 e2.
induction e1 as [|x y].
simpl. apply e2.
simpl. apply ev_SS. apply IHy.
Qed.
(* ##################################################### *)
(** * Inductively Defined Propositions *)
(** As a running example, let's
define a simple property of natural numbers -- we'll call it
"[beautiful]." *)
(** Informally, a number is [beautiful] if it is [0], [3], [5], or the
sum of two [beautiful] numbers.
More pedantically, we can define [beautiful] numbers by giving four
rules:
- Rule [b_0]: The number [0] is [beautiful].
- Rule [b_3]: The number [3] is [beautiful].
- Rule [b_5]: The number [5] is [beautiful].
- Rule [b_sum]: If [n] and [m] are both [beautiful], then so is
their sum. *)
(** ** Inference Rules *)
(** We will see many definitions like this one during the rest
of the course, and for purposes of informal discussions, it is
helpful to have a lightweight notation that makes them easy to
read and write. _Inference rules_ are one such notation: *)
(**
----------- (b_0)
beautiful 0
------------ (b_3)
beautiful 3
------------ (b_5)
beautiful 5
beautiful n beautiful m
--------------------------- (b_sum)
beautiful (n+m)
*)
(** *** *)
(** Each of the textual rules above is reformatted here as an
inference rule; the intended reading is that, if the _premises_
above the line all hold, then the _conclusion_ below the line
follows. For example, the rule [b_sum] says that, if [n] and [m]
are both [beautiful] numbers, then it follows that [n+m] is
[beautiful] too. If a rule has no premises above the line, then
its conclusion holds unconditionally.
These rules _define_ the property [beautiful]. That is, if we
want to convince someone that some particular number is [beautiful],
our argument must be based on these rules. For a simple example,
suppose we claim that the number [5] is [beautiful]. To support
this claim, we just need to point out that rule [b_5] says so.
Or, if we want to claim that [8] is [beautiful], we can support our
claim by first observing that [3] and [5] are both [beautiful] (by
rules [b_3] and [b_5]) and then pointing out that their sum, [8],
is therefore [beautiful] by rule [b_sum]. This argument can be
expressed graphically with the following _proof tree_: *)
(**
----------- (b_3) ----------- (b_5)
beautiful 3 beautiful 5
------------------------------- (b_sum)
beautiful 8
*)
(** *** *)
(**
Of course, there are other ways of using these rules to argue that
[8] is [beautiful], for instance:
----------- (b_5) ----------- (b_3)
beautiful 5 beautiful 3
------------------------------- (b_sum)
beautiful 8
*)
(** **** Exercise: 1 star (varieties_of_beauty) *)
(** How many different ways are there to show that [8] is [beautiful]? *)
(**
infinite.
all the beautiful numbers should be form of
0*x + 3*y + 5*z.
y = 1, z = 1 is fixed, but x can be arbitrary number, and for such (x,y,z), we can make at least one such formation.
**)
(** *** *)
(** In Coq, we can express the definition of [beautiful] as
follows: *)
Inductive beautiful : nat -> Prop :=
b_0 : beautiful 0
| b_3 : beautiful 3
| b_5 : beautiful 5
| b_sum : forall n m, beautiful n -> beautiful m -> beautiful (n+m).
(** The first line declares that [beautiful] is a proposition -- or,
more formally, a family of propositions "indexed by" natural
numbers. (That is, for each number [n], the claim that "[n] is
[beautiful]" is a proposition.) Such a family of propositions is
often called a _property_ of numbers. Each of the remaining lines
embodies one of the rules for [beautiful] numbers.
*)
(** *** *)
(**
The rules introduced this way have the same status as proven
theorems; that is, they are true axiomatically.
So we can use Coq's [apply] tactic with the rule names to prove
that particular numbers are [beautiful]. *)
Theorem three_is_beautiful: beautiful 3.
Proof.
(* This simply follows from the rule [b_3]. *)
apply b_3.
Qed.
Theorem eight_is_beautiful: beautiful 8.
Proof.
(**
apply (b_sum 5 3).
apply (b_sum 5 0).
apply (b_sum 5 0).
apply b_5.
apply b_0.
apply b_0.
apply b_3.
**)
(* First we use the rule [b_sum], telling Coq how to
instantiate [n] and [m]. *)
apply b_sum with (n:=3) (m:=5).
(* To solve the subgoals generated by [b_sum], we must provide
evidence of [beautiful 3] and [beautiful 5]. Fortunately we
have rules for both. *)
apply b_3.
apply b_5.
Qed.
(** *** *)
(** As you would expect, we can also prove theorems that have
hypotheses about [beautiful]. *)
Theorem beautiful_plus_eight: forall n, beautiful n -> beautiful (8+n).
Proof.
intros n B.
apply b_sum with (n:=8) (m:=n).
apply eight_is_beautiful.
apply B.
Qed.
(** **** Exercise: 2 stars (b_times2) *)
Theorem b_times2: forall n, beautiful n -> beautiful (2*n).
Proof.
intros n H.
replace (2*n) with (n+n).
apply (b_sum n n).
apply H.
apply H.
simpl.
rewrite plus_0_r.
reflexivity.
Qed.
(** **** Exercise: 3 stars (b_timesm) *)
Theorem b_timesm: forall n m, beautiful n -> beautiful (m*n).
Proof.
intros n m H.
induction m as [|m'].
simpl. apply b_0.
simpl. apply (b_sum n (m' * n)). apply H. apply IHm'.
Qed.
(* ####################################################### *)
(** ** Induction Over Evidence *)
(** Besides _constructing_ evidence that numbers are beautiful, we can
also _reason about_ such evidence. *)
(** The fact that we introduced [beautiful] with an [Inductive]
declaration tells Coq not only that the constructors [b_0], [b_3],
[b_5] and [b_sum] are ways to build evidence, but also that these
four constructors are the _only_ ways to build evidence that
numbers are beautiful. *)
(** In other words, if someone gives us evidence [E] for the assertion
[beautiful n], then we know that [E] must have one of four shapes:
- [E] is [b_0] (and [n] is [O]),
- [E] is [b_3] (and [n] is [3]),
- [E] is [b_5] (and [n] is [5]), or
- [E] is [b_sum n1 n2 E1 E2] (and [n] is [n1+n2], where [E1] is
evidence that [n1] is beautiful and [E2] is evidence that [n2]
is beautiful). *)
(** *** *)
(** This permits us to _analyze_ any hypothesis of the form [beautiful
n] to see how it was constructed, using the tactics we already
know. In particular, we can use the [induction] tactic that we
have already seen for reasoning about inductively defined _data_
to reason about inductively defined _evidence_.
To illustrate this, let's define another property of numbers: *)
Inductive gorgeous : nat -> Prop :=
g_0 : gorgeous 0
| g_plus3 : forall n, gorgeous n -> gorgeous (3+n)
| g_plus5 : forall n, gorgeous n -> gorgeous (5+n).
(** **** Exercise: 1 star (gorgeous_tree) *)
(** Write out the definition of [gorgeous] numbers using inference rule
notation.
------------------------------- (g_0)
gorgeous 0
gorgeous n
------------------------------- (g_plus3)
gorgeous n+3
gorgeous n
------------------------------- (g_plus5)
gorgeous n+5
*)
(** **** Exercise: 1 star (gorgeous_plus13) *)
Theorem gorgeous_plus13: forall n,
gorgeous n -> gorgeous (13+n).
Proof.
intros n H.
apply g_plus5.
apply g_plus5.
apply g_plus3.
apply H.
Qed.
(** *** *)
(** It seems intuitively obvious that, although [gorgeous] and
[beautiful] are presented using slightly different rules, they are
actually the same property in the sense that they are true of the
same numbers. Indeed, we can prove this. *)
Theorem gorgeous__beautiful : forall n,
gorgeous n -> beautiful n.
Proof.
intros n H.
induction H as [|n'|n'].
Case "g_0".
apply b_0.
Case "g_plus3".
apply b_sum. apply b_3.
apply IHgorgeous.
Case "g_plus5".
apply b_sum. apply b_5. apply IHgorgeous.
Qed.
(** Notice that the argument proceeds by induction on the _evidence_ [H]! *)
(** Let's see what happens if we try to prove this by induction on [n]
instead of induction on the evidence [H]. *)
Theorem gorgeous__beautiful_FAILED : forall n,
gorgeous n -> beautiful n.
Proof.
intros. induction n as [| n'].
Case "n = 0". apply b_0.
Case "n = S n'". (* We are stuck! *)
Abort.
(** The problem here is that doing induction on [n] doesn't yield a
useful induction hypothesis. Knowing how the property we are
interested in behaves on the predecessor of [n] doesn't help us
prove that it holds for [n]. Instead, we would like to be able to
have induction hypotheses that mention other numbers, such as [n -
3] and [n - 5]. This is given precisely by the shape of the
constructors for [gorgeous]. *)
(** **** Exercise: 2 stars (gorgeous_sum) *)
Theorem gorgeous_sum : forall n m,
gorgeous n -> gorgeous m -> gorgeous (n + m).
Proof.
intros n m p1 p2.
induction p1 as [|n'|n'].
rewrite plus_comm.
rewrite plus_0_r.
apply p2.
rewrite <- plus_assoc.
apply g_plus3.
apply IHp1.
rewrite <- plus_assoc.
apply g_plus5.
apply IHp1.
Qed.
(**
0 3 5 6 (8 9 10) ...
**)
(** **** Exercise: 3 stars, advanced (beautiful__gorgeous) *)
Theorem beautiful__gorgeous : forall n, beautiful n -> gorgeous n.
Proof.
intros n p1.
induction p1 as [|n'|n'|x y p2 p3 p4 p5].
apply g_0.
apply g_plus3.
apply g_0.
apply g_plus5.
apply g_0.
apply gorgeous_sum.
apply p3.
apply p5.
Qed.
(** **** Exercise: 3 stars, optional (g_times2) *)
(** Prove the [g_times2] theorem below without using [gorgeous__beautiful].
You might find the following helper lemma useful. *)
Lemma helper_g_times2 : forall x y z, x + (z + y)= z + x + y.
Proof.
intros x y z.
rewrite -> plus_assoc.
rewrite -> (plus_comm x z).
reflexivity.
Qed.
Theorem g_times2: forall n, gorgeous n -> gorgeous (2*n).
Proof.
intros n H. simpl.
induction H.
simpl.
apply g_0.
rewrite plus_0_r in IHgorgeous.
rewrite plus_0_r.
rewrite helper_g_times2.
rewrite plus_assoc.
simpl.
apply g_plus3.
apply g_plus3.
apply IHgorgeous.
rewrite plus_0_r in IHgorgeous.
rewrite plus_0_r.
rewrite helper_g_times2.
simpl.
apply g_plus5.
apply g_plus5.
apply IHgorgeous.
Qed.
(* ####################################################### *)
(** ** [Inversion] on Evidence *)
(** Another situation where we want to analyze evidence for evenness
is when proving that, if [n] is even, then [pred (pred n)] is
too. In this case, we don't need to do an inductive proof. The
right tactic turns out to be [inversion]. *)
Theorem ev_minus2: forall n,
ev n -> ev (pred (pred n)).
Proof.
intros n E.
inversion E as [| n' E'].
Case "E = ev_0". simpl. apply ev_0.
Case "E = ev_SS n' E'". simpl. apply E'. Qed.
(** **** Exercise: 1 star, optional (ev_minus2_n) *)
(** What happens if we try to use [destruct] on [n] instead of [inversion] on [E]? *)
Theorem ev_minus2': forall n,
ev n -> ev (pred (pred n)).
Proof.
intros n E.
destruct E as [| n' E'].
simpl. apply ev_0.
simpl. apply E'.
Qed.
(** it works **)
(** *** *)
(** Another example, in which [inversion] helps narrow down to
the relevant cases. *)
Theorem SSev__even : forall n,
ev (S (S n)) -> ev n.
Proof.
intros n E.
inversion E as [| n' E'].
apply E'. Qed.
(** ** [inversion] revisited *)
(** These uses of [inversion] may seem a bit mysterious at first.
Until now, we've only used [inversion] on equality
propositions, to utilize injectivity of constructors or to
discriminate between different constructors. But we see here
that [inversion] can also be applied to analyzing evidence
for inductively defined propositions.
(You might also expect that [destruct] would be a more suitable
tactic to use here. Indeed, it is possible to use [destruct], but
it often throws away useful information, and the [eqn:] qualifier
doesn't help much in this case.)
Here's how [inversion] works in general. Suppose the name
[I] refers to an assumption [P] in the current context, where
[P] has been defined by an [Inductive] declaration. Then,
for each of the constructors of [P], [inversion I] generates
a subgoal in which [I] has been replaced by the exact,
specific conditions under which this constructor could have
been used to prove [P]. Some of these subgoals will be
self-contradictory; [inversion] throws these away. The ones
that are left represent the cases that must be proved to
establish the original goal.
In this particular case, the [inversion] analyzed the construction
[ev (S (S n))], determined that this could only have been
constructed using [ev_SS], and generated a new subgoal with the
arguments of that constructor as new hypotheses. (It also
produced an auxiliary equality, which happens to be useless here.)
We'll begin exploring this more general behavior of inversion in
what follows. *)
(** **** Exercise: 1 star (inversion_practice) *)
Theorem SSSSev__even : forall n,
ev (S (S (S (S n)))) -> ev n.
Proof.
intros n p1.
inversion p1 as [n'|n' p2].
rewrite <- H0 in p1.
rewrite <- H0 in p2.
inversion p2 as [|].
rewrite <- H in H0.
inversion H0.
rewrite H0 in H1.
inversion H1.
rewrite <- H3.
apply H.
(* SSev__even *)
Qed.
(** The [inversion] tactic can also be used to derive goals by showing
the absurdity of a hypothesis. *)
Theorem even5_nonsense :
ev 5 -> 2 + 2 = 9.
Proof.
intros p1.
inversion p1 as [DONTAPPEAR|n p2].
inversion p2 as [DONTAPPEAR|n' p3].
inversion p3.
Qed.
(** **** Exercise: 3 stars, advanced (ev_ev__ev) *)
(** Finding the appropriate thing to do induction on is a
bit tricky here: *)
Theorem ev_ev__ev : forall n m,
ev (n+m) -> ev n -> ev m.
Proof.
intros n m p1 p2.
generalize dependent m.
induction p2 as [p2_A|n' p2_B].
intros m p1. simpl in p1. apply p1.
intros m p1. apply IHp2_B. simpl in p1. apply SSev__even in p1. apply p1.
Qed.
(** **** Exercise: 3 stars, optional (ev_plus_plus) *)
(** Here's an exercise that just requires applying existing lemmas. No
induction or even case analysis is needed, but some of the rewriting
may be tedious. *)
Theorem ev_plus_plus : forall n m p,
ev (n+m) -> ev (n+p) -> ev (m+p).
Proof.
intros n m p prop1 prop2.
assert(prop3 : ev(n + m + (n + p))).
apply (ev_sum (n+m) (n+p)).
apply prop1. apply prop2.
assert(prop4 : ev(n+n)).
replace (n+n) with (double n).
apply double_even.
apply double_plus.
apply (ev_ev__ev (n+n) (m+p)).
replace (n+m+(n+p)) with (n+n+(m+p)) in prop3.
apply prop3.
rewrite (plus_comm n m).
rewrite (helper_g_times2).
rewrite plus_assoc.
rewrite plus_assoc.
reflexivity.
apply prop4.
Qed.
(* ####################################################### *)
(** * Additional Exercises *)
(** **** Exercise: 4 stars (palindromes) *)
(** A palindrome is a sequence that reads the same backwards as
forwards.
- Define an inductive proposition [pal] on [list X] that
captures what it means to be a palindrome. (Hint: You'll need
three cases. Your definition should be based on the structure
of the list; just having a single constructor
c : forall l, l = rev l -> pal l
may seem obvious, but will not work very well.)
- Prove that
forall l, pal (l ++ rev l).
- Prove that
forall l, pal l -> l = rev l.
*)
Inductive pal {X : Type} : list X -> Prop :=
| pal_0 : pal []
| pal_1 : forall v:X, pal [v]
| pal_add : forall v:X, forall l:list X,
pal l -> pal ([v] ++ l ++ [v]).
(*
pal l -> (pal (snoc (cons v l) v)).
*)
Lemma app_nil_end : forall (X : Type) (l : list X),
l ++ [] = l.
Proof.
induction l as [|h t].
reflexivity.
simpl.
rewrite IHt.
reflexivity.
Qed.
Lemma app_snoc : forall (X : Type) (l : list X) (v : X),
snoc l v = l ++ [v].
Proof.
induction l as [|h t].
reflexivity.
simpl.
intros v.
rewrite IHt.
reflexivity.
Qed.
Lemma app_assoc : forall (X : Type) (l1 l2 l3 : list X),
(l1 ++ l2) ++ l3 = l1 ++ (l2 ++ l3).
Proof.
induction l1 as [|h t].
simpl. reflexivity.
simpl. intros l2 l3. rewrite IHt. reflexivity.
Qed.
Lemma rev_distr : forall (X : Type) (l1 l2 : list X),
rev (l1 ++ l2) = rev l2 ++ rev l1.
Proof.
induction l1 as [|h t].
intros l2.
simpl.
rewrite app_nil_end.
reflexivity.
intros l2.
simpl.
rewrite IHt.
rewrite app_snoc.
rewrite app_snoc.
apply app_assoc.
Qed.
Theorem pal_thm1 : forall (X : Type) (l : list X),
pal (l ++ rev l).
Proof.
intros X l.
induction l as [|h t].
simpl. apply pal_0.
simpl.
assert(p1 : pal ([h] ++ (t ++ rev t) ++ [h])).
apply (pal_add h (t ++ rev t)).
apply IHt.
replace (h :: t ++ snoc (rev t) h) with ([h] ++ (t ++ rev t) ++ [h]).
apply p1.
simpl.
replace ((t ++ rev t) ++ [h]) with (t ++ snoc (rev t) h).
reflexivity.
rewrite app_snoc.
rewrite app_assoc.
reflexivity.
Qed.
Theorem pal_thm2 : forall (X : Type) (l : list X),
pal l -> l = rev l.
Proof.
intros X.
intros l p1.
induction p1 as [|v|v l].
reflexivity.
reflexivity.
(* symmetry in IHp1. *)
rewrite rev_distr.
rewrite rev_distr.
simpl.
rewrite <- IHp1.
reflexivity.
Qed.
(** **** Exercise: 5 stars, optional (palindrome_converse) *)
(** Using your definition of [pal] from the previous exercise, prove
that
forall l, l = rev l -> pal l.
*)
(**
Fixpoint index {X : Type} (n : nat)
(l : list X) : option X :=
match l with
| [] => None
| a :: l' => if beq_nat n O then Some a else index (pred n) l'
end.
**)
Fixpoint head_trim {X : Type} (l : list X) :=
match l with
| [] => []
| h :: t => t
end.
Fixpoint tail_trim {X : Type} (l : list X) :=
match l with
| [] => []
| h :: t => rev (head_trim (rev l))
end.
Fixpoint trim {X : Type} (l : list X) :=
head_trim (tail_trim l).
Fixpoint head_elem {X : Type} (l : list X) :=
match l with
| [] => []
| h :: t => [h]
end.
Fixpoint tail_elem {X : Type} (l : list X) :=
match l with
| [] => []
| h :: t => head_elem (rev l)
end.
Lemma cons_sep : forall {X : Type} {l : list X} {v : X},
v :: l = [v] ++ l.
Proof.
induction l as [|h t].
reflexivity.
simpl. rewrite IHt. reflexivity.
Qed.
Lemma snoc_sep : forall {X : Type} {l : list X} {v : X},
snoc l v = l ++ [v].
Proof.
induction l as [|h t].
reflexivity.
simpl. intros v. rewrite (IHt v). reflexivity.
Qed.
Lemma rev_cons : forall {X : Type} {l : list X} {v : X},
rev (v :: l) = (rev l) ++ [v].
Proof.
induction l as [|h t].
reflexivity.
intros v.
rewrite IHt.
rewrite cons_sep.
rewrite cons_sep.
rewrite app_nil_end.
rewrite rev_distr.
rewrite IHt.
reflexivity.
Qed.
Lemma rev_not_nil : forall {X : Type} {t : list X} {h : X},
rev (h :: t) = [] -> False.
Proof.
intros X t h p.
inversion p.
destruct (rev t) as [|x y].
inversion H0.
inversion H0.
Qed.
Lemma cons_refl : forall {X : Type} {l l' : list X} {v v' : X},
v :: l = v' :: l' -> v = v' /\ l = l'.
Proof.
intros X l l' v v' p.
inversion p.
split.
reflexivity. reflexivity.
Qed.
Lemma app_tail_elem : forall {X : Type} {l : list X} {v : X},
tail_elem (l ++ [v]) = [v].
Proof.
intros X l v.
(**
destruct (l ++ [v]) as [|h t] eqn : e.
destruct l as [|lh lt]. inversion e. inversion e.
simpl.
**)
(**
rewrite <- snoc_sep in e.
**)
induction l as [|h t].
reflexivity.
rewrite <- IHt.
simpl.
destruct t as [|h' t']. reflexivity.
simpl.
Abort.
(**
reflexivity.
rewrite <- snoc_sep.
rewrite <- (rev_involutive X l).
rewrite <- rev_cons.
destruct (v :: rev l) as [|h t] eqn : p1.
inversion p1.
simpl.
apply cons_refl in p1.
inversion p1.
rewrite <- H0.
rewrite rev_involutive.
destruct (rev (h :: t)) as [|h' t'] eqn : p2.
apply rev_not_nil in p2.
inversion p2.
simpl.
simpl.
unfold tail_elem.
simpl.
rewrite <- snoc_sep.
destruct l as [|h t].
reflexivity.
rewrite <- app_snoc.
simpl.
**)
Lemma app_tail_elem : forall {X : Type} {l1 l2 : list X} {v : X},
tail_elem (l1 ++ (v :: l2)) = (tail_elem (v :: l2)).
Proof.
intros X l1 l2 v.
induction l2 as [|h t].
simpl.
Abort.
(**
Lemma list_decomp : forall {X : Type} {l : list X},
(ble_nat 2 (length l)) = true ->
(head_elem l) ++ (trim l) ++ (tail_elem l)
= l.
Proof.
intros X l p1.
destruct l as [|v0 l_].
inversion p1.
destruct l_ as [|v1 l__].
inversion p1.
simpl in p1.
induction l__ as [|x y].
reflexivity.
rewrite <- (rev_involutive X y).
(** l = x + y = x + rev z + m **)
destruct (rev y) as [|m z] eqn : e1.
reflexivity.
Qed.
**)
Lemma rev_refl : forall {X : Type} {l1 l2 : list X},
l1 = l2 -> rev l1 = rev l2.
Proof.
intros X l1 l2 p1.
rewrite p1.
reflexivity.
Qed.
Fixpoint get_mod (n : nat) :=
match n with
| 0 => 0
| S n' => match (get_mod n') with
| 0 => 1
| 1 => 0
| S n'' => 42
end
end.
Eval compute in get_mod 2.
Eval compute in get_mod 3.