doc-src/TutorialI/Misc/Plus.thy
author haftmann
Sun, 22 Jul 2012 09:56:34 +0200
changeset 48427 571cb1df0768
parent 27015 f8537d69f514
permissions -rw-r--r--
library theories for debugging and parallel computing using code generation towards Isabelle/ML

(*<*)
theory Plus imports Main begin
(*>*)

text{*\noindent Define the following addition function *}

primrec add :: "nat \<Rightarrow> nat \<Rightarrow> nat" where
"add m 0 = m" |
"add m (Suc n) = add (Suc m) n"

text{*\noindent and prove*}
(*<*)
lemma [simp]: "!m. add m n = m+n"
apply(induct_tac n)
by(auto)
(*>*)
lemma "add m n = m+n"
(*<*)
by(simp)

end
(*>*)