doc-src/TutorialI/Misc/arith2.thy
author paulson
Tue, 05 Sep 2000 13:12:00 +0200
changeset 9843 cc8aa63bdad6
parent 9458 c613cd06d5cf
child 10171 59d6633835fa
permissions -rw-r--r--
tidied, proving gcd_greatest_iff and using induct_tac

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