Initial algebra

From Infogalactic: the planetary knowledge core
Jump to: navigation, search

Lua error in package.lua at line 80: module 'strict' not found. In mathematics, an initial algebra is an initial object in the category of F-algebras for a given endofunctor F. The initiality provides a general framework for induction and recursion.

For instance, consider the endofunctor 1+(-) on the category of sets, where 1 is the one-point (singleton) set, the terminal object in the category. An algebra for this endofunctor is a set X (called the carrier of the algebra) together with a point x\in X and a function X\to X. The set of natural numbers is the carrier of the initial such algebra: the point is zero and the function is the successor map.

For a second example, consider the endofunctor 1+\mathbf{N}\times(-) on the category of sets, where \mathbf{N} is the set of natural numbers. An algebra for this endofunctor is a set X together with a point x\in X and a function \mathbf{N}\times X\to X. The set of finite lists of natural numbers is the initial such algebra. The point is the empty list, and the function is cons, taking a number and a finite list, and returning a new finite list with the number at the head.

Final coalgebra

Dually, a final coalgebra is a terminal object in the category of F-coalgebras. The finality provides a general framework for coinduction and corecursion.

For example, using the same functor 1+(-) as before, a coalgebra is a set X together with a truth-valued test function p\colon X \to 2 and a partial function f\colon X \to X whose domain is formed by those x \in X for which p(x) = 0. The set \mathbf{N} \cup \{\omega\} consisting of the natural numbers extended with a new element \omega is the carrier of the final coalgebra in the category, where p is the test for zero: p(0)=1 and p(n+1) = p(\omega) = 0, and f is the predecessor function (the inverse of the successor function) on the positive naturals, but acts like the identity on the new element \omega: f(n+1) = n, f(\omega) = \omega.

For a second example, consider the same functor 1 + \mathbf{N}\times(\mathord{-}) as before. In this case the carrier of the final coalgebra consists of all lists of natural numbers, finite as well as infinite. The operations are a test function testing whether a list is empty, and a deconstruction function defined on nonempty lists returning a pair consisting of the head and the tail of the input list.

Theorems

  • Initial algebras are minimal (i.e., have no proper subalgebra[1])
  • Final coalgebras are simple (i.e., have no proper quotients[2]).[1]

Example

Consider the endofunctor F: \mathbf{Set} \to \mathbf{Set} sending X to 1+X. Then the set \mathbf{N} of natural numbers together with the functions [\mathrm{zero},\mathrm{succ}]\colon 1+\mathbf{N} \to \mathbf{N}, where \mathrm{zero} \colon 1 \to\mathbf{N} and \mathrm{succ}\colon \mathbf{N}\to\mathbf{N} are the obvious functions suggested by their names, is an initial F-algebra. The initiality (the universal property for this case) is not hard to establish; the unique homomorphism to an arbitrary F-algebra (A, [e,f]), for e\colon 1 \to A an element of A and f\colon A \to A a function on A, is the function sending the natural number n to f^n(e), that is, f(f(\dots(f(e))\dots)), the n-fold application of f to e.

Use in Computer Science

Various finite data structures used in programming, such as lists and trees, can be obtained as initial algebras of specific endofunctors. While there may be several initial algebras for a given endofunctor, they are unique up to isomorphism, which informally means that the "observable" properties of a data structure can be adequately captured by defining it as an initial algebra.

To obtain the type \mathrm{List}(A) of lists whose elements are members of set A, consider that the list-forming operations are:

  • \mathrm{nil}\colon 1 \to \mathrm{List}(A)
  • \mathrm{cons}\colon A \times \mathrm{List}(A) \to \mathrm{List}(A)

Combined into one function, they give:

  • [\mathrm{nil},\mathrm{cons}]\colon 1 + (A \times \mathrm{List}(A))\to \mathrm{List}(A),

which makes this an F-algebra for the endofunctor F sending X to 1+(A\times X). It is, in fact, the initial F-algebra. Initiality is established by the function known as foldr in functional programming languages such as Haskell and ML.

Likewise, binary trees with elements at the leaves can be obtained as the initial algebra

  • [\mathrm{tip},\mathrm{join}]\colon A + (\mathrm{Tree}(A) \times \mathrm{Tree}(A)) \to \mathrm{Tree}(A).

Types obtained this way are known as algebraic data types.

Types defined by using least fixed point construct with functor F can be regarded as an initial F-algebra, provided that parametricity holds for the type.[3]

In a dual way, similar relationship exists between notions of greatest fixed point and terminal F-coalgebra, with applications to coinductive types. These can be used for allowing potentially infinite objects while maintaining strong normalization property.[3] In the strongly normalizing Charity programming language (i.e. each program terminates), coinductive data types can be used achieving surprising results, e.g. defining lookup constructs to implement such “strong” functions like the Ackermann function.[4]

See also

Notes

  1. 1.0 1.1 Initiality and finality from CLiki
  2. Induction and Co-induction from CLiki
  3. 3.0 3.1 Philip Wadler: Recursive types for free! University of Glasgow, July 1998. Draft.
  4. Robin Cockett: Charitable Thoughts (ps and ps.gz)

External links