Some inductive definitions of setsTutorial (draft)Writing correct recursive definitions of functionsInductive definition of a setDocumentation and user's manualTable of contentsOCaml programs

Inductive definition of a set

   
 

An inductive definition of a set S is as follows, where B is a set of 0-ary rules and I is a set of rules of positive arity:
  •   Basis: if b is a rule in B then b() is an element of S.
  •   Induction: if (x1,...,xn) is a tuple of elements of S and i is an n-ary rule in I that can be applied to (x1,...,xn) then i(x1,...,xn) is an element of S.
  •   Closure: any element in S results from applying finitely many times rules in B or in I.

As the closure part of the definition is always the same, its is usually omitted, as in the sequel.


Latest update : October 5, 2006
This document was translated from LaTeX by Hyperlatex 2.5, which is not the latest version of Hyperlatex.

Some inductive definitions of setsTutorial (draft)Writing correct recursive definitions of functionsInductive definition of a setDocumentation and user's manualTable of contentsOCaml programs