src/HOL/RelPow.thy
author nipkow
Fri, 02 Oct 1998 14:28:39 +0200
changeset 5608 a82a038a3e7a
parent 5183 89f162de39cf
child 5780 0187f936685a
permissions -rw-r--r--
id <-> Id

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