Study Guides for Discrete Mathematics
Section 3.3 - Recursive Definitions
Recursively Defined Functions
The principle of defining the value of a function recursively is very close to the principle of mathematical induction. The method is quite straightforward.
Example
The function FT is defined as follows:
FT(0) = 1
FT(N) = N· FT(N-1)
As one will readily see FT is the familiar factorial function
Numerous other examples are given in the text.
Recursively Defined Sets
Recursive definitions are not restricted to functions. Other objects such as sets may be defined recursively as well.
Example:
Define the set of positive, odd integers, ZO, recursively.