src/HOL/Algebra/abstract/RingHomo.thy
author wenzelm
Thu, 03 Aug 2006 17:30:43 +0200
changeset 20335 b5eca86ef9cc
parent 20318 0e0ea63fe768
child 21423 6cdd0589aa73
permissions -rw-r--r--
moved bires_inst_tac etc. to rule_insts.ML;

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

theory RingHomo imports Ring2 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