Library UniMath.SubstitutionSystems.SimplifiedHSS.STLC

Syntax of the simply typed lambda calculus as a multisorted signature.
Written by: Anders Mörtberg, 2017
version for simplified notion of HSS by Ralph Matthes (2022, 2023) the file is identical to the homonymous file in the parent directory, except for importing files from the present directory

The simply typed lambda calculus from a multisorted binding signature

Section Lam.

Context (sort : hSet) (arr : sort sort sort).

A lot of notations, upstream?
Local Infix "::" := (@cons _).
Local Notation "[]" := (@nil _) (at level 0, format "[]").
Local Notation "C / X" := (slice_cat C X).
Local Notation "a + b" := (setcoprod a b) : set.

Local Definition HSET_over_sort : category.
Show proof.
exists (HSET / sort).
now apply has_homsets_slice_precat.

Let HSET_over_sort2 := [HSET/sort,HSET_over_sort].

Local Lemma BinProducts_HSET_over_sort2 : BinProducts HSET_over_sort2.
Show proof.

Local Lemma Coproducts_HSET_over_sort2 : Coproducts ((sort × sort) + (sort × sort))%set HSET_over_sort2.
Show proof.

The signature of the simply typed lambda calculus
Definition STLC_Sig : MultiSortedSig sort.
Show proof.
use make_MultiSortedSig.
- apply ((sort × sort) + (sort × sort))%set. - intros H; induction H as [st|st]; induction st as [s t].
  + exact ((([],,arr s t) :: ([],,s) :: nil),,t).
  + exact (((cons s [],,t) :: []),,arr s t).

The signature with strength for the simply typed lambda calculus
Extract the constructors of the stlc from the initial algebra
The variables
The source of the application constructor
The application constructor
The source of the lambda constructor
Definition lam_source (s t : sort) (X : HSET_over_sort2) : HSET_over_sort2 :=
  (sorted_option_functor sort s X proj_functor sort t) hat_functor sort (arr s t).

Definition lam_map (s t : sort) : HSET_over_sort2lam_source s t STLC,STLC :=
  (CoproductIn _ _ (Coproducts_functor_precat _ _ _ _ _) (ii2 (s,,t)))
    · SubstitutionSystems STLC_alg.

Definition make_STLC_Algebra X (fvar : HSET_over_sort21,X)
  (fapp : s t, HSET_over_sort2app_source s t X,X)
  (flam : s t, HSET_over_sort2lam_source s t X,X) :
    algebra_ob STLC_Functor.
Show proof.
apply (tpair _ X).
use (BinCoproductArrow _ fvar).
use CoproductArrow.
intro b; induction b as [st|st]; induction st as [s t].
- apply (fapp s t).
- apply (flam s t).

The recursor for the stlc
The equation for variables
Lemma foldr_var X (fvar : HSET_over_sort21,X)
  (fapp : s t, HSET_over_sort2app_source s t X,X)
  (flam : s t, HSET_over_sort2lam_source s t X,X) :
  var_map · foldr_map X fvar fapp flam = fvar.
Show proof.
assert (F := maponpaths (λ x, BinCoproductIn1 (BinCoproducts_functor_precat _ _ _ _ _) · x)
                        (algebra_mor_commutes _ _ _ (foldr_map X fvar fapp flam))).
rewrite assoc in F.
eapply pathscomp0; [apply F|].
rewrite assoc.
eapply pathscomp0; [eapply cancel_postcomposition, BinCoproductOfArrowsIn1|].
rewrite <- assoc.
eapply pathscomp0; [eapply maponpaths, BinCoproductIn1Commutes|].
apply id_left.


End Lam.