src/HOL/Isar_examples/Peirce.thy
author wenzelm
Mon, 12 Jul 1999 22:27:20 +0200
changeset 6981 eaade7e398a7
parent 6892 4a905b4a39c8
child 7153 820c8c8573d9
permissions -rw-r--r--
export assumption_tac; local qeds: print rule; same_tac: actually insert rules, !! bind vars;

(*  Title:      HOL/Isar_examples/Peirce.thy
    ID:         $Id$
    Author:     Markus Wenzel, TU Muenchen
*)

theory Peirce = Main:;

text {* Peirce's law: examples of classical proof. *};

theorem "((A --> B) --> A) --> A";
proof;
  assume aba: "(A --> B) --> A";
  show A;
  proof (rule classical);
    assume not_a: "~ A";

    have ab: "A --> B";
    proof;
      assume a: A;
      from not_a a; show B; ..;
    qed;

    from aba ab; show A; ..;
  qed;
qed;


theorem "((A --> B) --> A) --> A";
proof;
  assume aba: "(A --> B) --> A";
  show A;
  proof (rule classical);
    presume ab: "A --> B";
    from aba ab; show A; ..;
  next;
    assume not_a: "~ A";
    show "A --> B";
    proof;
      assume a: A;
      from not_a a; show B; ..;
    qed;
  qed;
qed;


end;