TaPL Summary Part 1: Untyped Arithmetic and Proofs about Languages


I've recently been reading Types and Programming Languages (TaPL) and figured I should take notes while I do so. This is from Chapter 3, Untyped Arithmetic. I will try to explain the contents from Chapter 1 and 2 as needed but will keep to explaining the simple arithmetic language described in chapter 3 as well as showing how we can investigate it using Operational Semantics.

The main goal here will be to understand the difference between syntax and semantics as well as learning a formal method of looking at languages. We will explore how these formal definitions help us in examining characteristics of a language and seeing how theoretical computer scientists analyze languages.

The numbering of theorems and definitions will follow the same numbering as the ones in TaPL, so if you own a copy of the book you can refer to the actual book to see the proof but the goal of this post is to show a broad overview of the chapter so I will omit things that should feel self evident.

Defining the language syntax

The syntax for the simple language we will be looking at is shown below:

t ::=
  true
  false
  if t then t else t
  0
  succ t //successor
  pred t //predecessor
  iszero t

Note that there is no type distinction between natural numbers and booleans. This defines a term t which can be combined to form "sentences" in our syntax, which are also terms. We can write things like if true then 0 else 0 and succ (pred (succ 0)) and if (iszero 0) then true else false. We don't actually define how parentheses are evaluated but we add them in our examples for clarity.

We don't explain how our syntax is evaluated, so our language currently lacks any meaning, or semantics. We will add semantics in the next section. It is also of note that we don't define common arithmetic regarding the natural numbers such as addition or subtraction, but one can see how those operations can be expressed as a combination of succ and pred, if we take succ 0 to mean 1 and pred (succ (succ 0)) to also mean 1.

There are a few formal ways to construct this syntax, namely through induction, inference rules, and construction. I want to show how inference rules are expressed, so the reader can more easily understand the notation of transition functions which show up in the next section when we define our semantics. Our goal is to define the set T\mathcal{T} which is the set of all possible terms in our syntax.

trueTfalseT0Tt1Tsucc t1Tt1Tpred t1Tt1Tiszero t1Tt1Tt2Tt3Tif t1 then t2 else t3T\mathtt{true} \in \mathcal{T} \quad \mathtt{false} \in \mathcal{T} \quad 0 \in \mathcal{T} \\ \cfrac{\mathtt{t_1} \in \mathcal{T}}{\mathtt{succ\ t_1} \in \mathcal{T}} \quad \cfrac{\mathtt{t_1} \in \mathcal{T}}{\mathtt{pred\ t_1} \in \mathcal{T}} \quad \cfrac{\mathtt{t_1} \in \mathcal{T}}{\mathtt{iszero\ t_1} \in \mathcal{T}} \\ \cfrac{ \mathtt{t_1} \in \mathcal{T} \quad \mathtt{t_2} \in \mathcal{T} \quad \mathtt{t_3} \in \mathcal{T} } { \mathtt{if\ t_1\ then\ t_2\ else\ t_3} \in \mathcal{T} }

The notation shows how one can infer the bottom conclusion if the meta variables (ex: t1\mathtt{t_1}) in the top part satisfy the conditions above it. We can express the infinite set of possible syntactic statements T\mathcal{T} in a finite set of rules because we have these meta variables (ex: if (iszero 0) then true else false is contained within if t1 then t2 else t3\mathtt{if\ t_1\ then\ t_2\ else\ t_3}). Conclusions with no conditions are called axioms.

Initially, we will investigate a reduced subset of this language dealing with only the boolean arithmetic:

t ::=
  true
  false
  if t then t else t

Syntax, Semantics, and Evaluation

Our language now has syntax and we are ready to add meaning, or semantics. For example, the terms iszero true or if 0 then t else t are syntactically valid, but they should feel "meaningless" in practice. Semantics provides us with a way to understand what kinds of terms have meaning and which ones do not.

