Skip to content

Sparrow-Project/strong-normalization

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 

Repository files navigation

Strong Normalization

The proofs in this repository are formalizations in the Abella proof assistant which show that strong normalizability for the Simply Typed Lambda Calculus (STLC) and System T may be proved using an inductive version of the reducibility predicate, which is an example of a ground stratified inductive definition:

$${\color{blue}\mathrm{red}}\ {\color{purple}{\mathrm{unit}}}\ {\color{purple}{\star}} {\stackrel{\mathclap{{\mu}}}{:=}}\ \top$$ $${\color{blue}\mathrm{red}}\ ({\color{purple}{\mathrm{arr}}}\ A\ B)\ ({\color{purple}{\mathrm{lam}}}\ S) {\stackrel{\mathclap{{\mu}}}{:=}} \forall u.({\color{blue}\mathrm{red}}\ A\ u)\supset({\color{blue}\mathrm{red}}\ B\ (S\ u))$$ $${\color{blue}\mathrm{red}}\ A\ T {\stackrel{\mathclap{{{\mu}}}}{:=}} {\color{blue}\mathrm{neutral}}\ T\wedge\forall u.({\color{blue}\mathrm{step}}\ T\ u)\supset({\color{blue}\mathrm{red}}\ A\ u)$$

Simply Typed Lambda Calculus

The syntax and typing rules for STLC are respectively specified in stlc.sig and stlc.mod.

The file stlc-simplified.thm describes a proof that the ground-stratified inductive version of reducibility implies strong normalizability in the simplified case in which a constant is introduced to simulate variables.

The file stlc.thm describes a strong normalization proof for STLC using the ground-stratified inductive version of reducibility.

System T

The syntax and typing rules for System T are respectively specified in systemT.sig and systemT.mod.

The file systemT-partial.thm describes a strong normalization proof for System T using the ground-stratified inductive version of the reducibility predicate. In this file, we restrict the reduction rules for simplicity.

The file systemT.thm describes a strong normalization proof for System T using the ground-stratified inductive version of the reducibility predicate. The reduction rules in this file are identical to those presented in Girard, Lafont, and Taylor's Proof and Types.

About

Strong normalization proof for System T in Abella

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors