src/HOL/Relation_Power.thy
author oheimb
Tue, 30 Jan 2001 18:57:24 +0100
changeset 11003 ee0838d89deb
parent 10213 01c2744a3786
child 11305 2ce86fccc95b
permissions -rw-r--r--
added if_def2

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