There are several approaches to semantics. Of note is Axiomatic Semantics, Denotational Semantics, and Operational Semantics. We will look at operational semantics in order to give meaning to our language. Operational semantics gives meaning to our syntax by defining an abstract interpreter of terms in our syntax. Keep in mind a term can be a combination of the basic rules used to define a term; true and if true then true else (if false then true else false) are both terms. This abstract machine can be thought of as an automaton (like a finite state automaton) with the current term being treated as its state and the state transitions being an evaluation of the current term into some other term. The meaning of a term is the final state of the automaton if and when it terminates. In our example, the meaning of a term will be the value that is returned when a term is evaluated (ie: either true or false).

We define the operational semantics of our boolean arithmetic below:

syntaxtransition rules
t ::=truefalseif t then t else tv ::=truefalse\mathtt{t\ ::=} \\ \quad \mathtt{true} \\ \quad \mathtt{false} \\ \quad \mathtt{if\ t \ then \ t\ else\ t} \\ \\ \mathtt{v\ ::=} \\ \quad \mathtt {true} \\ \quad \mathtt{false}if true then t2 else t3  t2(E-IFTRUE)if false then t2 else t3  t3(E-IFFALSE)t1  t1if t1 then t2 else t3(E-IF)if t1 then t2 else t3 \mathtt{if~true~then~t_2~else~t_3~\to~t_2} \quad \text{(E-IFTRUE)} \\ \mathtt{if~false~then~t_2~else~t_3~\to~t_3} \quad \text{(E-IFFALSE)} \\ \cfrac{ \mathtt{t_1~\to~t'_{1}}}{\mathtt{if~t_1~then~t_2~else~t_3}} \quad \text{(E-IF)} \\ \to \mathtt{if~t'_{1}~then~t_2~else~t_3}

We have defined 3 sets, the set of terms, the set of values, and the set of transition rules. Transition rules are expressed as transition functions. There are a few things to note here. One is that we make a distinction between values and terms in our syntax now. The main addition here is the right hand side of the table, which shows the transition rules of our language. This describes what kind of terms can be transitioned into other terms.

For example, We can say if true then true else falsetrue\tt{if~true~then~true~else~false} \to \tt{true} due to transition rule E-IFTRUE\text{E-IFTRUE}. This should be self evident, but the order of operations when dealing with rule E-IF\text{E-IF} deserves to be mentioned explicitly:

if (if true then true else false)then (if false then true else false)else trueif true then (if false then true else false) else true(E-IF)if false then true else false(E-IFTRUE)false(E-IFFALSE)\mathtt{if~(if~true~then~true~else~false)} \\ \quad \mathtt{then~(if~false~then~true~else~false)} \\ \quad \mathtt{else~true} \\ \to \mathtt{if~true~then~(if~false~then~true~else~false)~else~true} \quad \because \text{(E-IF)} \\ \to \mathtt{if~false~then~true~else~false} \quad \because \text{(E-IFTRUE)} \\ \to \mathtt{false} \quad \because \text{(E-IFFALSE)}

We evaluate the condition term of the if statement before we evaluate the content terms to return. The transition rule E-IF\text{E-IF} determines the behaviour, the order of operations in this case, of our abstract interpreter.

Let us explicitly make note of some properties of this semantics. Note that these theorems are only true for the particular semantics we are looking at, and are aimed to describe properties of our semantics, not discern general truths about all semantics.

Theorem 3.5.4: A transition function is deterministic, i.e. if tt\mathtt{t}\to\mathtt{t'} and tt\mathtt{t}\to\mathtt{t''} then t=t\mathtt{t'}=\mathtt{t''}.

That seems true. A syntactically valid term is unambiguously transitioned using one of the 3 transition functions.

Now, notice how there is no rule to transition from false\tt{false} onwards. We say that terms which cannot be transitioned from any further are in its normal form.

Theorem 3.5.7: All values are in its normal form.

Theorem 3.5.8: All terms in its normal form are values.

This means that in this language, all terms can be evaluated to a value. Hopefully these two theorems are also self evident for our language.

We express a series of transitions ttt\tt{t} \to \tt{t'} \to \tt{t''} using the symbol \to^* for brevity as tt\tt{t} \to^* \tt{t''}. We call a series of transitions from a term to its normal form an evaluation.

Theorem 3.5.11: An evaluation is deterministic, i.e. if u\tt{u} and u\tt{u'} are in its normal form, tu  tu    u=u\mathtt{t} \to^* \mathtt{u} ~\land~ \mathtt{t} \to^* \mathtt{u'} \implies \mathtt{u} = \mathtt{u'}

Theorem 3.5.12: In our simplified language, all terms can be evaluated to its normal form.

The proof for this is an interesting one. Another way to interpret this theorem is to say that our automaton terminates after a finite amount of state transitions. We will prove that our automaton terminates, which in turn should provide us with a more vivid view of what it means for a program to terminate. In order to do this, we introduce the idea of a well founded set.

Definition 2.2.10: A well founded set SS is a set with a partial order relation \leq with no infinite descending chains. In simpler terms, this means that we can define a "minimum" value from our set. (ex: 1 is the minimum of N\mathbb{N}, so the set of natural numbers is well founded.)

The basic flow of proofs about termination is as follows:

  1. We define a mapping ff from the automaton's state t\tt{t} to some well founded set SS.
  2. Then, we show that a state transition tt\mathtt{t}\to\mathtt{t'} satisfies f(t)<f(t)f(\mathtt{t})<f(\mathtt{t'}).
  3. Thus, a series of state transitions is finite (the automaton terminates) because there is no infinite descending chain for set SS.

Proof for theorem 3.5.12: First, we define our mapping ff. f(t):=size(t)f(\mathtt{t}) := size(\mathtt{t}) where

size(true)=1size(false)=1size(if t1 then t2 else t3)=1+size(t1)+size(t2)+size(t3)\quad size(\mathtt{true}) = 1 \\ \quad size(\mathtt{false}) = 1 \\ \quad size(\mathtt{if~t_1~then~t_2~else~t_3}) = 1+size(\mathtt{t_1})+size(\mathtt{t_2})+size(\mathtt{t_3})

ff maps a term to the set of natural numbers N\mathbb{N} which is well founded.

We can see how each transition reduces the size of a term, as each transition will "remove" one if\tt{if} statement from the term, so f(t)<f(t)q.e.d.f(\mathtt{t}) < f(\mathtt{t'}) \quad \text{q.e.d.}.

Once we begin to add more features to our language, this will not always be the case; adding recursive functions will cause infinite loops.

Tweaking the Semantics for New Behaviour

Let us add a new transition function to our existing transition rules:

if true then t2 else t3t3(E-FUNNY1)\mathtt{if~true~then~t_2~else~t_3} \to \mathtt{t_3} \quad \text{(E-FUNNY1)}

This invalidates some of our theorems that we have mentioned above. Theorem 3.5.4 no longer holds, as transitions are now ambiguous when a term looks like if true then t_1 else t_2. 3.5.11 also does not hold, since the evaluation is also ambiguous. 3.5.7 and 3.5.8 still holds as we can still evaluate a term to a value, as all our previous rules still exist.

Now, let us add a different transition function instead of E-FUNNY1\text{E-FUNNY1}:

t2t2if t1 then t2 else t3if t1 then t2 else t3(E-FUNNY2)\cfrac{ \mathtt{t_2} \to \mathtt{t_2'} }{ \mathtt{if~t_1~then~t_2~else~t_3} \to \mathtt{if~t_1~then~t_2'~else~t_3} } \quad \text{(E-FUNNY2)}

With the addition of this rule, we can see that 3.5.4 no longer holds, much like the previous example. However, 3.5.11 still holds, because the only ambiguity introduced is in the order of operations, not the resulting value. 3.5.7 and 3.5.8 still hold for the same reason as before.

To be continued...

In this post, we have explored the concept of syntax and semantics, taking a closer look at what we can formally say about a language. In the next section, we will add the arithmetic regarding natural numbers again and explore syntactically valid terms which are semantically meaningless.