src/HOL/RelPow.thy
author wenzelm
Tue, 27 May 1997 15:45:07 +0200
changeset 3362 0b268cff9344
parent 2740 2c549ae2563b
child 3370 5c5fdce3a4e4
permissions -rw-r--r--
NJ 1.09.2x as factory default!

(*  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 +

consts
  "^" :: "('a * 'a) set => nat => ('a * 'a) set" (infixr 100)

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

end