In
intuitionistic type theory
Intuitionistic type theory (also known as constructive type theory, or Martin-Löf type theory) is a type theory and an alternative foundation of mathematics.
Intuitionistic type theory was created by Per Martin-Löf, a Swedish mathematician and p ...
(ITT), a discipline within
mathematical logic
Mathematical logic is the study of formal logic within mathematics. Major subareas include model theory, proof theory, set theory, and recursion theory. Research in mathematical logic commonly addresses the mathematical properties of formal ...
, induction-recursion is a feature for simultaneously declaring a type and function on that type. It allows the creation of larger types, such as universes, than
inductive types. The types created still remain
predicative inside ITT.
An
inductive definition
In mathematics and computer science, a recursive definition, or inductive definition, is used to define the elements in a set in terms of other elements in the set ( Aczel 1977:740ff). Some examples of recursively-definable objects include fact ...
is given by rules for generating elements of a type. One can then define functions from that type by induction on the way the elements of the type are generated. Induction-recursion generalizes this situation since one can ''simultaneously'' define the type and the function, because the rules for generating elements of the type are allowed to refer to the function.
Induction-recursion can be used to define large types including various universe constructions. It increases the proof-theoretic strength of type theory substantially. Nevertheless, inductive-recursive recursive definitions are still considered
predicative.
Background
Induction-Recursion came out of investigations to the rules of Martin-Löf's
intuitionistic type theory
Intuitionistic type theory (also known as constructive type theory, or Martin-Löf type theory) is a type theory and an alternative foundation of mathematics.
Intuitionistic type theory was created by Per Martin-Löf, a Swedish mathematician and p ...
. The type theory has a number of "type formers" and four kinds of rules for each one. Martin-Löf had hinted that the rules for each type former followed a pattern, which preserved the properties of the type theory (e.g.,
strong normalization
In abstract rewriting, an object is in normal form if it cannot be rewritten any further, i.e. it is irreducible. Depending on the rewriting system, an object may rewrite to several normal forms or none at all. Many properties of rewriting systems ...
,
predicativity). Researchers started looking for the most general description of the pattern, since that would tell what kinds of type formers could be added (or not added!) to extend the type theory.
The "universe" type former was the most interesting, because when the rules were written "à la Tarski", they simultaneously defined the "universe type" ''and ''a function that operated on it. This eventually lead Dybjer to Induction-Recursion.
Dybjer's initial papers called Induction-Recursion a "schema" for rules. It stated what type formers could be added to the type theory. Later, he and Setzer would write a new type former with rules that allowed new Induction-Recursion definitions to be made inside the type theory.
This was added to the Half proof assistant (a variant of
Alf).
The idea
Before covering Inductive-Recursive types, the simpler case is Inductive Types. Constructors for Inductive types can be self-referential, but in a limited way. The constructor's parameters must be "positive":
* not refer to the type being defined
* be exactly the type being defined, or
* be a function that returns the type being defined.
With Inductive types, a parameter's type can depend on earlier parameters, but they cannot refer to ones of the type being defined. Inductive-Recursive types go further and parameter's types ''can'' refer to earlier parameters that use the type being defined. These must be "half-positive":
* be a function depending on an earlier parameter if that parameter is wrapped in the function being defined.
So, if
is the type being defined and
is the function being (simultaneously) defined, these parameter declarations are positive:
*
*
*
*
*
*
(Depends on earlier parameters, none of which are type
.)
This is half-positive:
*
(Depends on parameter
of type
but only through call to
.)
These are not positive nor half-positive:
*
(
is a parameter to the function.)
*
(The parameter takes a function that returns
, but returns
itself.)
*
(Depends on
of type
, but not through the function
.)
Universe example
A simple common example is the Universe à la Tarski type former. It creates a type
and a function
. There is an element of
for every type in the type theory (except
itself!). The function
maps the elements of
to the associated type.
The type
has a constructor (or introduction rule) for each type former in the type theory. The one for dependent functions would be:
That is, it takes an element
of type
that will map to the type of the parameter, and a function
such that for all values
,
maps to the return type of the function (which is dependent on the value of the parameter,
). (The final
says that the result of the constructor is an element of type
.)
The reduction (or computation rule) says that
becomes
.
After reduction, the function
is operating on a smaller part of the input. If that holds when
is applied to any constructor, then
will always terminate. Without going into the details, Induction-Recursion states what kinds of definitions (or rules) can be added to the theory such that the function calls will always terminate.
Usage
Induction-Recursion is implemented in
Agda and
Idris Idris may refer to:
People
* Idris (name), a list of people and fictional characters with the given name or surname
* Idris (prophet), Islamic prophet in the Qur'an, traditionally identified with Enoch, an ancestor of Noah in the Bible
* Idris Ga ...
.
See also
*
Induction-induction
In intuitionistic type theory (ITT), some discipline within mathematical logic, induction-induction is for simultaneously declaring some inductive type and some inductive predicate over this type.
An inductive definition
In mathematics and co ...
- further work that defines a type and family-of-types at the same time
References
{{reflist
External links
A list of Peter Dybjer's publications on induction and induction-recursionSlides covering Induction-Recursion and its derivatives
Type theory