src/HOL/Algebra/poly/PolyHomo.thy
author mengj
Thu, 25 May 2006 08:09:10 +0200
changeset 19720 f68f6f958a1d
parent 17479 68a7acb5f22e
child 21423 6cdd0589aa73
permissions -rw-r--r--
HOL problems now have DFG output format.

(*
    Universal property and evaluation homomorphism of univariate polynomials
    $Id$
    Author: Clemens Ballarin, started 15 April 1997
*)

theory PolyHomo imports UnivPoly2 begin

consts
  EVAL2	:: "['a::ring => 'b, 'b, 'a up] => 'b::ring"
  EVAL	:: "['a::ring, 'a up] => 'a"

defs
  EVAL2_def:	"EVAL2 phi a p ==
                 setsum (%i. phi (coeff p i) * a ^ i) {..deg p}"
  EVAL_def:	"EVAL == EVAL2 (%x. x)"

end