src/LCF/ex/Ex4.ML
author aspinall
Fri, 30 Sep 2005 18:18:34 +0200
changeset 17740 fc385ce6187d
parent 17248 81bf91654e73
child 17878 5b9efe4d6b47
permissions -rw-r--r--
Add icon for interface.


val asms = goal (the_context ()) "[| f(p) << p; !!q. f(q) << q ==> p << q |] ==> FIX(f)=p";
by (rewtac eq_def);
by (rtac conjI 1);
by (induct_tac "f" 1);
by (rtac minimal 1);
by (strip_tac 1);
by (rtac less_trans 1);
by (resolve_tac asms 2);
by (etac less_ap_term 1);
by (resolve_tac asms 1);
by (rtac (FIX_eq RS eq_imp_less1) 1);
qed "example";