src/HOL/RelPow.thy
author paulson
Tue, 18 Aug 1998 10:24:54 +0200
changeset 5330 8c9fadda81f4
parent 5183 89f162de39cf
child 5608 a82a038a3e7a
permissions -rw-r--r--
added comment

(*  Title:      HOL/RelPow.thy
    ID:         $Id$
    Author:     Tobias Nipkow
    Copyright   1996  TU Muenchen

R^n = R O ... O R, the n-fold composition of R
*)

RelPow = Nat +

primrec
  "R^0 = id"
  "R^(Suc n) = R O (R^n)"

end