src/HOL/Algebra/abstract/RingHomo.thy
author paulson
Fri, 05 Nov 1999 11:14:26 +0100
changeset 7998 3d0c34795831
child 13735 7de9342aca7a
permissions -rw-r--r--
Algebra and Polynomial theories, by Clemens Ballarin

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

RingHomo = NatSum +

consts
  homo	:: ('a::ringS => 'b::ringS) => 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