src/HOL/Algebra/abstract/RingHomo.thy
author wenzelm
Sat, 17 Sep 2005 20:49:14 +0200
changeset 17479 68a7acb5f22e
parent 13735 7de9342aca7a
child 20318 0e0ea63fe768
permissions -rw-r--r--
converted to Isar theory format;

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

theory RingHomo imports Ring begin

constdefs
  homo  :: "('a::ring => 'b::ring) => bool"
  "homo f == (ALL a b. f (a + b) = f a + f b &
                                   f (a * b) = f a * f b) &
                                   f 1 = 1"

end