Programming with Induction, Recursion, and Algebraic Laws

COMP 105 Assignment

Due Wednesday, September 16, 2020 at 11:59PM

This first assignment is divided into three parts:

The assignment is all individual work. There is no pair programming.

NOTE: This assignment is due one minute before midnight. You may turn it in up to 24 hours after the due date, which will cost you one extension token. If you don’t wish to spend an extension token, then when midnight arrives, submit whatever you have. We give partial credit.

ALERT: This assignment is significantly easier than a typical COMP 105 assignment. Its role is to get you acclimated and to help you start thinking systematically about writing code from scratch, especially using algebraic laws to write recursive functions. Later assignments get harder and more time-consuming, so don’t use this one to gauge the difficulty of the course.

Reading-Comprehension Questions (10%)

Before starting the programming problems, answer the following questions about the reading. Place your answers in a plain text file called cqs.impcore.txt. The best procedure is to download the questions and edit in your answers.

ADAPT THIS QUESTION TO BE SUITABLE FOR IMPCORE.

  1. Read SOMETHING IN THE LESSONS ON PROGRAM DESIGN Understand the three faults that are described there, then answer these questions:

    1. Here is an algebraic law:

      (binary (* 2 m)) == (* 10 (binary (/ m 2)))

      Which of the three faults in the section, if any, manifest themselves in this algebraic law? (Answer “first”, “second,” “third”, or any combination thereof, including “none”.)

    2. Here is an algebraic law:

      (double-digit (+ (* 10 m) b) == 
         (+ (* (double-digit (/ n 10)) 100) (double-digit (mod n 10)))

      Which of the three faults in the section, if any, manifest themselves in this algebraic law?

    3. Here is an algebraic law:

      (population-count (* m 2)) == 
         (+ (population-count (mod m 10))
            (population-count (/ m 10))

      Which of the three faults in the section, if any, manifest themselves in this algebraic law?

    You are able to avoid these common faults.

Please read pages 17–26 in Programming Languages: Build, Prove, and Compare.

  1. What is the value of the following Impcore expression?

    (if (> 3 5) 17 99)
  2. Which of the following best describes the syntactic structure of Impcore?

    1. An expression can be made with any definition as one of its parts
    2. A definition can be made with any expression as one of its parts
    3. Both of the above
    4. None of the above
  3. Does the following Impcore test pass? Please answer “yes” or “no.”

    (check-expect (+ 1 2 3) 6)

    Assuming x is bound to a global variable, does the following Impcore test pass? Again, please answer “yes” or “no.”

    (check-expect (set x 1) 1)

Next read section 1.3, which starts on page 27, about abstract syntax.

  1. After reading about abstract syntax, look at this picture of an abstract-syntax tree for a “calculator expression”:

    Picture of an abstract-syntax tree 

    Answer these questions:

    1. What concrete syntax could you write in C for this expression?
    2. What concrete syntax could you write in Impcore for this expression?

In Seven Lessons in Program Design, at https://www.cs.tufts.edu/comp/105/design/lessons.pdf, read the Introduction and Lesson 1.

  1. I show you a recursive function f that takes one argument, a natural number n. The structure of n, and therefore the internal structure of f, are based on the Peano proof system from the handout.

    1. What are the different ways n can be formed?
    2. When f is given n, what code do you expect f to use to determine how n was formed?
    3. For which values of n do you expect f to make a recursive call?
    4. When a recursive call is made, what value is passed as argument?

Read the expectations about contracts in the course coding guidelines.

  1. In Seven Lessons in Program Design, just before the end of Lesson 1, you will find a section on “Complete process examples.” This section suggests that the factorial function—but not the power function—could be submitted without a contract.

    1. Why would it be OK to submit the factorial function without a contract? For an idea, look at the “Exemplary” column in the “Documentation” section of the general coding rubric.
    2. Why doesn’t the same argument apply to the power function? For an idea, check the design lesson.

THESE CQS WERE DROPPED IN 2020F TO REDUCE HOMEWORK TIME

  1. Suppose I write a contract for a power function that says, “this function multiplies x by itself n times.” According to our expectations, is this a good contract or a bad contract? Please answer “good” or “bad.”

Programming in Impcore (80%)

The problems below serve multiple purposes:

You can start these exercises immediately after the first lecture. You may write very efficient solutions—but do not feel compelled to do so. Just make sure that your recursive functions terminate!

Do not share your solutions with anyone. We encourage you to discuss ideas, but

Getting set up with the software

The interpreter you need to run Impcore code is provided as part of the course. To add course software to your execution path, run

use -q comp105

You may want to put this command in your .cshrc or your .profile. The -q option is needed to prevent use from spraying text onto standard output, which may interfere with scp, ssh, git, and rsync.

The impcore interpreter is in /comp/105/bin; if you have run use as suggested above you should be able to run it just by typing

ledit impcore

The ledit command gives you the ability to retrieve and edit previous lines of input.

If your code and unit tests are in file solution.imp, you can load and run them by typing

impcore -q < solution.imp

Unit testing

The special “extended-definition forms” check-expect, check-assert, and check-error are part of every language in the book. For example, as described in section 1.2.1 of the book (page 17), they are part of the Impcore language. These forms serve both as unit tests and as documentation. Every function you write must be tested and documented using check-expect or check-assert, and possibly also check-error. The number of unit tests must be appropriate to the function’s contract and to the structure of its input, as described in the first lesson on program design.

How do you know when to use check-expect and when to use check-assert? Like this: check-expect tells if two expressions evaluate to the same value, and check-assert checks to see if a single expression evaluates to truth or falsehood. To be confident you are getting things right,

Expectations for your software-design process

To write code from scratch, we recommend the nine-step design process that is presented in the introduction to Seven Lessons on Program Design. In this homework, the process is primarily for practice—many students will be able to do the problems without the help that the process provides. In a couple of weeks, though, you will need to have a good process, or you will find that the homeworks take too much time.

Our process has nine numbered steps. On this homework, here’s what we expect for each step:

  1. All data are integers, and most are natural numbers. We expect you to be able to break natural numbers down into the forms described in the first lesson on program design. Those forms will appear on the left-hand sides of the algebraic laws you write for step 6.

  2. We expect you to be able to choose example inputs, which we expect to see in your unit tests.

  3. We expect you to choose names only for any helper functions that you choose to write. Most problems, but not all, can be solved without helper functions. When there are helper functions, they will be scrutinized carefully, and their names will be judged according to the general coding rubric.

  4. We expect each function you submit to be preceded by a short contract that appears in a comment.

    • Contracts for the assigned functions don’t require much thought; language from the book (or this homework) is fine.

    • Contracts for helper functions are another story. For each helper function you define, choose a good name, and write a specific, accurate contract. Use the coding guidelines. Your contract must meet the expectations laid out in the Documentation section of the general coding rubric.

    The contracts for the helper functions will weigh more heavily toward your grade.

    Here’s a model contract:

    ;; (has-digit? n d) returns 1 if and only if the decimal 
    ;; representation of positive integer `n` includes a decimal
    ;; digit that is equal to `d`; it returns 0 otherwise.
  5. We expect unit tests to be submitted with each function, and we expect them to follow the function and to be indented eight spaces. We expect only the basics: one or two unit tests for each form of input.1 Additional unit tests are acceptable, but they must be separated from the basic tests by a blank line.

    Here are two example unit tests:

    (check-assert (not (has-digit? 123 7)))
    (check-assert      (has-digit? 123 2))
  6. We expect you to write algebraic laws for any function that contains an if expression or a recursive call. Algebraic laws should appear between a function’s contract and its definition.

  7. We expect the body of each function to have at most one case per algebraic law.

  8. We expect the body of each function to be consistent with the function’s algebraic laws.

  9. We expect each function’s unit tests to be indented eight spaces, and to pass. When a function is meant to return only 1 or 0, coding for “true” or “false,” we expect that function’s unit tests to use check-assert and to test both outcomes.

Help with the process: a solution template

To help you organize and present the results of your work, we provide a solution template. Copy the template into file solution.imp. The template provides placeholders for contracts (design step 4), unit tests (step 5), algebraic laws (step 6), and function definitions (steps 7 and 8).

In the template, you will see that most functions are followed by a single unit test that uses check-error. The test is a placeholder. Remove the check-error and replace it with unit tests that use check-expect or check-assert, which you must write. (For most functions, you will need multiple unit tests: at least one per algebraic law.)

Indent all unit tests by 8 spaces.

A placeholder function definition has body (/ 1 0). Evaluating this code divides 1 by 0, which causes an error. The solution template should pass all unit tests, as reported by

impcore -q < solution.imp

The template does not include placeholders for helper functions. If you write any helper functions, supply each helper function with a contract, laws, and unit tests.

Quick help with Impcore

The concrete syntax of Impcore can be found on page 18 of Programming Languages: Build, Prove, and Compare. As a quick summary, the following code uses every possible syntactic form of expression. But on this assignment, you must not use the while and set forms, and the code you submit must not print.

(define even? (n) (= (mod n 2) 0))

(define 3n+1-sequence (n) ; from Collatz
  (begin
    (while (!= n 1)
       (begin
         (println n)
         (if (even? n)
             (set n (/ n 2))
             (set n (+ (* 3 n) 1)))))
    n))

The “initial basis” of a programming language is a fancy technical name for the names that are already defined. In Impcore, the initial basis comprises primitive and predefined functions, which have these names:

mod      or       println  /        
!=       and      =        *        
>=       printu   >        -        
<=       print    <        +        
not      

The problems you must solve

You will solve three groups of ordinary problems and one challenge problem. Do the problems in the order in which they appear below, not in book-numbering order.

Direct applications of the design method

Each problem in the first group can be solved by direct application of the methods sketched in the first lesson on program design: choose a proof system, write algebraic laws, design the code.

The problems are as follows:

Generalization of the design method

Each problem in the second group can be solved by generalizing the methods in the first lesson on program design.

Recursion that is not structural

A recursive computation that is driven by the structure of the data, as in the first two groups of problems, is called structural recursion. Not all recursions are structural.

A challenge problem

In addition to unit tests of individual functions, you may wish to consider unit tests for properties of combinations of functions, like these:

(check-assert (prime? (nthprime 6)))
(check-assert (not (prime? (+ 1 (nthprime 7)))))

Other expectations for your solutions

For this assignment, we expect you to apply the recommended design process and to deliver working functions with good names, clear contracts, algebraic laws, and unit tests. We also expect the following:

Frequently asked questions

Here are some questions we are frequently asked about this assignment:

All these questions are really the same question: am I obligated to detect a contract violation, and if so, how should my code respond? The answer is no, your code is not obligated to detect a contract violation—and in most cases, it should not.

The contract is one of the premier tools we have to manage complexity in large systems. The beginner’s mindset is, “every function must handle every possible case.” In a real system, this mindset leads to complexity and code duplication—high costs. It is time to shift to a mindset that says, “every function need handle only the cases stated in its contract.” Bugs still occur, and things go wrong, in which case the question becomes, “who violated their contract? Was it a caller or a callee?”

Every function should be as simple as it can be while satisfying a contract. If it so happens that you can detect a contract violation “for free,” it is OK to halt the program with a checked run-time error. But this situation is rare. It is far more common that detecting a contract violation requires extra case analysis. In COMP 105, this is never OK. Part of the purpose of a function’s contract is to simplify that function’s implementation.

Note: this mindset assumes that whatever is calling the function is trusted code. If a function’s inputs ultimately come from a user (web form or whatever), then somebody needs to validate those inputs to be sure they conform to the contract, but that job is a separate concern, to be dealt with in another function.

A photograph we can use to learn your name (10%)

I hope to learn the name of every student in the class. The teaching assistants and recitation leaders would also like to learn your name. But we need your help. Part of the assignment, for 10% of the grade on the assignment, is to submit a photograph that will help us learn to recognize you. I’ve consulted with a skilled portrait photographer to prepare guidelines for producing a good, easily recognizable photograph, even if all you have is a cellphone camera. You’ll submit the photo as photo.jpg.

The submit scripts for this assignment will look for the photograph you will have already submitted.

What to submit and how to submit it

You’ll choose a directory for your assignment, in which put your assignment in the same directory in which you have already submitted your photograph. In that directory, you will create or copy these files:

As soon as you have the files listed above, run submit105-impcore to submit a preliminary version of your work. The submit script checks your work and runs provide on your behalf. Do submit early, then keep submitting until your work is complete; we grade only the last submission.

The submit script will ask you some questions, the answers to which may be carried over from your photograph submission:

You may also submit extra-tests.imp, which should contain only test code, unit tests (check-expect or check-error), and the line (use solution.imp). You can run the tests using the Unix command

impcore -q < extra-tests.imp

How your work will be evaluated

How your code will be evaluated

In this assignment, you learn how we expect your code to be structured and organized. Our expectations are presented on the coding-style page on the course web site. When we get your work, we will evaluate it in two ways:

The detailed criteria we will use to assess your code are found at http://www.cs.tufts.edu/comp/105/coding-rubric.html. Though things may be worded differently, most of these criteria are also applied in COMP 11, 15, and 40—they make explicit what we mean by “good programming practice.” But as you might imagine, there is a lot of information there—probably more than you can assimilate in one reading. The highlights are

How your photograph will be evaluated

The evaluation of your photograph is described in the photo assignment.

If your photograph is clear, makes it easy to recognize you, and is not ridiculous in size, it will earn a grade of Very Good (the top grade). If you’re not sure how to take a photograph that makes you easy to recognize, consult the table below. Aim for an “Exemplary” photograph (the left column), be willing to settle for “Satisfactory” (the middle column), and avoid “Must Improve” (the right column).2

Exemplary Satisfactory Must improve
Composition

• Head and shoulders fill 2/3 to 3/4 of the frame.

• The shot is taken from a distance of 4 to 6 feet, and the camera is zoomed as needed to include just head and shoulders.

Or, the shot is taken from a distance of 4 to 6 feet, then cropped to include just head and shoulders.

• The subject is looking at the camera with a normal look on the face.

• The background around the subject’s face is one color, and there are no visual features that would distract a viewer from the subject.

• Face fills the frame; shoulders not visible.

• The subject is not looking at the camera, but there is a normal look on the face.

• The background around the subject’s face contains distracting visual features, but the distraction is minimal (or is mitigated by soft focus).

• Photo down to waist; full-body photo.

• More than one person visible in photo.

• Eyes are closed.

• The camera is too close to the subject. (This will happen if you compose the shot by moving the camera toward the subject until the subject’s head and shoulders fill the “viewfinder”; you’ll get perspective distortion.)

• The subject is making a strange face (eye rolls, etc)

• The background around the subject’s face contains distracting visual features, making it difficult for a viewer to identify the subject without concentrating.

Lighting

• The subject is illuminated by two or more light sources, such that one side of the subject’s face is noticeably brighter than the other (about 2 to 1).

• The main sources of light are soft and diffuse: overcast sky, indirect daylight, daylight reflected off a wall or building, and so on.

• The subject’s face is lit evenly.

• The subject’s face is lit by ambient light, plus flash bounced off a ceiling or wall (possible only with a real camera)

• The background is significantly brighter than the subject.

• There is light behind the subject aimed at the camera.

• The sun is shining in the subject’s face.

• The subject is illuminated by a camera flash.

Focus

• The subject is in sharp focus, while the background is a little blurry (possibly only with a real camera or with very sophisticated software).

• The subject’s face is in sharp focus.

• Some part of the subject is in sharp focus, or something near the subject is in sharp focus. The subject’s face is not in sharp focus but is still easy to recognize.

• The subject’s face is out of focus.

File

• The uploaded image file is from 300KB to 1.2MB in size.

• Resolution of the uploaded file is high enough that there’s no pixelation.

• The uploaded image is at least as tall as it is wide (portrait orientation)

• The uploaded image file is at most 2MB in size.

• When shown at a few inches high, the uploaded image file is pixelated or has compression blur.

• The uploaded image file is more than 2MB in size.

• At its natural resolution, the uploaded image file shows pixels or compression artifacts.

• The uploaded image is wider than it is tall (landscape orientation)

INSTRUCTOR: THERE ARE ONE OR TWO THINGS THAT COULD BE SALVAGED HERE, BUT IN SPRING 2019, WE HAVE RUN OUT OF TIME.

Orphans

Deriving code from data

The first lesson on program design also illustrates one connection between proof and recursion. In this assignment, you document such connections.

To document connections, please write, for each recursive function, which proof system from the lesson, if any, corresponds to its view of its input data and its consequent pattern of recursion.


  1. For ordinary results, we expect one test per form of input. For Boolean results, we expect one “true” test and one “false” test for each form of input, when possible.

  2. Yes, a student once sent me a photograph of two people.