Lecture 31: building DFAs, structural induction

Reasoning about DFAs

automaton with 3 states When building a DFA, it is helpful to write down a condition associated with each state. For example, suppose we wanted to build a machine that recognizes strings starting with "11". We might build the machine to the right (click for LaTeX source):

How does this machine work? Well, we know that if processing x ends in state q1, then x must be the empty string. Similarly, the only string that gets to q2 is "1". Similarly, any string that starts with "0" or "10" ends in q4; so in order to get to state q3, the string must start with "11".

When building an automaton, associate a fact with each state. You can then check that each transition is correct by assuming that the string without the last character satisfies the property correspoinding to the start of the transition, and then proving that the string with the last character satisfies the property of the target of the transition.

Inductively defined sets

An inductively defined set is a set where the elements are constructed by a finite number of applications of a given set of rules.

Examples:

BNF

Compact way of writing down inductively defined sets: BNF (Backus Naur Form)

Only the name of the set and the rules are written down; they are separated by a "::=", and the rules are separated by vertical bar ().

Examples (from above):

Here, the variables to the left of the  ∈  indicate metavariables. When the same characters appear in the rules on the right-hand side of the : :  = , they indicate an arbitrary element of the set being defined. For example, the e1 and e2 in the e1 + e2 rule could be arbitrary elements of the set E, but  +  is just the symbol  + .

Inductively defined functions

If X is an inductively defined set, you can define a function from X to Y by defining the function on each of the types of elements of X; i.e. for each of the rules. In the inductive rules (i.e. the ones containing the metavariable being defined), you can assume the function is already defined on the subterms.

Examples:

Proofs by structural induction

If X is an inductively defined set, then you can prove statements of the form ∀ x ∈ X, P(x) by giving a separate proof for each rule. For the inductive/recursive rules (i.e. the ones containing metavariables), you can assume that P holds on all subexpressions of x.

Examples: