Menu
Home Explore People Places Arts History Plants & Animals Science Life & Culture Technology
On this page
Dependent type
Data type whose definition depends on a value

In computer science and logic, a dependent type is a type whose definition depends on a value. It is an overlapping feature of type theory and type systems. In intuitionistic type theory, dependent types are used to encode logic's quantifiers like "for all" and "there exists". In functional programming languages like Agda, ATS, Rocq (previously known as Coq), F*, Epigram, Idris, and Lean, dependent types help reduce bugs by enabling the programmer to assign types that further restrain the set of possible implementations.

Two common examples of dependent types are dependent functions and dependent pairs. The return type of a dependent function may depend on the value (not just type) of one of its arguments. For instance, a function that takes a positive integer n {\displaystyle n} may return an array of length n {\displaystyle n} , where the array length is part of the type of the array. (Note that this is different from polymorphism and generic programming, both of which include the type as an argument.) A dependent pair may have a second value, the type of which depends on the first value. Sticking with the array example, a dependent pair may be used to pair an array with its length in a type-safe way.

Dependent types add complexity to a type system. Deciding the equality of dependent types in a program may require computations. If arbitrary values are allowed in dependent types, then deciding type equality may involve deciding whether two arbitrary programs produce the same result; hence the decidability of type checking may depend on the given type theory's semantics of equality, that is, whether the type theory is intensional or extensional.

We don't have any images related to Dependent type yet.
We don't have any YouTube videos related to Dependent type yet.
We don't have any PDF documents related to Dependent type yet.
We don't have any Books related to Dependent type yet.
We don't have any archived web articles related to Dependent type yet.

History

In 1934, Haskell Curry noticed that the types used in typed lambda calculus, and in its combinatory logic counterpart, followed the same pattern as axioms in propositional logic. Going further, for every proof in the logic, there was a matching function (term) in the programming language. One of Curry's examples was the correspondence between simply typed lambda calculus and intuitionistic logic.2

Predicate logic is an extension of propositional logic, adding quantifiers. Howard and de Bruijn extended lambda calculus to match this more powerful logic by creating types for dependent functions, which correspond to "for all", and dependent pairs, which correspond to "there exists".3

Because of this, and other work by Howard, propositions-as-types is known as the Curry–Howard correspondence.

Formal definition

Loosely speaking, dependent types are similar to the type of an indexed family of sets. More formally, given a type A : U {\displaystyle A:{\mathcal {U}}} in a universe of types U {\displaystyle {\mathcal {U}}} , one may have a family of types B : A → U {\displaystyle B:A\to {\mathcal {U}}} , which assigns to each term a : A {\displaystyle a:A} a type B ( a ) : U {\displaystyle B(a):{\mathcal {U}}} . We say that the type B ( a ) {\displaystyle B(a)} varies with a {\displaystyle a} .

Π type

A function whose type of return value varies with its argument (i.e. there is no fixed codomain) is a dependent function and the type of this function is called dependent product type, pi-type (Π type) or dependent function type.4 From a family of types B : A → U {\displaystyle B:A\to {\mathcal {U}}} we may construct the type of dependent functions ∏ x : A B ( x ) {\textstyle \prod _{x:A}B(x)} , whose terms are functions that take a term a : A {\displaystyle a:A} and return a term in B ( a ) {\displaystyle B(a)} . For this example, the dependent function type is typically written as ∏ x : A B ( x ) {\textstyle \prod _{x:A}B(x)} or ∏ ( x : A ) B ( x ) {\textstyle \prod {(x:A)}B(x)} .

If B : A → U {\displaystyle B:A\to {\mathcal {U}}} is a constant function, the corresponding dependent product type is equivalent to an ordinary function type. That is, ∏ x : A B {\textstyle \prod _{x:A}B} is judgmentally equal to A → B {\displaystyle A\to B} when B {\displaystyle B} does not depend on x {\displaystyle x} .

The name 'Π-type' comes from the idea that these may be viewed as a Cartesian product of types. Π-types can also be understood as models of universal quantifiers.

