Coq is an interactive theorem prover.
0
votes
1answer
36 views
Coq string sort lemmas
I have a string sort function defined as below and want to prove a lemma
sort_str_list_same below. I am not Coq expert, I tried to solve it using induction, but could not solve it. Please help me ...
3
votes
1answer
37 views
Prooving if then else in Coq
I'm new at Coq and I'm trying to prove something pretty basic
Lemma eq_if_eq : forall a1 a2, (if beq_nat a1 a2 then a2 else a1) = a1.
I struggled through a solution posted below, but I think ...
0
votes
0answers
25 views
Equiv string maps (unordered type) to equal string
I want to prove that if string maps (key*value) are Equiv, then the string lists are equal OR
convert two Equiv maps to equal strings of key-value pairs.
(**defined in FMapInterface*)
Definition ...
0
votes
1answer
61 views
Understanding the semantics behind the code
I have an OCaml code, and I have a hard time to formalize the function mi_pol into Coq because I am not understand clearly what exactly this code working, for example at the
aux (vec_add add const ...
0
votes
2answers
33 views
Proving non-existence of an infinite inductive value in Coq
Suppose I have a very simple inductive type:
Inductive ind : Set :=
| ind0 : ind
| ind1 : ind -> ind.
and I'd like to prove that certain values can't exist. Specifically, that there ...
0
votes
0answers
35 views
Coq - fold and maps on record types
I had previously posted problems like the following, but have not yet found a solution. I am having a store (mapping) from a record type (with five members) to a string value. A fold with a function ...
0
votes
1answer
19 views
coqide - can't load modules from same folder
I can't load modules that are in same folder in CoqIde.
I'm trying to load sources from Software Foundations, I'm running coqide in folder that contains SF sources with coqide or coqide ./, then ...
3
votes
1answer
102 views
Concoqtion (Coq + MetaOCaml) - why abandoned?
Before bugging people on the OCaml mailing list, I thought I might post my question here. I just discovered this beauty (link to Concoqtion website). Concoqtion is an extension of MetaOCaml which ...
1
vote
1answer
31 views
first-class module in Coq
Could anyone give me more information about the first-class module in Coq? I know that module in Coq is not a first-class. I would like to know the reason why? and is it possible that in the future ...
0
votes
1answer
14 views
Extract to an OCaml file by using “Recursive Extraction” in Coq
I want to extract a function foo in Coq to an OCaml file. Because my real function have to use the Recursive Extraction, when I run a program it output the extracted OCaml code on the cmd. But I would ...
6
votes
1answer
70 views
__ in Ocaml extracted from Coq
Ocaml code extracted from Coq includes (in some cases) a type __ and a function __ defined as follows:
type __ = Obj.t
let __ = let rec f _ = Obj.repr f in Obj.repr f
The documentation says that in ...
0
votes
1answer
36 views
Easy way to simplify expression within anonymous function?
Assume that I need to prove something like the following:
x: nat
(fun _ : nat => 0) = (fun y : nat => if beq_nat x y then 0 else 0)
Since y is not in the environment, it looks like I can't ...
0
votes
1answer
21 views
Design functor to be able to use different modules
I have two different module signatures into two different files. They have the same field name but different behaviour.
And functor inside define another functor.
PI.v
Module Type TPI.
Parameter ...
0
votes
1answer
37 views
How do you make notations visible outside of a module signature in Coq?
I've defined a module signature in Coq that defines several notations. When I try to use these notations outside of the signature however, Coq fails. A simplified version of my code is given below. ...
9
votes
1answer
227 views
Impredicative polymorphism in F#
OCaml's Hindley-Milner type system does not allow for impredicative polymorphism (à la System-F), except through a somewhat recent extension for record types. The same applies to F#.
It however is ...
0
votes
1answer
25 views
Module error Type differ in Coq
I have a hard time to figure out how to write this code.
For example, I have a signature A, a functor C takes a: A as a parameter, to be able to use C, I define a module B implements signature A
...
1
vote
1answer
22 views
Finding out the type signatures of a module/module type, in place
This issue has been bugging me one too many times now. Is there a way to print the signature of each element of a module type in place in Coq.
For instance:
Print Orders.OrderedType.
Module Type ...
0
votes
1answer
38 views
Universal qauntification hypothesis in Coq
I want to change the hypothesis H from the form below
mL : Map
mR : Map
H : forall (k : RecType) (e : String.string),
MapsTo k e (filter (is_vis_cookie l) mL) <->
MapsTo k e ...
2
votes
0answers
73 views
Extract functor in Coq to Ocaml using Extraction mechanism of Coq
I have a function PolyInterpretation (http://color.inria.fr/doc/CoLoR.PolyInt.APolyInt.html)
Definition PolyInterpretation := forall f : Sig, poly (arity f).
and a module signature ...
1
vote
1answer
58 views
Proof about less than
I'm trying to prove some theorems about less_than in Coq. I'm
using this inductive definition:
Inductive less_than : nat->nat->Prop :=
| lt1 : forall a, less_than O (S a)
| lt2 : forall a ...
0
votes
2answers
71 views
Convert function from string to nat in Coq
I would like to write a function convert type string -> nat in coq.
Where the string contents only number will return nat otherwise it will return 0 for the alphabet or alphabet with number or any ...
0
votes
1answer
29 views
Extraction mechanism of Coq generate “failwith ”AXIOM TO BE REALIZE“”
I have a module structure inside this module I declare a variable use for some function inside module A.
Module A.
Variable a : nat.
End A.
Then I use extraction mechanism.
Extraction ...
1
vote
1answer
38 views
Lemma cannot be used as a hint
Why doesn't Coq accept this lemma as a hint?
Lemma contr : forall p1 : Prop, False -> p1.
Proof. tauto. Qed.
Hint Resolve contr : Hints.
Or other lemmas that end with a Prop variable?
1
vote
2answers
78 views
Proof by cases using Coq
I have a simple theorem that I want to prove using proof by cases. An example is given below.
Goal forall a b : Set, a = b \/ a <> b.
Proof
intros a b.
...
How would I go about solving ...
0
votes
0answers
44 views
coq's architecture [closed]
I'm reading the source code of Coq 8.4 and trying my best to understand it. However, I find it hard to understand the coq proof assistant only by reading its code. Is there any introduction or ...
2
votes
1answer
53 views
Generalized fold for inductive datatypes in coq
I've found myself repeating a pattern over and over again, and I'd like to abstract it. I'm fairly confident that coq is sufficiently expressive to capture the pattern, but I'm having a bit of ...
1
vote
2answers
70 views
coq change premise 'negation of not equal' to 'equal'
Suppose I have a premise like this:
H2: ~ a b c <> a b c
And I wish to change it to:
a b c = a b c
Where
a is Term -> Term -> Term
b and c are both Term
How can I do it? Thanks!
0
votes
0answers
58 views
Solving morphism/Proper functions with maps in Coq
I want to solve morph-isms on two functions given below. I need help in proving an instance of Proper for these functions. The original code is huge, however, the simplified version still requires ...
1
vote
1answer
33 views
How to use the Lemma inside a module in Coq?
I defined a module type in one file called A.v
Module Type WeakPair.
...
End WeakPair.
Module WeakPairProps (Import WP : WeakPair).
Lemma Weak_A ....
End WeakPairProps.
Then I want to define ...
1
vote
1answer
54 views
string maps and add in Coq
In my proofs, I reached a goal looking similar to the following: (The actual types are different (zm : StringMap.string String.string, key and elt are String.string) ). In my code, if I have H: z1k ...
1
vote
1answer
56 views
New Scope in Coq
I'd like my own scope, to play around with long distfixes.
Declare Scope my_scope.
Delimit Scope my_scope with my.
Open Scope my_scope.
Definition f (x y a b : nat) : nat := x+y+a+b.
Notation "x ...
0
votes
1answer
55 views
Coq - How to show that the first argument of a function is decreasing?
I'm working through this Coq tutorial and I'm stuck with the one of the last exercises.
I defined a datatype for the binary representation of natural numbers and now I want to convert natural numbers ...
-1
votes
1answer
55 views
Coq Qed tactics get hang
I proved a lemma (Proof completed), but when I am saving it using Qed, the system gets busy.
In the same file, there are other similar lemmas where Qed performs normal, except this one.
Can any body ...
3
votes
1answer
49 views
“Verbose” auto in Coq
I'm learning Coq and the book I'm learning from, (CPDT) makes heavy use of auto in proofs.
Since I'm learning I think it might be helpful for me to see exactly what auto is doing under the hood (the ...
4
votes
1answer
55 views
Introduce previously proved theorem as hypothesis
Suppose that I have already proved some theorem in coq, and later I want to introduce it as a hypothesis in the proof of another theorem. Is there a succinct way to do this?
The need for this ...
0
votes
1answer
79 views
Abstracting leads to a term ill-typed… yet well-typed
I was stuck on a problem for a while, for which I derived a smaller standalone example:
Axiom f : nat -> Set.
Goal forall (n : nat) (e : n = n) (x : f n),
match e in _ = _n return f _n -> ...
0
votes
2answers
90 views
Proving (p->q)->(~q->~p) using Coq Proof Assistant
I am fairly new to Coq and am trying out sample lemmas from Ruth and Ryan. The proof using natural deduction is pretty trivial, and this is what I want to prove using Coq.
assume p -> q.
assume ...
0
votes
1answer
88 views
Finite map example
For my application, I need to use and reason about finite maps in Coq. Googling around I've found about FMapAVL which seems to be a perfect fit for my needs. The problem is that the documentation is ...
0
votes
1answer
123 views
Coq:How to prove that the size of difference elements in a list is less then then the list's length
I want to use the following lemmas to prove the strong form pigeon_hole principle.
Parameter A:Type.
Parameter var_dec : forall (x y : A),{x=y}+{~x=y}.
Definition included (l1 l2:list A):Prop :=
...
0
votes
1answer
45 views
Odd Lambda Syntax in Coq
I'm reading through CPDT and there is one example that I'm not understanding:
Definition plus_rec : nat -> nat -> nat :=
nat_rec (fun _ : nat => nat -> nat) (fun m => m) (fun _ r m ...
0
votes
1answer
55 views
Proving commutativity of max in coq
I have a function max:
Fixpoint max (n : nat) (m : nat) : nat :=
match n, m with
| O, O => O
| O, S x => S x
| S x, O => S x
| S x, S y => S (max x y)
end.
and a ...
1
vote
1answer
87 views
(A <-> B) -> A = B?
Suppose I define this set.
Inductive Set_1 : Set :=
| Constr_1 : Set_1
| Constr_2 : Set_1.
Is it possible to prove this statement?
(Constr_1 = Constr_2) = False
If so, what tactics do I use? ...
1
vote
1answer
42 views
Equivalence of a sequence list
Where the definition of equivalence (lequiv) in Color's library:
http://color.inria.fr/doc/CoLoR.Util.List.ListUtil.html
Require Import List.
Variable A : Type.
Definition lequiv (l1 l2: list A) : ...
1
vote
0answers
50 views
Morphism - Setoid on non-convertible terms in Coq
I have the following function in Coq. Now I want to define an instance as below. In my case, equivalence [==] on type [nat] is defined but not on [StringMap.t String.t]. Please if you solve the ...
2
votes
1answer
73 views
Best practices for an effective use of Coq's hint database
"The question you're asking appears subjective and is likely to be closed."
Well, I know that, but still it feels worth asking here.
I've been told many times that I should use the hint database ...
2
votes
1answer
35 views
Adding hypotheses that are not in the current hypotheses
I have a proof and in my hypothesis I have :
...
l0 : list
(list (ATrs.rule (Sig a)) * boolean * option (list positiveInteger) *
option cpf.dpProof)
H: forall
x : list ...
4
votes
1answer
169 views
Coq - use Prop (True | False) in if … then … else
I'm kind of new to Coq.
I'm trying to implement a generic version of insertion sort. I'm implementing is as a module that takes a Comparator as a parameter. This Comparator implements comparison ...
4
votes
1answer
69 views
Inside a branch of a match block, how do I use the assertion that the matched expression is equal to the branch's data constructor expression?
I am trying to develop a programming style that is based on preventing bad input as soon as possible. For example, instead of the following plausible definition for the predecessor function on the ...
0
votes
1answer
43 views
Using “symmetry” within Coq expressions
I'm trying to figure out how to do the following in Coq. Say we have proved the following:
trans_lemma: a = b -> b = c -> a = c
and we want to use it to deduce that
b = a -> c = b -> a = c.
I ...
1
vote
1answer
71 views
taking the first type in the list of tuple
I had a list l has type: l: list (list (A * B * C * D)) and I would like it returns for me a type list (list A)
I am trying the code with split function with the argument list (A * B * C * D)to see ...