A.2.4 Dependent function types (Π-types)


In §1.2 (http://planetmath.org/12functiontypes), we introduced non-dependent functions AB in order to define a family of types as a function λ(x:A).B:A𝒰i, which then gives rise to a type of dependent functions (x:A)B. But with explicit contexts we may replace λ(x:A).B:A𝒰i with the judgment

x:AB:𝒰i.

Consequently, we may define dependent functions directly, without reference to non-dependent ones. This way we follow the general principle that each type former, with its constants and rules, should be introduced independently of all other type formers. In fact, henceforth each type former is introduced systematically by:

  • a formation rule, stating when the type former can be applied;

  • some introduction rules, stating how to inhabit the type;

  • elimination rules, or an inductionMathworldPlanetmath principle, stating how to use an element of the type;

  • computation rules, which are judgmental equalities explaining what happens when elimination rules are applied to results of introduction rules;

  • optional uniqueness principles, which are judgmental equalities explaining how every element of the type is uniquely determined by the results of elimination rules applied to it.

(See also \autorefrmk:introducing-new-concepts.)

For the dependent function type these rules are: {mathparpagebreakable} \inferrule*[right=Π-form] Γ ⊢A : 𝒰 _i Γ,x : A ⊢B : 𝒰 _iΓ ⊢∏_(x:A)B : 𝒰 _i \inferrule*[right=Π-intro] Γ,x : A ⊢b : B Γ ⊢λ(x : A). b : ∏_(x:A)B \inferrule*[right=Π-elim] Γ ⊢f : ∏_(x:A)B
Γ ⊢a : A Γ ⊢f(a) : B[a/x] \inferrule*[right=Π-comp] Γ,x : A ⊢b : B
Γ ⊢a : A Γ ⊢(λ(x : A). b)(a) ≡b[a/x] : B[a/x] \inferrule*[right=Π-uniq] Γ ⊢f : ∏_(x:A)B Γ ⊢f ≡(λx. f(x)) : ∏_(x:A)B

The expression λ(x:A).b binds free occurrences of x in b, as does (x:A)B for B.

When x does not occur freely in B so that B does not depend on A, we obtain as a special case the ordinary function type AB:(x:A)B. We take this as the definition of .

We may abbreviate an expression λ(x:A).b as λx.b, with the understanding that the omitted type A should be filled in appropriately before type-checking.

Title A.2.4 Dependent function types (Π-types)
\metatable