CS430/530 Assignment 6

Last modified: March 24, 2025.

Due: Thursday, April 10, 2025

  1. In the language M of Harper's chapter 15, write the following terms: Notes:
  2. Find expressions $e_0$, $e_1$ and types $\tau_0$, $\tau_1$, $\tau_2$, $\tau_3$, $\tau_4$, $\tau_5$, $\tau_6$, and $\tau_7$ such that the following typing judgements are derivable in System F:

    In the last case, nat is defined as $\forall t.(t \to t) \to t \to t$.
  3. Write an implementation of the stack abstract data type in the language FE of Harper's chapter 17. You should support three operations: formation of the empty stack, push value on top of the stack, and pop value off the top of the stack. Also, show how a client function can be defined which takes a stack of an arbitrary implementation of the abstract data type, and extends that implementation with a peek2 function that returns the second element from the top of the stack (or unit if the stack has less than two elements). You should give two expressions:

    You can assume that the language supports (labeled) products, sums, recursive types, and the fixpoint construct.

  4. What is the correspondence between the semantics using the control machine K (Harper, chapter 28) and contextual dynamic semantics (based on evaluation contexts) as defined in (Harper, chapter 5.3)? Make this correspondence formal by stating soundness and completeness conditions (as in 28.3), and the main lemmas that you would use in proving these.

    Contextual semantics for the K-fragment language are defined as follows:

    $e := z \; | \; s(e) \; | \; ifz(e;e_1;x.e_2) \; |\; ap(e_1;e_2) \; |\; lam[\tau](x.e) \; |\; x \; |\; fix[\tau](x.e)$
    $v := z \; | \; s(v) \; |\; lam[\tau](x.e)$
    $\mathcal{E} := \circ \; | \; s(\mathcal{E}) \; | \; ifz(\mathcal{E};e_1;x.e_2) \; |\; ap(\mathcal{E};e_2)$
    $$ \frac{e \longrightarrow e'}{\mathcal{E}[e] \longrightarrow \mathcal{E}[e']} $$ $$ \frac{}{ifz(z;e_1;x.e_2) \longrightarrow e_1} $$ $$ \frac{}{ifz(s(v);e_1;x.e_2) \longrightarrow [v/x]e_2} $$ $$ \frac{}{ap(lam[\tau](x.e);e') \longrightarrow [e'/x]e} $$ $$ \frac{}{fix[\tau](x.e) \longrightarrow [fix[\tau](x.e)/x]e} $$