doc-src/TutorialI/Inductive/inductive.tex
author nipkow
Fri, 16 Feb 2001 06:46:20 +0100
changeset 11147 d848c6693185
parent 10884 2995639c6a09
child 11216 279004936bb0
permissions -rw-r--r--
*** empty log message ***
paulson@10865
     1
\chapter{Inductively Defined Sets} \label{chap:inductive}
nipkow@10242
     2
\index{inductive definition|(}
nipkow@10242
     3
\index{*inductive|(}
nipkow@10242
     4
nipkow@10242
     5
This chapter is dedicated to the most important definition principle after
nipkow@10242
     6
recursive functions and datatypes: inductively defined sets.
nipkow@10242
     7
nipkow@11147
     8
We start with a simple example: the set of even numbers.  A slightly more
nipkow@11147
     9
complicated example, the reflexive transitive closure, is the subject of
nipkow@11147
    10
{\S}\ref{sec:rtc}. In particular, some standard induction heuristics are
nipkow@11147
    11
discussed. Advanced forms of inductive definitions are discussed in
nipkow@11147
    12
{\S}\ref{sec:adv-ind-def}. To demonstrate the versatility of inductive
nipkow@11147
    13
definitions, the chapter closes with a case study from the realm of
nipkow@11147
    14
context-free grammars. The first two sections are required reading for anybody
nipkow@11147
    15
interested in mathematical modelling.
nipkow@10219
    16
paulson@10884
    17
\input{Inductive/even-example}
nipkow@10762
    18
\input{Inductive/document/Mutual}
nipkow@10225
    19
\input{Inductive/document/Star}
nipkow@10242
    20
paulson@10371
    21
\section{Advanced inductive definitions}
nipkow@11147
    22
\label{sec:adv-ind-def}
paulson@10884
    23
\input{Inductive/advanced-examples}
paulson@10371
    24
nipkow@10520
    25
\input{Inductive/document/AB}
nipkow@10520
    26
nipkow@10242
    27
\index{inductive definition|)}
nipkow@10242
    28
\index{*inductive|)}