src/HOL/Relation_Power.thy
author paulson
Tue, 01 May 2001 17:16:32 +0200
changeset 11276 f8353c722d4e
parent 10213 01c2744a3786
child 11305 2ce86fccc95b
permissions -rw-r--r--
to ignore the *.class files that are copied here

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

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

Relation_Power = Nat +

instance
  set :: (term) {power}   (* only ('a * 'a) set should be in power! *)

primrec (relpow)
  "R^0 = Id"
  "R^(Suc n) = R O (R^n)"

end