src/HOL/Algebra/poly/LongDiv.thy
author obua
Sun, 09 May 2004 23:04:36 +0200
changeset 14722 8e739a6eaf11
parent 13735 7de9342aca7a
child 14723 b77ce15b625a
permissions -rw-r--r--
replaced apply-style proof for instance Multiset :: plus_ac0 by recommended Isar proof style

(*
    Experimental theory: long division of polynomials
    $Id$
    Author: Clemens Ballarin, started 23 June 1999
*)

LongDiv = PolyHomo +

consts
  lcoeff :: "'a::ring up => 'a"
  eucl_size :: 'a::ring => nat

defs
  lcoeff_def	"lcoeff p == coeff p (deg p)"
  eucl_size_def "eucl_size p == if p = 0 then 0 else deg p+1"

end