Cookies disclaimer

I agree Our site saves small pieces of text information (cookies) on your device in order to deliver better content and for statistical purposes. You can disable the usage of cookies by changing the settings of your browser. By browsing our website without changing the browser settings you grant us permission to store that information on your device.

[2018-Oct] Break the System

Feel free and try to fool the system and/or your favourite Proof Assistant.

Resources

Download Files

Definitions File

theory Defs
  imports Main
begin  
end

Template File

theory Submission
  imports Defs
begin

lemma soundnessbug: "False" sorry

end

Check File

theory Check
imports Submission
begin

                     
lemma "False"
by (rule Submission.soundnessbug)
   

end
Download Files

Definitions File

theory Defs
  imports Main
begin  
end

Template File

theory Submission
  imports Defs
begin

lemma soundnessbug: "False" sorry

end

Check File

theory Check
imports Submission
begin

                     
lemma "False"
by (rule Submission.soundnessbug)
   

end
Download Files

Definitions File

(* nothing here *)

Template File

Theorem soundnessbug : False.
Proof.
  (* todo? *)
Admitted.
Download Files

Definitions File

-- no definitions
-- Lean version: 3.4.2
-- Mathlib version: 2019-07-31

Template File

theorem soundness_bug : false := sorry

Check File

import .submission

theorem you_broke_it : false := soundness_bug
Download Files

Definitions File

(in-package "ACL2")

Template File

(in-package "ACL2")

(include-book "Defs")

(defthmd cannot-prove (equal (car a) nil))

Check File

; The four lines just below are boilerplate, that is, the same for every
; problem.

(in-package "ACL2")
(include-book "Submission")
(set-enforce-redundancy t)
(include-book "Defs")

; The events below represent the theorem to be proved, and are copied from
; template.lisp.


(defthmd cannot-prove (equal (car a) nil))
Download Files

Definitions File

theory Defs
  imports Main
begin  
end

Template File

theory Submission
  imports Defs
begin

lemma soundnessbug: "False" sorry

end

Check File

theory Check
imports Submission
begin

                     
lemma "False"
by (rule Submission.soundnessbug)
   

end

Terms and Conditions