ex/NatSum.thy
author nipkow
Sun, 19 Feb 1995 15:04:39 +0100
changeset 215 5f9d7ed4ea0c
parent 68 acad709cad5d
permissions -rw-r--r--
Reorganized/optimized datatype definitions.

(*  Title: 	HOL/ex/natsum.thy
    ID:         $Id$
    Author: 	Tobias Nipkow
    Copyright   1994 TU Muenchen

A summation operator. sum(f,n+1) is the sum of all f(i), i=0...n.
*)

NatSum = Arith +
consts sum     :: "[nat=>nat, nat] => nat"
rules  sum_0      "sum(f,0) = 0"
       sum_Suc    "sum(f,Suc(n)) = f(n) + sum(f,n)"
end