You're reading the public-facing archive of the Category Theory Zulip server.
To join the server you need an invite. Anybody can get an invite by contacting Matteo Capucci at name dot surname at gmail dot com.
For all things related to this archive refer to the same person.
I am trying to reproduce a completeness proof for System F with respect to a categorical model. (Well, I am actually doing just an “adequacy” proof since I do not have eta-rules, so it will not be complete).
The idea is to prove that whenever , then and are computationally equivalent (meaning that they behave the same in any context). In a proof for simply typed lambda calculus, I would do this by induction on . However, with a universal quantification, I quickly run into problems in the polymorphic case when the type is . Indeed, using progress, subject reduction, and soundness, I can conclude that since we have and thus, .
From this, by the induction hypothesis, I conclude that is computationally equivalent to . Now, to prove that is computationally equivalent to I need to "test it" in any contexts, so I use a substitution lemma to deduce that for any , .
This is where, of course, I get stuck since I cannot use the induction hypothesis to conclude computationally equivalent to because may be larger than .
I do not know how to apply the standard solution introduced by Girard to prove the strong normalization of System F, which consisted of, instead of using the problematic to define the interpretation of types, using a substitution and parameterizing the interpretations with it, using .
He solved the problem of the inductive definition of types not being well-founded, and I want to solve the problem of the induction hypothesis not being applicable in my case.
Can somebody point me in the right direction suggesting me where to look? I could not find any proof of completeness or adequacy for System F that explicitly explains how to circumvent this problem.
every proof I've seen of anything nontrivial about system F involved using a "logical relations argument": https://cs.au.dk/~birke/papers/AnIntroductionToLogicalRelations.pdf to circumvent some problem with a substitution making a term too big to apply the inductive hypothesis to.
Thanks. As far as I can see, that document describes in great detail the solution à la Girard that I mentioned in my post, but the problem remains of how to adapt it to an adequacy proof, where the issue is not the well-foundedness of the definition but the applicability of the induction hypothesis.
In any case, thanks for the link! I will read it in detail to see if I can get some insights from there.