doc-src/TutorialI/Misc/arith2.thy
author paulson
Wed, 02 Aug 2000 16:07:32 +0200
changeset 9496 07e33cac5d9c
parent 9458 c613cd06d5cf
child 10171 59d6633835fa
permissions -rw-r--r--
coercion "intify" to remove type constraints from integer algebraic laws

(*<*)
theory arith2 = Main:;
(*>*)
lemma "min i (max j (k*k)) = max (min (k*k) i) (min i (j::nat))";
by(arith);
(**)(*<*)
end
(*>*)