In System F, what is the difference between the following 3 types:
Reproduced in text here:
∀X.((X → X) → (X → X))
∀X.((X → X) → ∀X.(X → X))
((∀X.X → X) → (∀X.X → X))
Is the second one more general than the first?
Copyright © 2021 Jogjafile Inc.
Depends on how tight
forall
quantifier binds. Lets assume that it binds on next terminal expression (variable or()
-block).The first will become
(X0 -> X0) -> (X0 -> X0)
whereX0
is a fresh type variable.The second will become
(X0 -> X0) -> forall X1. (X1 -> X1)
whereX0
andX1
are fresh.The third -
(bot -> X) -> (bot -> X)
whereX
is the old binding and bot is the uninhabitedforall X. X
.