python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
How to solve a simple inequality in COQ with the same variable which is adding on both sides of the inequality
As you can see I am pretty close to build a proof in COQ, however I am stuck in such inequation. Which is pretty clear, since l2 = hd2 :: tl2. I just want to get rid of the length l1 from both sides o...
Breno
Votes: 0
Answers: 1
How to prove insert_BST in Coq
I want to prove that when receiving a binary search tree as an argument, the [insert] function generates another binary search tree.
Insert Function:
Fixpoint insert {V : Type} (x : key) (v : V) (t : ...
Breno
Votes: 0
Answers: 2
Warning : “Set this option from the IDE menu instead” in coq
I'm studying the Chapter "Imp" of Software foundation. I runned the command Unset Printing Coercions. in Coq Ide, the coq Message warned me that "Set this option from the IDE menu inste...
Echo_Zero
Votes: 0
Answers: 1
Creating Coq tactic: how to use a newly generated name?
I want to create a Coq tactic that looks something like the following. I assert a proposition named H, I prove that proposition, and then I use simpl within that proposition. The tactic would look som...
Sambo
Votes: 0
Answers: 1