For example, if we write Vec ⁡ ( R , n ) {\displaystyle \operatorname {Vec} (\mathbb {R} ,n)} for n-tuples of real numbers, then ∏ n : N Vec ⁡ ( R , n ) {\textstyle \prod _{n:\mathbb {N} }\operatorname {Vec} (\mathbb {R} ,n)} would be the type of a function which, given a natural number n, returns a tuple of real numbers of size n. The usual function space arises as a special case when the range type does not actually depend on the input. E.g. ∏ n : N R {\textstyle \prod _{n:\mathbb {N} }{\mathbb {R} }} is the type of functions from natural numbers to the real numbers, which is written as N → R {\displaystyle \mathbb {N} \to \mathbb {R} } in typed lambda calculus.

For a more concrete example, taking A {\displaystyle A} to be the type of unsigned integers from 0 to 255 (the ones that fit into 8 bits or 1 byte) and B ( a ) = X a {\displaystyle B(a)=X_{a}} for a : A {\displaystyle a:A} , then ∏ x : A B ( x ) {\textstyle \prod _{x:A}B(x)} devolves into the product of X 0 × X 1 × X 2 × … × X 253 × X 254 × X 255 {\displaystyle X_{0}\times X_{1}\times X_{2}\times \ldots \times X_{253}\times X_{254}\times X_{255}} .

Σ type

The dual of the dependent product type is the dependent pair type, dependent sum type, sigma-type, or (confusingly) dependent product type.5 Sigma-types can also be understood as existential quantifiers. Continuing the above example, if, in the universe of types U {\displaystyle {\mathcal {U}}} , there is a type A : U {\displaystyle A:{\mathcal {U}}} and a family of types B : A → U {\displaystyle B:A\to {\mathcal {U}}} , then there is a dependent pair type ∑ x : A B ( x ) {\textstyle \sum _{x:A}B(x)} . (The alternative notations are similar to that of Π types.)

The dependent pair type captures the idea of an ordered pair where the type of the second term is dependent on the value of the first. If ( a , b ) : ∑ x : A B ( x ) , {\textstyle (a,b):\sum _{x:A}B(x),} then a : A {\displaystyle a:A} and b : B ( a ) {\displaystyle b:B(a)} . If B {\displaystyle B} is a constant function, then the dependent pair type becomes (is judgementally equal to) the product type, that is, an ordinary Cartesian product A × B {\displaystyle A\times B} .6

For a more concrete example, taking A {\displaystyle A} to again be type of unsigned integers from 0 to 255, and B ( a ) {\displaystyle B(a)} to again be equal to X a {\displaystyle X_{a}} for 256 more arbitrary X a {\displaystyle X_{a}} , then ∑ x : A B ( x ) {\textstyle \sum _{x:A}B(x)} devolves into the sum X 0 + X 1 + X 2 + … + X 253 + X 254 + X 255 {\displaystyle X_{0}+X_{1}+X_{2}+\ldots +X_{253}+X_{254}+X_{255}} .

Example as existential quantification

Let A : U {\displaystyle A:{\mathcal {U}}} be some type, and let B : A → U {\displaystyle B:A\to {\mathcal {U}}} . By the Curry–Howard correspondence, B {\displaystyle B} can be interpreted as a logical predicate on terms of A {\displaystyle A} . For a given a : A {\displaystyle a:A} , whether the type B ( a ) {\displaystyle B(a)} is inhabited indicates whether a {\displaystyle a} satisfies this predicate. The correspondence can be extended to existential quantification and dependent pairs: the proposition ∃ a ∈ A B ( a ) {\displaystyle \exists {a}{\in }A\,B(a)} is true if and only if the type ∑ a : A B ( a ) {\textstyle \sum _{a:A}B(a)} is inhabited.

For example, m : N {\displaystyle m:\mathbb {N} } is less than or equal to n : N {\displaystyle n:\mathbb {N} } if and only if there exists another natural number k : N {\displaystyle k:\mathbb {N} } such that m + k = n {\displaystyle m+k=n} . In logic, this statement is codified by existential quantification:

