Software:HOL Light

From HandWiki

HOL Light is a proof assistant for classical higher-order logic. It is a member of the HOL theorem prover family. Compared with other HOL systems, HOL Light is intended to have relatively simple foundations. HOL Light is authored and maintained by the mathematician and computer scientist John Harrison. HOL Light is released under the simplified BSD license.[1]

Logical foundations

HOL Light is based on a formulation of type theory with equality as the only primitive notion. The primitive rules of inference are the following:

t=t REFL reflexivity of equality
Γs=tΔt=uΓΔs=u TRANS transitivity of equality
Γf=gΔx=yΓΔf(x)=g(y) MK_COMB congruence of equality
Γs=tΓ(λx.s)=(λx.t) ABS abstraction of equality (x must not be free in Γ)
(λx.t)x=t BETA connection of abstraction and function application
{p}p ASSUME assuming p, prove p
Γp=qΔpΓΔq EQ_MP relation of equality and deduction
ΓpΔq(Γ{q})(Δ{p})p=q DEDUCT_ANTISYM_RULE deduce equality from 2-way deducibility
Γ[x1,,xn]p[x1,,xn]Γ[t1,,tn]p[t1,,tn] INST instantiate variables in assumptions and conclusion of theorem
Γ[α1,,αn]p[α1,,αn]Γ[τ1,,τn]p[τ1,,τn] INST_TYPE instantiate type variables in assumptions and conclusion of theorem

This formulation of type theory is very close to the one described in section II.2 of (Lambek Scott).

References

Further reading