src/HOL/Algebra/abstract/RingHomo.thy
author kleing
Tue, 13 May 2003 08:59:21 +0200
changeset 14024 213dcc39358f
parent 13735 7de9342aca7a
child 17479 68a7acb5f22e
permissions -rw-r--r--
HOL-Real -> HOL-Complex

(*
    Ring homomorphism
    $Id$
    Author: Clemens Ballarin, started 15 April 1997
*)

RingHomo = Ring +

consts
  homo	:: ('a::ring => 'b::ring) => bool

defs
  homo_def	"homo f == (ALL a b. f (a + b) = f a + f b &
			      f (a * b) = f a * f b) &
			   f 1 = 1"

end