m ≤ n ⟺ ∃ k ∈ N m + k = n . {\displaystyle m\leq n\iff \exists {k}{\in }\mathbb {N} \,m+k=n.}

This proposition corresponds to the dependent pair type:

∑ k : N m + k = n . {\displaystyle \sum _{k:\mathbb {N} }m+k=n.}

That is, a proof of the statement that m {\displaystyle m} is less than or equal to n {\displaystyle n} is a pair that contains both a non-negative number k {\displaystyle k} , which is the difference between m {\displaystyle m} and n {\displaystyle n} , and a proof of the equality m + k = n {\displaystyle m+k=n} .

Systems of the lambda cube

Henk Barendregt developed the lambda cube as a means of classifying type systems along three axes. The eight corners of the resulting cube-shaped diagram each correspond to a type system, with simply typed lambda calculus in the least expressive corner, and calculus of constructions in the most expressive. The three axes of the cube correspond to three different augmentations of the simply typed lambda calculus: the addition of dependent types, the addition of polymorphism, and the addition of higher kinded type constructors (functions from types to types, for example). The lambda cube is generalized further by pure type systems.

First order dependent type theory

The system λ Π {\displaystyle \lambda \Pi } of pure first order dependent types, corresponding to the logical framework LF, is obtained by generalising the function space type of the simply typed lambda calculus to the dependent product type.

Second order dependent type theory

The system λ Π 2 {\displaystyle \lambda \Pi 2} of second order dependent types is obtained from λ Π {\displaystyle \lambda \Pi } by allowing quantification over type constructors. In this theory the dependent product operator subsumes both the → {\displaystyle \to } operator of simply typed lambda calculus and the ∀ {\displaystyle \forall } binder of System F.

Higher order dependently typed polymorphic lambda calculus

The higher order system λ Π ω {\displaystyle \lambda \Pi \omega } extends λ Π 2 {\displaystyle \lambda \Pi 2} to all four forms of abstraction from the lambda cube: functions from terms to terms, types to types, terms to types and types to terms. The system corresponds to the calculus of constructions whose derivative, the calculus of inductive constructions is the underlying system of Rocq.

Simultaneous programming language and logic

The Curry–Howard correspondence implies that types can be constructed that express arbitrarily complex mathematical properties. If the user can supply a constructive proof that a type is inhabited (i.e., that a value of that type exists) then a compiler can check the proof and convert it into executable computer code that computes the value by carrying out the construction. The proof checking feature makes dependently typed languages closely related to proof assistants. The code-generation aspect provides a powerful approach to formal program verification and proof-carrying code, since the code is derived directly from a mechanically verified mathematical proof.

Comparison of languages with dependent types

See also: Proof assistant § Comparison

LanguageActively developedParadigm7TacticsProof termsTermination checkingTypes can depend on8UniversesProof irrelevanceProgram extractionExtraction erases irrelevant terms
AgdaYes9Purely functionalFew/limited10YesYes (optional)Any termYes (optional)11Proof-irrelevant arguments12 Proof-irrelevant propositions13Haskell, JavaScriptYes14
ATSYes15Functional / imperativeNo16YesYesStatic terms17?YesYesYes
CayenneNoPurely functionalNoYesNoAny termNoNo??
Gallina(Rocq (previously known as Coq))Yes18Purely functionalYesYesYesAny termYes19Yes20Haskell, Scheme, OCamlYes
Dependent MLNo21??Yes?Natural numbers????
F*Yes22Functional and imperativeYes23YesYes (optional)Any pure termYesYesOCaml, F#, and CYes
GuruNo24Purely functional25hypjoin26Yes27YesAny termNoYesCarrawayYes
IdrisYes28Purely functional29Yes30YesYes (optional)Any termYesNoYesYes31
LeanYesPurely functionalYesYesYesAny termYesYesYesYes
MatitaYes32Purely functionalYesYesYesAny termYesYesOCamlYes
NuPRLYesPurely functionalYesYesYesAny termYes?Yes?
PVSYes?Yes???????
Sage Archived 2020-11-09 at the Wayback MachineNo33Purely functionalNoNoNo?No???
SPARKYes34ImperativeYes35Yes36Yes37Any term38??Ada and C39Yes40
TwelfYesLogic programming?YesYes (optional)Any (LF) termNoNo??

