src/HOL/Algebra/abstract/RingHomo.thy
author ballarin
Thu, 28 Nov 2002 10:50:42 +0100
changeset 13735 7de9342aca7a
parent 7998 3d0c34795831
child 17479 68a7acb5f22e
permissions -rw-r--r--
HOL-Algebra partially ported to Isar.

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