thys/MyInduction.thy
author Fahad Ausaf <fahad.ausaf@kcl.ac.uk>
Sun, 09 Nov 2014 19:25:10 +0000
changeset 44 a751aa1ee4f7
parent 29 2345ba5b4264
permissions -rw-r--r--
Code Samples

theory MyInduction
imports Main
begin

fun itrev :: "'a list \<Rightarrow> 'a list \<Rightarrow> 'a list" where
"itrev [] ys = ys" |
"itrev (x#xs) ys = itrev xs (x#ys)"

lemma "itrev xs [] = rev xs"
apply(induction xs)
apply(auto)
oops

lemma "itrev xs ys = rev xs @ ys"
apply(induction xs arbitrary: ys)
apply auto
done