src/HOL/AxClasses/Lattice/LatMorph.ML
author paulson
Tue, 16 Jul 1996 15:49:46 +0200
changeset 1868 836950047d85
parent 1440 de6f18da81bb
child 1899 0075a8d26a80
permissions -rw-r--r--
Put in minimal simpset to avoid excessive simplification, just as in revision 1.9 of HOL/indrule.ML


open LatMorph;


(** monotone functions vs. "&&"- / "||"-semi-morphisms **)

goalw thy [is_mono_def] "is_mono f = (ALL x y. f (x && y) [= f x && f y)";
  by (safe_tac set_cs);
  (*==> (level 1)*)
    by (stac le_inf_eq 1);
    br conjI 1;
    by (step_tac set_cs 1);
    by (step_tac set_cs 1);
    be mp 1;
    br inf_lb1 1;
    by (step_tac set_cs 1);
    by (step_tac set_cs 1);
    be mp 1;
    br inf_lb2 1;
  (*==> (level 11)*)
    br (conjI RS (le_trans RS mp)) 1;
    br inf_lb2 2;
    by (subgoal_tac "x && y = x" 1);
    be subst 1;
    by (fast_tac set_cs 1);
    by (stac inf_connect 1);
    ba 1;
qed "mono_inf_eq";

goalw thy [is_mono_def] "is_mono f = (ALL x y. f x || f y [= f (x || y))";
  by (safe_tac set_cs);
  (*==> (level 1)*)
    by (stac ge_sup_eq 1);
    br conjI 1;
    by (step_tac set_cs 1);
    by (step_tac set_cs 1);
    be mp 1;
    br sup_ub1 1;
    by (step_tac set_cs 1);
    by (step_tac set_cs 1);
    be mp 1;
    br sup_ub2 1;
  (*==> (level 11)*)
    br (conjI RS (le_trans RS mp)) 1;
    br sup_ub1 1;
    by (subgoal_tac "x || y = y" 1);
    be subst 1;
    by (fast_tac set_cs 1);
    by (stac sup_connect 1);
    ba 1;
qed "mono_sup_eq";