A5: Prove It!

Deadline: Wednesday, 5/9/18, 11:59 pm

Special late policy: You may submit up to 48 hours late with no penalty. After Friday, 5/11/19, 11:59:00 pm, no more submissions will be accepted; that is the absolute last moment to submit. After that, we suggest that you move on to completing your project and studying for the final.

Partners: This assignment may be done as an individual or with one partner. The use of a partner is optional. Sharing of code is permitted only between you and your partner; sharing among larger groups is prohibited. Pro-tip: do not divide the work; do pair programming (pair proving?) instead. You will severely handicap your understanding of the material if you divide it up.

Table of Contents:

Introduction

In this assignment, you will use the Coq proof assistant to implement two queue data structures and verify their correctness. You will also do some exercises with logic and induction.

Assignment information

Objectives.

Recommended reading.

Requirements.

What we provide.

In the release code on the course website you will find this file:

Late submissions: Carefully review the course policies on submission and late assignments. Verify before the deadline on CMS that you have submitted the correct version.

Prohibited Coq features. UPDATE [11/17/17]: Anything—theorems, definitions, tactics, etc.—in the Coq standard library is permitted for use, except for the logic section of the assignment, as described below. You may not use any third-party Coq libraries or tactics.

Git. We recommend that you continue to use a private git repo on the CIS GitHub for version control. But you do not need to submit a git log for this assignment.

Part 0: Makefile

As usual, we provide a makefile.

Part 1: Coq

Follow the instructions in a5.v. In short, you will:

Your entire a5.v must compile and pass make check; otherwise, you will receive minimal credit on the assignment. If you find yourself unable to complete a theorem by the deadline, you should leave the Theorem statement (don't comment it out), and use the Admitted command to tell Coq to accept the theorem without (finished) proof.

Any theorem whose proof is incomplete (perhaps because you used Admitted) will receive no credit.

In the logic section of the assignment (theorems logic1 through logic4), you may not use the auto or tauto tactics, because those would largely trivialize the logical proofs you need to write. But those tactics are fine to use in the rest of the assignment.

Here are some tips:

Part 2: Overview document

You may omit the "Summary" and "Design, Implementation, and Testing" portions of the overview document for this assignment.

What to turn in

Submit files with these names on CMS:

Assessment

The course staff will assess the following aspects of your solution. The percentages shown are the approximate weight we expect each to receive.

Karma

Sum of Cubes is Square of Sums:

Prove the following property:

forall n m, sum_cubes_to n = sum_to n * sum_to n

where sum_to is the function that adds the numbers from 0 to n.

More Coq:

Volume 1 in the Software Foundations textbook series, Logical Foundations, covers the basics of Coq in more detail than we do in this course. Our coverage of Coq overlaps with the first six chapters in the book (Basics, Induction, Lists, Poly, Tactics, and Logic). Download the textbook and complete the non-optional 1 through 3-star exercises in those chapters. Some of the problems will feel like review, while others will be more challenging than the ones in this assignment. Submit your Coq source files.

Even more Coq:

In addition to doing the exercises in the first six chapters of Logical Foundations, expand your understanding of Coq, programming languages, and formal verification by completing the non-optional 1 through 3-star exercises in the chapters IndProp, Maps, and ProofObjects. Feel free to work through more of the book if you'd like. Submit your Coq source files.