See also

Further reading

References

  1. Hofmann, Martin (1995), Extensional concepts in intensional type theory (PDF) https://ncatlab.org/nlab/files/HofmannExtensionalIntensionalTypeTheory.pdf

  2. Sørensen, Morten Heine B.; Urzyczyn, Pawel (1998), Lectures on the Curry-Howard Isomorphism, CiteSeerX 10.1.1.17.7385 /wiki/CiteSeerX_(identifier)

  3. Bove, Ana; Dybjer, Peter (2008). Dependent Types at Work (PDF) (Report). Chalmers University of Technology. http://www.cse.chalmers.se/~peterd/papers/DependentTypesAtWork.pdf

  4. Altenkirch, Thorsten; Danielsson, Nils Anders; Löh, Andres; Oury, Nicolas (2010). "ΠΣ: Dependent Types without the Sugar" (PDF). In Blume, Matthias; Kobayashi, Naoki; Vidal, Germán (eds.). Functional and Logic Programming, 10th International Symposium, FLOPS 2010, Sendai, Japan, April 19-21, 2010. Proceedings. Lecture Notes in Computer Science. Vol. 6009. Springer. pp. 40–55. doi:10.1007/978-3-642-12251-4_5. https://www.cs.nott.ac.uk/~psztxa/publ/pisigma-new.pdf

  5. Altenkirch, Thorsten; Danielsson, Nils Anders; Löh, Andres; Oury, Nicolas (2010). "ΠΣ: Dependent Types without the Sugar" (PDF). In Blume, Matthias; Kobayashi, Naoki; Vidal, Germán (eds.). Functional and Logic Programming, 10th International Symposium, FLOPS 2010, Sendai, Japan, April 19-21, 2010. Proceedings. Lecture Notes in Computer Science. Vol. 6009. Springer. pp. 40–55. doi:10.1007/978-3-642-12251-4_5. https://www.cs.nott.ac.uk/~psztxa/publ/pisigma-new.pdf

  6. Altenkirch, Thorsten; Danielsson, Nils Anders; Löh, Andres; Oury, Nicolas (2010). "ΠΣ: Dependent Types without the Sugar" (PDF). In Blume, Matthias; Kobayashi, Naoki; Vidal, Germán (eds.). Functional and Logic Programming, 10th International Symposium, FLOPS 2010, Sendai, Japan, April 19-21, 2010. Proceedings. Lecture Notes in Computer Science. Vol. 6009. Springer. pp. 40–55. doi:10.1007/978-3-642-12251-4_5. https://www.cs.nott.ac.uk/~psztxa/publ/pisigma-new.pdf

  7. This refers to the core language, not to any tactic (theorem proving procedure) or code generation sublanguage. /wiki/Subroutine

  8. Subject to semantic constraints, such as universe constraints

  9. "Agda download page". http://wiki.portal.chalmers.se/agda/pmwiki.php?n=Main.Download

  10. Ring solver[6]

  11. Optional universes, optional universe polymorphism, and optional explicitly specified universes

  12. "Announce: Agda 2.2.8". Archived from the original on 2011-07-18. Retrieved 2010-09-28. https://web.archive.org/web/20110718034319/http://permalink.gmane.org/gmane.comp.lang.agda/2051

  13. "Agda 2.6.0 changelog". http://hackage.haskell.org/package/Agda-2.6.0/changelog

  14. "Announce: Agda 2.2.8". Archived from the original on 2011-07-18. Retrieved 2010-09-28. https://web.archive.org/web/20110718034319/http://permalink.gmane.org/gmane.comp.lang.agda/2051

  15. "ATS2 downloads". http://sourceforge.net/projects/ats2-lang/files/

  16. "email from ATS inventor Hongwei Xi". http://sourceforge.net/mailarchive/message.php?msg_id=27050673

  17. Xi, Hongwei (March 2017). "Applied Type System: An Approach to Practical Programming with Theorem-Proving" (PDF). arXiv:1703.08683. http://www.ats-lang.org/MYDATA/ATSfoundation.pdf

  18. "Coq changes in Subversion repository". https://gforge.inria.fr/scm/viewvc.php/trunk/CHANGES?root=coq&view=log

  19. Universes, automatically inferred universe constraints (not the same as Agda's universe polymorphism) and optional explicit printing of universe constraints

  20. "Introduction of SProp in Coq 8.10". https://coq.github.io/doc/master/refman/changes.html#version-8-10

  21. Has been superseded by ATS

  22. "F* changes on GitHub". GitHub. https://github.com/FStarLang/FStar/commits/master

  23. "F* v0.9.5.0 release notes on GitHub". GitHub. https://github.com/FStarLang/FStar/releases/tag/v0.9.5.0

  24. "Guru SVN". https://code.google.com/p/guru-lang/source/list

  25. Aaron Stump (6 April 2009). "Verified Programming in Guru" (PDF). Archived from the original (PDF) on 29 December 2009. Retrieved 28 September 2010. https://web.archive.org/web/20091229234011/http://guru-lang.googlecode.com/svn/branches/1.0/doc/book.pdf

  26. Petcher, Adam (May 2008). Deciding Joinability Modulo Ground Equations in Operational Type Theory (PDF) (MSc). Washington University. Retrieved 14 October 2010. http://www.cs.uiowa.edu/~astump/papers/petcher-thesis.pdf

  27. Aaron Stump (6 April 2009). "Verified Programming in Guru" (PDF). Archived from the original (PDF) on 29 December 2009. Retrieved 28 September 2010. https://web.archive.org/web/20091229234011/http://guru-lang.googlecode.com/svn/branches/1.0/doc/book.pdf

  28. "Idris git repository". GitHub. 17 May 2022. https://github.com/idris-lang/Idris-dev/

  29. Brady, Edwin. "Idris, a language with dependent types — extended abstract" (PDF). CiteSeerX 10.1.1.150.9442. https://eb.host.cs.st-andrews.ac.uk/drafts/ifl08.pdf

  30. Brady, Edwin. "How does Idris compare to other dependently-typed programming languages?". https://www.quora.com/How-does-Idris-compare-to-other-dependently-typed-programming-languages

  31. Brady, Edwin. "How does Idris compare to other dependently-typed programming languages?". https://www.quora.com/How-does-Idris-compare-to-other-dependently-typed-programming-languages

  32. "Matita SVN". Archived from the original on 2006-05-08. Retrieved 2010-09-29. https://web.archive.org/web/20060508150758/http://helm.cs.unibo.it/websvn/listing.php?repname=helm&path=%2F&sc=0

  33. Last Sage paper and last code snapshot are both dated 2006

  34. "SPARK installation using ALIRE". https://alire.ada.dev/transition_from_gnat_community.html

  35. "§3.2.4 Subtype Predicates". Ada Reference Manual (2012 ed.). http://www.ada-auth.org/standards/12rm/html/RM-3-2-4.html

  36. "5.11.6. SPARK Lemma Library". SPARK User's Guide (25.0 ed.). https://docs.adacore.com/spark2014-docs/html/ug/en/source/spark_libraries.html#spark-lemma-library

  37. "5.2.8. Contracts for Termination". SPARK User's Guide (25.0 ed.). https://docs.adacore.com/spark2014-docs/html/ug/en/source/subprogram_contracts.html#contracts-for-termination

  38. Static_Predicate for restricted terms, Dynamic_Predicate for Assert-like checking of any term in type cast

  39. "1.2. Calling and Using CCG". GNAT Pro Common Code Generator Users's Guide Supplement (25.0 ed.). https://docs.adacore.com/live/wave/gnat-ccg/html/gnatccg_ug/gnat_ccg/gnat_ccg.html

  40. "Compiling with a non-SPARK Aware Compiler". SPARK User's Guide (25.0 ed.). https://docs.adacore.com/spark2014-docs/html/ug/en/appendix/portability_issues.html#compiling-with-a-non-spark-aware-compiler