a mini course on martin l of type theory algebras
play

A Mini Course on Martin-L of Type Theory Algebras, Coalgebras, and - PowerPoint PPT Presentation

A Mini Course on Martin-L of Type Theory Algebras, Coalgebras, and Interactive Theorem Proving Anton Setzer Swansea University, Swansea UK Lisbon, 9 September 2015 Anton Setzer Mini Course on Martin-L of Type Theory 1/ 136 Type Theory


  1. Key Philosophical Principles of Martin-L¨ of Type Theory Objects of Type Theory ◮ Some terms are in normal form, e.g. suc ( suc ( suc zero )) ◮ Other terms have reductions, e.g. zero + suc zero − → suc ( zero + zero ) − → suc zero . ◮ Martin-L¨ of uses program for terms as above, which evaluate according to the reduction rules. Anton Setzer Mini Course on Martin-L¨ of Type Theory 19/ 136

  2. Key Philosophical Principles of Martin-L¨ of Type Theory Beyond Finitism ◮ We can form a mathematical theory where we have finitely many finite objects , and convince ourselves of its consistency. ◮ The resulting theory is not very expressive however. ◮ In order to talk about something which of infinite nature, we introduce the concept of a type . Anton Setzer Mini Course on Martin-L¨ of Type Theory 20/ 136

  3. Key Philosophical Principles of Martin-L¨ of Type Theory Types ◮ A type A is given by a collection of rules which allow us to conclude ◮ that certain objects are elements of that type a : A ◮ and how to form from an element a : A an element of another type B ◮ We don’t consider a type as a set of elements (although when working with one often thinks like that). That would mean that we have an infinite object per se . Anton Setzer Mini Course on Martin-L¨ of Type Theory 21/ 136

  4. Key Philosophical Principles of Martin-L¨ of Type Theory Example: Natural Numbers ◮ For instance we have zero : N if n : N then suc n : N ◮ This is written as rules n : N zero : N suc n : N ◮ We can conclude for instance suc ( suc zero ) : N Anton Setzer Mini Course on Martin-L¨ of Type Theory 22/ 136

  5. Key Philosophical Principles of Martin-L¨ of Type Theory Example: Natural Numbers ◮ Furthermore if we have another type B , i.e. B : Set and if we have b : B g : B → B we can form h : N → B = h zero b h ( suc n ) = g ( h n ) ◮ These rules express what we informally describe as iteration h n = g n b ◮ We will later introduce stronger elimination rules for natural numbers (dependent higher type primitive recursion). Anton Setzer Mini Course on Martin-L¨ of Type Theory 23/ 136

  6. Key Philosophical Principles of Martin-L¨ of Type Theory Representation of Infinite Objects by Finite Objects ◮ This doesn’t mean that we can’t speak of infinite objects . ◮ We can have for instance a collection of sets (or universe) U : Set which contains a code for the set of natural numbers � N : U ◮ We can consider an operation T , which decodes codes in U into sets, i.e. we have the rule u : U T u : Set ◮ Then we can add a rule T � N = N : Set ◮ � N is still a finite object, but it represents (via T ) a type which has infinitely many elements. Anton Setzer Mini Course on Martin-L¨ of Type Theory 24/ 136

  7. Key Philosophical Principles of Martin-L¨ of Type Theory Constructive Mathematics ◮ Before we already said that propositions should be considered as types . ◮ Elements of such types should be proofs . ◮ These proofs will give constructive content of proofs . ◮ A proof p : ( ∃ x : A . B ( x )) should allow us to compute an a : A s.t. B ( a ) is true Anton Setzer Mini Course on Martin-L¨ of Type Theory 25/ 136

  8. Key Philosophical Principles of Martin-L¨ of Type Theory Constructive Mathematics ◮ Similarly from a proof p : A ∨ B we should able to compute a Boolean value, such that if it is true, A holds, and if it false B holds. ◮ Problem: We can’t get in general a proof of A ∨ ¬ A unless we can decide whether A or ¬ A holds Anton Setzer Mini Course on Martin-L¨ of Type Theory 26/ 136

  9. Key Philosophical Principles of Martin-L¨ of Type Theory Link between Logic and Computer Programming ◮ Constructive Mathematics provides a direct link between proofs/logic and programs/data . ◮ In type theory there is no distinction between a data type and a logical formula (radical propositions as types). ◮ Allows to write programs in which data and logical formulas are mixed . Anton Setzer Mini Course on Martin-L¨ of Type Theory 27/ 136

  10. Key Philosophical Principles of Martin-L¨ of Type Theory BHK-Interpretation of Logical Connectives The Brouwer-Heyting-Kolmogorov ( BHK ) Interpretation of the logical connectives is the constructive interpretation of the logical operators. ◮ A proof of A ∧ B is given by a proof of A and a proof of B ◮ A proof of A ∨ B is given by a proof of A or a proof of B plus the information which of the two holds. Anton Setzer Mini Course on Martin-L¨ of Type Theory 28/ 136

  11. Key Philosophical Principles of Martin-L¨ of Type Theory BHK-Interpretation of Logical Connectives ◮ A proof of A → B is a function (program) which computes from a proof of A a proof of B ◮ A proof of ∀ x : A . B ( x ) is a function (program) which for every a : A computes a proof of B ( a ) ◮ A proof of ∃ x : A . B ( x ) consists of an a : A plus a proof of B ( a ) Anton Setzer Mini Course on Martin-L¨ of Type Theory 29/ 136

  12. Key Philosophical Principles of Martin-L¨ of Type Theory BHK-Interpretation of Logical Connectives ◮ There is no proof of falsity written as ⊥ ◮ We define ¬ A := A → ⊥ so a proof of ¬ A is a function which converts a proof of A into a (non-existent) proof of ⊥ Anton Setzer Mini Course on Martin-L¨ of Type Theory 30/ 136

  13. Key Philosophical Principles of Martin-L¨ of Type Theory Intuitionistic Logic ◮ We don’t obtain stability ¬¬ A → A ◮ So we cannot carry out indirect proofs: ◮ An indirect proof is as follows: itmm In order to proof A assume ¬ A ◮ Then derive a contradiction ◮ So ¬ A is false (i.e. we have ¬¬ A . ◮ By stability we get A . ◮ Stability is not provable in general constructively: ◮ If we have ¬¬ A we have a method which from a proof of ¬ A computes a proof of ⊥ . ◮ This does not give as a method to compute a proof of A . Anton Setzer Mini Course on Martin-L¨ of Type Theory 31/ 136

  14. Key Philosophical Principles of Martin-L¨ of Type Theory Double Negation Interpretation ◮ However one can interpret formulas from classical logic into intuitionistic logic so that a formula is classically provable iff its translation is intuitioniscally provable. ◮ Double negation interpretation (not part of this course). Anton Setzer Mini Course on Martin-L¨ of Type Theory 32/ 136

  15. Key Philosophical Principles of Martin-L¨ of Type Theory Double Negation Interpretation ◮ Easy to see with ∨ : Intuitionistically we have ¬ ( ¬ ( A ∨ B )) ↔ ¬ ( ¬ A ∧ ¬ B ) If we replace A ∨ B by A ∨ int B := ¬ ( ¬ A ∧ ¬ B ) then A ∨ int B behaves intuitionistically (with double negated formulas) like classical ∨ . ◮ Especially tertium non datur is provable A ∨ int ¬ A = ¬ ( ¬ A ∧ ¬¬ A ) Anton Setzer Mini Course on Martin-L¨ of Type Theory 33/ 136

  16. Key Philosophical Principles of Martin-L¨ of Type Theory Conclusion (Key Philosophical Principles of MLTT) ◮ This concludes the introduction into the philosophical principles of Martin-L¨ of Type Theory. ◮ We will in the next section go through the setup of Martin-L¨ of Type Theory with the terminology by Martin-L¨ of. Anton Setzer Mini Course on Martin-L¨ of Type Theory 34/ 136

  17. Setup of Martin-L¨ of Type Theory Type Theory and Interactive Theorem Proving Key Philosophical Principles of Martin-L¨ of Type Theory Setup of Martin-L¨ of Type Theory Basic Types in Martin-L¨ of Type Theory The Logical Framework Inductive Data Types (Algebras) in Type Theory Coinductive Data Types (Coalgebras) in Type Theory Anton Setzer Mini Course on Martin-L¨ of Type Theory 35/ 136

  18. Setup of Martin-L¨ of Type Theory Judgements of Type Theory ◮ The statements of type theory are called “judgements” . ◮ There are four judgements of type theory: ◮ A is a type written as A : Set ◮ A and B are equal types written as A = B : Set ◮ a is an element of type A written as a : A ◮ a , b are equal elements of type A written as a = b : A Anton Setzer Mini Course on Martin-L¨ of Type Theory 36/ 136

  19. Setup of Martin-L¨ of Type Theory s − → t vs s = t ◮ The notion of reduction s − → t corresponds to computation rules where term s evaluates to t . ◮ In type theory one uses instead s = t which is the reflexive/symmetric/transitive closure of − → or equivalence relation containing − → . ◮ In most rules when concluding s = t : A it is actually the case that we have a reduction s − → t Anton Setzer Mini Course on Martin-L¨ of Type Theory 37/ 136

  20. Setup of Martin-L¨ of Type Theory s − → t vs s = t ◮ The notion s − → t doesn’t occur in the formal theory of Martin-L¨ of Type Theory, but only when implementing it. Anton Setzer Mini Course on Martin-L¨ of Type Theory 38/ 136

  21. Setup of Martin-L¨ of Type Theory Dependent Judgements ◮ We have as well dependent judgements , for instance for expressing if x : N then suc x : N which we write x : N ⇒ suc x : N ◮ Examples: x : N , y : N ⇒ x + y : N x : N ⇒ x + zero = x : N x : List ⇒ Sorted x : Set ⇒ Sorted [] = True : Set Anton Setzer Mini Course on Martin-L¨ of Type Theory 39/ 136

  22. Setup of Martin-L¨ of Type Theory Examples of Dependent Judgements ◮ In general a dependent judgement has the form x 1 : A 1 , x 2 : A 2 ( x 1 ) , . . . , x n : A n ( x 1 , . . . , x n − 1 ) ⇒ θ ( x 1 , . . . , x n ) where, if write � x for x 1 , . . . , x n θ ( � x ) is one of the four judgements before B ( � x ) : Set or B ( � x ) = B ′ ( � x ) : Set or b ( � x ) : B ( � x ) or b ( � x ) = b ′ ( � x ) : B ( � x ) Anton Setzer Mini Course on Martin-L¨ of Type Theory 40/ 136

  23. Setup of Martin-L¨ of Type Theory Judgements in Agda ◮ In the theorem prover Agda we can define functions and objects by writing n : N n = zero f : N → N f zero = suc zero f ( suc m ) = suc ( suc ( f m )) ◮ = above is a reduction rule. ◮ We can type in a term e.g. f n and compute its normal form which is in this case suc zero Anton Setzer Mini Course on Martin-L¨ of Type Theory 41/ 136

  24. Setup of Martin-L¨ of Type Theory Judgements in Agda ◮ We can check whether t : A by type checking a : A a = t ◮ However we can check t = s : A only indirectly via its consequences. ◮ The judgement s = t : A is built-in as part of the machinery of Agda. Anton Setzer Mini Course on Martin-L¨ of Type Theory 42/ 136

  25. Setup of Martin-L¨ of Type Theory Four Kinds of Rules for each Type For each type A there are 4 kinds of rules: ◮ Formation rules: They form a new type e.g. N : Set ◮ Introduction Rules: They introduce elements of a type, e.g. n : N zero : N suc n : N Anton Setzer Mini Course on Martin-L¨ of Type Theory 43/ 136

  26. Setup of Martin-L¨ of Type Theory Four Kinds of Rules for each Type ◮ Elimination Rules: They allow to construct from an element of one type elements of another type. For instance iteration for N would correspond to the rule B : Set b : B g : B → B n : N h n : B where h := iter B b g Anton Setzer Mini Course on Martin-L¨ of Type Theory 44/ 136

  27. Setup of Martin-L¨ of Type Theory Four Kinds of Rules for each Type ◮ Equality Rules: They show how if we introduce an element of that type and then eliminate it how it is computed (we use h as before) B : Set b : B g : B → B h zero = b : B B : Set b : B g : B → B n : N h ( suc n ) = g ( h n ) : B Anton Setzer Mini Course on Martin-L¨ of Type Theory 45/ 136

  28. Setup of Martin-L¨ of Type Theory Equality Versions of the Rules ◮ There are as well equality versions of the above rules. ◮ They express that if the premises of a rule are equal the conclusions are equal as well. ◮ For instance the equality version of the rule n : N suc n : N is n = m : N suc n = suc m : N Anton Setzer Mini Course on Martin-L¨ of Type Theory 46/ 136

  29. Setup of Martin-L¨ of Type Theory Canonical vs Non-Canonical Elements ◮ The elements introduced by an introduction rule start with a constructor. ◮ For instance the constructors of N are zero and suc ◮ Elements introduced by an introduction rule are called canonical elements . ◮ Canonical elements of N are for instance zero suc ( zero + zero ) where + is defined using elimination rules. ◮ Elements introduced by an elimination rule are non-canonical elements. For instance zero + zero ◮ Using the equality rules, every non canonical element of a type is supposed to evaluate to a canonical element of that type. Anton Setzer Mini Course on Martin-L¨ of Type Theory 47/ 136

  30. Setup of Martin-L¨ of Type Theory Canonical elements of N ◮ A canonical element of N can be evaluated further. ◮ E.g. we have suc ( zero + zero ) − → suc zero ◮ In case of a function type λ x . t is considered to be canonical. ◮ Note that in λ x . x : N → N x doesn’t start with a constructor (doesn’t even make sense to ask for it, because it is an open term). So here it is crucial that it is only required that a canonical element starts with a constructor. Anton Setzer Mini Course on Martin-L¨ of Type Theory 48/ 136

  31. Setup of Martin-L¨ of Type Theory Canonical elements of N ◮ The type checking of equality is based on this notation of canonical element or head normal form. ◮ In order to check s = t : N we first reduce s and t to canonical form. ◮ If they start with different constructors, s and t are different. → suc t ′ there is no need to evaluate t ′ . E.g. if s − → zero , t − → suc t ′ then → suc s ′ t − ◮ If they have the same constructor, e.g. s − we compare s ′ and t ′ . Anton Setzer Mini Course on Martin-L¨ of Type Theory 49/ 136

  32. Basic Types in Martin-L¨ of Type Theory Type Theory and Interactive Theorem Proving Key Philosophical Principles of Martin-L¨ of Type Theory Setup of Martin-L¨ of Type Theory Basic Types in Martin-L¨ of Type Theory The Logical Framework Inductive Data Types (Algebras) in Type Theory Coinductive Data Types (Coalgebras) in Type Theory Anton Setzer Mini Course on Martin-L¨ of Type Theory 50/ 136

  33. Basic Types in Martin-L¨ of Type Theory The Type of Booleans ◮ One of the Simples types is the type of Booleans. ◮ Formation rule: B : Set ◮ Introduction rules: tt : B ff : B ◮ Elimination rule: x : B ⇒ C ( x ) : Set step tt : C ( tt ) step ff : C ( ff ) b : B elim B ( step tt , step ff , b ) : C ( b ) Anton Setzer Mini Course on Martin-L¨ of Type Theory 51/ 136

  34. Basic Types in Martin-L¨ of Type Theory Basic Types: Type of Booleans ◮ Equality rules: elim B ( step tt , step ff , tt ) = step tt : C ( tt ) elim B ( step tt , step ff , ff ) = step ff : C ( ff ) Anton Setzer Mini Course on Martin-L¨ of Type Theory 52/ 136

  35. Basic Types in Martin-L¨ of Type Theory Visualisation (Booleans) B ff tt 2 Constructors, both no arguments. Anton Setzer Mini Course on Martin-L¨ of Type Theory 53/ 136

  36. Basic Types in Martin-L¨ of Type Theory Booleans in Agda data B : Set where tt : B : ff B ¬ : B → B ¬ tt = ff ¬ ff = tt Anton Setzer Mini Course on Martin-L¨ of Type Theory 54/ 136

  37. Basic Types in Martin-L¨ of Type Theory Finite Types ◮ Similar versions for types with 0 , 1 , 3 , 4 , . . . elements. ◮ Special case ∅ . Anton Setzer Mini Course on Martin-L¨ of Type Theory 55/ 136

  38. Basic Types in Martin-L¨ of Type Theory Empty Type ◮ Formation rule: ∅ : Set ◮ Introduction rules: There is no introduction rule. ◮ Elimination rule: x : ∅ ⇒ C ( x ) : Set e : ∅ efq ( e ) : C ( e ) ◮ Equality rules: There is no equality rule. Anton Setzer Mini Course on Martin-L¨ of Type Theory 56/ 136

  39. Basic Types in Martin-L¨ of Type Theory ∅ in Agda data ∅ : Set where efq : ∅ → A efq () - - () stands for the empty case distinction - - and - - starts a comment Anton Setzer Mini Course on Martin-L¨ of Type Theory 57/ 136

  40. Basic Types in Martin-L¨ of Type Theory The Logical Framework (LF) ◮ When writing elimination rules we need to deal with notions such as ◮ C ( x ) is a set depending on x : B . ◮ instantiate x = tt and get C ( tt ). ◮ Idea of the logical framework (LF) is ◮ Instead of saying x : B ⇒ C ( x ) : Set we write C : B → Set ◮ Then we can apply C to tt and obtain C tt : Set ◮ We will introduce the LF more formally later. Anton Setzer Mini Course on Martin-L¨ of Type Theory 58/ 136

  41. Basic Types in Martin-L¨ of Type Theory LF and Foundations ◮ From a foundational point of view the LF is difficult. ◮ It treats the collection of sets as an entity, at least as if one considers it naively. ◮ The foundations of Martin-L¨ of Type Theory work best without the LF. ◮ When using it in the basic type theory below it could be avoided. ◮ We will use it just as a convenient way of writing the rules nicely. Anton Setzer Mini Course on Martin-L¨ of Type Theory 59/ 136

  42. Basic Types in Martin-L¨ of Type Theory Rules for Booleans Using the LF ◮ Formation rule: B : Set ◮ Introduction rules: tt : B ff : B ◮ Elimination rule: C : B → Set step tt : C tt step ff : C ff b : B elim B C step tt step ff b : C b ◮ Equality rules: elim B C step tt step ff tt = step tt : C tt = step ff : C ff elim B C step tt step ff ff Anton Setzer Mini Course on Martin-L¨ of Type Theory 60/ 136

  43. Basic Types in Martin-L¨ of Type Theory Rules for Booleans Using the LF ◮ We can even write elim B : ( C : B → Set ) → C tt → C ff → B → Set Anton Setzer Mini Course on Martin-L¨ of Type Theory 61/ 136

  44. Basic Types in Martin-L¨ of Type Theory The Disjoint Union ◮ Formation rule: A : Set B : Set A + B : Set ◮ Introduction rules: a : A b : B inl a : A + B inr b : A + B Anton Setzer Mini Course on Martin-L¨ of Type Theory 62/ 136

  45. Basic Types in Martin-L¨ of Type Theory The Disjoint Union ◮ Elimination rule: C : A + B → Set step inl : ( x : A ) → C ( inl x ) step inr : ( x : B ) → C ( inr x ) c : A + B elim + C step inl step inr c : C c ◮ Equality rules: elim + C step inl step inr ( inl a ) = step inl a : C ( inl a ) elim + C step inl step inr ( inr b ) = step inr b : C ( inr b ) Anton Setzer Mini Course on Martin-L¨ of Type Theory 63/ 136

  46. Basic Types in Martin-L¨ of Type Theory Visualisation ( A + B ) A + B inr inl B A ◮ Both inl and inr have one non-inductive argument. Anton Setzer Mini Course on Martin-L¨ of Type Theory 64/ 136

  47. Basic Types in Martin-L¨ of Type Theory + as ∨ ◮ A proof of A ∨ B is a proof of A or a proof of B . ◮ So A ∨ B is just A + B . Anton Setzer Mini Course on Martin-L¨ of Type Theory 65/ 136

  48. Basic Types in Martin-L¨ of Type Theory A ∨ B in Agda data ∨ ( A B : Set ) : Set where inl : A → A ∨ B B → A ∨ B inr : - - ∨ denotes infix operator - - We postulate (i.e. assume) some sets postulate A : Set postulate B : Set lemma : A ∨ B → B ∨ A lemma ( inl a ) = inr a lemma ( inr b ) = inl b Anton Setzer Mini Course on Martin-L¨ of Type Theory 66/ 136

  49. Basic Types in Martin-L¨ of Type Theory The Σ-Type ◮ Formation rule: B : A → Set A : Set Σ A B : Set ◮ Introduction rule: a : A b : B a p a b : Σ A B Anton Setzer Mini Course on Martin-L¨ of Type Theory 67/ 136

  50. Basic Types in Martin-L¨ of Type Theory The Σ-Type ◮ Elimination rule: C : Σ A B → Set step : ( a : A , b : B a ) → C ( p a b ) c : Σ A B elim Σ C step c : C c ◮ Equality rule: elim Σ C step ( p a b ) = step a b : C ( p a b ) Anton Setzer Mini Course on Martin-L¨ of Type Theory 68/ 136

  51. Basic Types in Martin-L¨ of Type Theory Visualisation (Σ( A , B )) Σ A B p a b a A b B a ◮ p has two non-inductive arguments. ◮ The type of the 2nd argument depends on the 1st argument. Anton Setzer Mini Course on Martin-L¨ of Type Theory 69/ 136

  52. Basic Types in Martin-L¨ of Type Theory ∃ as Σ ◮ With the LF, a formula depending on x : A is a B : A → Set ◮ A proof of ∃ x : A . B x is ◮ an a : A ◮ together with a b : B a ◮ That’s just an element of Σ A B Anton Setzer Mini Course on Martin-L¨ of Type Theory 70/ 136

  53. Basic Types in Martin-L¨ of Type Theory Σ A B in Agda data Σ ( A : Set ) ( B : A → Set ) : Set where p : ( a : A ) → B a → Σ A B postulate A : Set postulate B : A → Set π 0 : Σ A B → A π 0 ( p a b ) = a π 1 : ( x : Σ A B ) → B ( π 0 x ) π 1 ( p a b ) = b Anton Setzer Mini Course on Martin-L¨ of Type Theory 71/ 136

  54. Basic Types in Martin-L¨ of Type Theory Natural numbers ◮ Formation rule: N : Set ◮ Introduction rules: n : N zero : N S n : N ◮ Elimination rule: C : N → Set step S : ( n : N , C n ) → C ( S n ) step zero : C zero n : N elim N C step zero step S n : C n Anton Setzer Mini Course on Martin-L¨ of Type Theory 72/ 136

  55. Basic Types in Martin-L¨ of Type Theory Natural numbers ◮ Equality rules: elim N C step zero step S zero = step zero : C zero elim N C step zero step S ( S n ) = step S n ( elim N C step zero step S n ) : C ( S n ) Anton Setzer Mini Course on Martin-L¨ of Type Theory 73/ 136

  56. Basic Types in Martin-L¨ of Type Theory Visualisation ( N ) zero N S ◮ zero has no arguments. ◮ S has one inductive argument . Anton Setzer Mini Course on Martin-L¨ of Type Theory 74/ 136

  57. Basic Types in Martin-L¨ of Type Theory W -Type b ′ z = sup a ′′ b ′′ B a ′′ empty, b ′ z ′ therefore leaf z : B a ′ z ′ b y = sup a ′ b ′ b y ′ y ′ y : B a sup a b Assume A : Set , B : A → Set . W A B is the type of well-founded recursive trees with branching degrees ( B a ) a : A . Anton Setzer Mini Course on Martin-L¨ of Type Theory 75/ 136

  58. Basic Types in Martin-L¨ of Type Theory The W -Type ◮ Formation rule: A : Set B : A → Set W A B : Set ◮ Introduction rule: b : B a → W A B a : A sup a b : W A B Anton Setzer Mini Course on Martin-L¨ of Type Theory 76/ 136

  59. Basic Types in Martin-L¨ of Type Theory The W -Type ◮ Elimination rule: C : W A B → Set step : ( a : A ) → ( b : B a → W A B ) → ( ih : ( x : B a ) → C ( b x )) → C (sup a b ) c : W A B elim W C step c : C c ◮ Equality rule: elim W C step (sup a b ) = step a b ( λ x . elim W C step ( b x )) : C (sup a b ) ◮ Here λ x . t is the function mapping x to t . (More details follow below when dealing with the function set). Anton Setzer Mini Course on Martin-L¨ of Type Theory 77/ 136

  60. Basic Types in Martin-L¨ of Type Theory Visualisation ( W A B ) W A B sup a b B a a A ( b x ) x : B a sup has two arguments ◮ First argument is non-inductive. ◮ Second argument is inductive, indexed over B a . ◮ ( B a ) depends on the first argument a . Anton Setzer Mini Course on Martin-L¨ of Type Theory 78/ 136

  61. Basic Types in Martin-L¨ of Type Theory Universes ◮ A universe is a family of sets ◮ Given by ◮ an set U : Set of codes for sets, ◮ a decoding function T : U → Set . Anton Setzer Mini Course on Martin-L¨ of Type Theory 79/ 136

  62. Basic Types in Martin-L¨ of Type Theory Universes ◮ Formation rules: U : Set T : U → Set ◮ Introduction and Equality rules: � T � N : U N = N a : U b : T a → U � Σ a b : U T ( � Σ a b ) = Σ ( T a ) ( T ◦ b ) Similarly for other type formers (except for U ). Anton Setzer Mini Course on Martin-L¨ of Type Theory 80/ 136

  63. Basic Types in Martin-L¨ of Type Theory Elimination Rules for U ◮ Elimination rule for U can be defined. ◮ Not very useful (e.g. one cannot define an embedding of U into itself using elimination rules). Anton Setzer Mini Course on Martin-L¨ of Type Theory 81/ 136

  64. Basic Types in Martin-L¨ of Type Theory Visualisation ( U ) T ( b x ) N � N Σ ( T a ) ( T ◦ b ) U a � Σ a b T a T a ( b x ) ( x : T a ) Anton Setzer Mini Course on Martin-L¨ of Type Theory 82/ 136

  65. Basic Types in Martin-L¨ of Type Theory Analysis ◮ Elements of U are defined inductively , while defining ( T a ) for a : U recursively . ◮ � Σ has two inductive arguments ◮ Second argument is indexed over ( T a ). ◮ Index set ( T a ) for second argument depends on the T applied to first argument a . ◮ T ( � Σ a b ) is defined from ◮ ( T a ), ◮ ( T ( b x )) ( x : T a ) . ◮ Principles for defining a universe can be generalised to higher type universes , where ( T a ) can be an element of any type, e.g. Set → Set . Anton Setzer Mini Course on Martin-L¨ of Type Theory 83/ 136

  66. The Logical Framework Type Theory and Interactive Theorem Proving Key Philosophical Principles of Martin-L¨ of Type Theory Setup of Martin-L¨ of Type Theory Basic Types in Martin-L¨ of Type Theory The Logical Framework Inductive Data Types (Algebras) in Type Theory Coinductive Data Types (Coalgebras) in Type Theory Anton Setzer Mini Course on Martin-L¨ of Type Theory 84/ 136

  67. The Logical Framework The Dependent Function Set ◮ The dependent function set is the unproblematic part of the LF. ◮ The dependent function set is similar to the non-dependent function set (e.g. A → B ), except that we allow that the second set to depend on an element of the first set. ◮ Notation: ( x : A ) → B , for the set of functions f which map an element a : A to an element of B [ x := a ]. ◮ In set-theoretic notation this is: { f | f function ∧ dom ( f ) = A ∧∀ a ∈ A . f ( a ) ∈ B [ x := a ] } Anton Setzer Mini Course on Martin-L¨ of Type Theory 85/ 136

  68. The Logical Framework Rules of the Dependent Funct. Set Formation Rule A : Set x : A ⇒ B : Set ( → - F ) ( x : A ) → B : Set Introduction Rule x : A ⇒ b : B ( → - I ) ( λ x : A . b ) : ( x : A ) → B Anton Setzer Mini Course on Martin-L¨ of Type Theory 86/ 136

  69. The Logical Framework Rules of the Dependent Function Set Elimination Rule f : ( x : A ) → B a : A ( → - El ) f a : B [ x := a ] Equality Rule x : A ⇒ b : B a : A ( → - Eq ) ( λ x : A . b ) a = b [ x := a ] : B [ x := a ] Anton Setzer Mini Course on Martin-L¨ of Type Theory 87/ 136

  70. The Logical Framework The η -Rule The η -rule has a special status: η -Rule f : ( x : A ) → B ( → - η ) f = ( λ x : A . f x ) : ( x : A ) → B ◮ The η -rule expresses that every element of ( x : A ) → B is of the form λ x : A . something . ◮ The η -rule cannot be derived, if the element in question is a variable. Anton Setzer Mini Course on Martin-L¨ of Type Theory 88/ 136

  71. The Logical Framework The Dependent Function Set in Agda ◮ The dependent function set is built into Agda with notation ( x : A ) → B ◮ Elements of ( x : A ) → B are introduced by using ◮ either λ -abstraction, i.e. we can define f : ( x : A ) → B f = λ x → b ◮ Requires that b : B depending on x : A . ◮ Note that the type B of b depends on x : A . ◮ or by writing ( x : A ) → B f : f x = b Anton Setzer Mini Course on Martin-L¨ of Type Theory 89/ 136

  72. The Logical Framework The Dependent Function Set in Agda ◮ Elimination is application using the same notation as before. ◮ E.g., if f : ( x : A ) → B and a : A , then f a : B [ x := a ]. Anton Setzer Mini Course on Martin-L¨ of Type Theory 90/ 136

  73. The Logical Framework Implication ◮ A proof of A → B is a function which takes a proof of A and returns a proof of B . ◮ So implication is nothing but the function type. Anton Setzer Mini Course on Martin-L¨ of Type Theory 91/ 136

  74. The Logical Framework Example lemma : A → A lemma a = a lemma 2 : ( A → B ) → ( B → C ) → A → C lemma 2 f g a = g ( f a ) Anton Setzer Mini Course on Martin-L¨ of Type Theory 92/ 136

  75. The Logical Framework Universal Quantification ◮ ∀ x : A . B is true iff, for all x : A there exists a proof of B (with that x ). ◮ Therefore a proof of ∀ x : A . B is a function, which takes an x:A and computes an element of B . ◮ Therefore the set of proofs of ∀ x : A . B is the set of functions, mapping an element x : A to an element of B . ◮ This set is just the dependent function set ( x : A ) → B . ◮ Therefore we can identify ∀ x : A . B with ( x : A ) → B . Anton Setzer Mini Course on Martin-L¨ of Type Theory 93/ 136

  76. The Logical Framework ∀ in Agda ◮ ∀ x : A . B is represented by ( x : A ) → B in Agda. ◮ Remember that ∀ x : A . B is another notation for ∀ x : A . B . Anton Setzer Mini Course on Martin-L¨ of Type Theory 94/ 136

  77. The Logical Framework Example: Equality on N ◮ We define equality on N . ◮ First we introduce the true and false formulas: - - ⊥ is defined as ∅ data ⊥ : Set where - - ⊤ has one proof, namely the trivial proof triv data ⊤ : Set where triv : ⊤ == : N → N → Set == = ⊤ zero zero zero == S m = ⊥ == = ⊥ S n zero S n == S m = n == m Anton Setzer Mini Course on Martin-L¨ of Type Theory 95/ 136

  78. The Logical Framework Example Proof of Reflexivity of == refl : ( n : N ) → n == n = refl zero triv refl ( S n ) = refl n Anton Setzer Mini Course on Martin-L¨ of Type Theory 96/ 136

  79. The Logical Framework The Full Logical Framework ◮ Above we were already using types such as C : B → Set ◮ This doesn’t type check yet, since we would need B → Set : Set and our rules allow this only if we had Set : Set Anton Setzer Mini Course on Martin-L¨ of Type Theory 97/ 136

Recommend


More recommend