Tagged Questions

Coq is an interactive theorem prover.

learn more… | top users | synonyms

16
votes
2answers
610 views

What are the practical limitations of a non-turing complete language like Coq?

As there are non-Turing complete languages out there, and given I didn't study Comp Sci at university, could someone explain something that a Turing-incomplete language (like Coq) cannot do? Or is ...
15
votes
4answers
1k views

proofs about regular expressions

Does anyone know any examples of the following? Proof developments about regular expressions (possibly extended with backreferences) in proof assistants (such as Coq). Programs in dependently-typed ...
8
votes
0answers
28 views

Ltac-tically abstracting over a subterm of the goal type

As a rough and untutored background, in HoTT, one deduces the heck out of the inductively defined type Inductive paths {X : Type } : X -> X -> Type := | idpath : forall x: X, paths x x. ...
6
votes
1answer
72 views

recursively invert hypotheses in coq

I am having trouble defining a tactic to recursively invert hypotheses in a proof context. For instance, suppose I have a proof context containing a hypothesis like: H1 : search_tree (node a (node b ...
6
votes
2answers
153 views

What does `true = false` mean in Coq?

[I am not sure this is appropriate for stack overflow, but there are many other Coq questions here so perhaps someone can help.] I am working through the following from ...
6
votes
1answer
254 views

Forall introduction in coq?

I'm trying to (classically) prove ~ (forall t : U, phi) -> exists t: U, ~phi in Coq. What I'm trying to do is prove it contrapositively: 1. Assume there is no such t (so ~(exists t: U, ~phi)) ...
6
votes
4answers
426 views

Proving f (f bool) = bool

How can I in coq, prove that a function f that accepts a bool true|false and returns a bool true|false (shown below), when applied twice to a single bool true|false would always return that same value ...
5
votes
2answers
117 views

Pattern matching not specialising types

I'm playing around in Coq, trying to create a sorted list. I just wanted a function that takes a list [1,2,3,2,4] and would return something like Sorted[1,2,3,4] - i.e. taking out the bad parts, but ...
5
votes
2answers
157 views

What is a constructor in Coq?

I am having trouble understanding the principles of what a constructor is and how it works. For example, in Coq, we have been taught to define the natural numbers like this: Inductive nat : Type := ...
4
votes
1answer
43 views

Controlling exportation of constructors in code extracted from Coq

I'm looking at writing code in Coq and extracting this code for use in a large Haskell project. I want to build a single module in Coq, prove properties, then use Haskell's module system to prevent ...
4
votes
2answers
81 views

How to do cases with an inductive type in Coq

I wan to use destruct tactic to prove a statement by cases. I have read a couple of examples online and I'm confused. Could someone explain it better. Here is a small example (there is other ways to ...
4
votes
1answer
136 views

Using forall within recursive Function definition

I'm trying to use Function to define a recursive definition using a measure, and I'm getting the error: Error: find_call_occs : Prod I'm posting the whole source code at the bottom, but my function ...
4
votes
4answers
740 views

How to prove (forall x, P x /\ Q x) -> (forall x, P x) [In Coq]

How does one prove (forall x, P x /\ Q x) -> (forall x, P x) in Coq? Been trying for hours and can't figure out how to break down the antecedent to something that Coq can digest. (I'm a newb, ...
3
votes
1answer
44 views

Unable to find an instance for the variable

Context: I'm working on exercises in Software Foundations. Theorem neg_move : forall x y : bool, x = negb y -> negb x = y. Proof. Admitted. Theorem evenb_n__oddb_Sn : forall n : nat, evenb n ...
3
votes
1answer
40 views

Inconsistent behavior of Coq concerning implicit parameters of Let definitions

I've found some kind of inconsistent behavior of Coq concerning implicit parameters. Section foo. Let id1 {t : Set} (x : t) := x. Let id2 {t : Set} (x : t) : t. assumption. Qed. Check id2 ...
3
votes
1answer
85 views

Building a class hierarchy in Coq?

I can naively construct a hierarchy of algebraic structures in Coq using type classes. I'm having some trouble finding resources on Coq's syntax and semantics for type classes. However, I believe the ...
3
votes
1answer
73 views

How do I reason about conditionals in Coq?

I'm working through the ListSet module from the Coq standard library. I'm unsure how to reason about conditionals in a proof. For instance, I am having trouble with the following proof. Definitions ...
3
votes
2answers
82 views

How do I import modules in Coq?

I'm having trouble importing definitions from modules in Coq. I'm new to Coq, but couldn't solve the problem using the language's reference manual or online tutorial. I have a module that defines a ...
3
votes
2answers
135 views

How to define Xor in Coq and prove its properties

This should be an easy question. I'm new with Coq. I want to define the exclusive or in Coq (which to the best of my knowledge is not predefined). The important part is to allow for multiple ...
3
votes
1answer
146 views

Subset parameter

I have a set as a parameter: Parameter Q:Set. Now I want to define another parameter that is a subset of Q. Something like: Parameter F: subset Q. How I can define that? I guess I can add the ...
2
votes
1answer
34 views

Destructing on the result of applying a predicate function

I'm new to Coq and have a quick question about the destruct tactic. Suppose I have a count function that counts the number of occurrences of a given natural number in a list of natural numbers: ...
2
votes
1answer
52 views

Odd behavior of setoid_rewrite in Coq

I am having problems with rewriting using the setoid_rewrite tactic. In the following instance declaration, I expect that setoid_rewrite fmapComp would rewrite fmap iso ∘ fmap inv to fmap (iso ∘ inv). ...
2
votes
2answers
74 views

Searching through a list recursively in Coq

Im trying to search for an object in a list, and then perhaps return true if it is found; false otherwise. However, what I have tried to come up with is incorrect. I would really appreciate some ...
2
votes
1answer
65 views

What means (a:b) c and [a:b] c in some Coq theories and where is it defined?

I have seen a very strange syntax: (name:type1) type2 in type and [name:type] expr in expressions, looks like alternate syntax for Pi and Lambda, but I haven't found anything in documentation after ...
2
votes
2answers
235 views

Keeping information when using induction?

I am using the Coq Proof Assistant to implement a model of a (small) programming language (extending an implementation of Featherweight Java by Bruno De Fraine, Erik Ernst, Mario Südholt). One thing ...
2
votes
1answer
151 views

How to write Definitions without arguments in Coq?

I have the following Inductive type defined in Coq. Inductive natlist : Type := | nil : natlist | cons : nat -> natlist -> natlist. Notation "x :: l" := (cons x l) (at level 60, right ...
2
votes
1answer
146 views

Help with a Coq proof for SubSequences

I have the defined inductive types: Inductive InL (A:Type) (y:A) : list A -> Prop := | InHead : forall xs:list A, InL y (cons y xs) | InTail : forall (x:A) (xs:list A), InL y xs -> InL y ...
2
votes
2answers
232 views

Proving Predicate Logic using Coq - Beginner Syntax

I'm trying to prove the following in Coq: Goal (forall x:X, P(x) /\ Q(x)) -> ((forall x:X, P (x)) /\ (forall x:X, Q (x))). Can someone please help? I'm not sure whether to split, make an assumption ...
2
votes
2answers
296 views

How do I write Ax ( P(x) and Q(x) ) in Coq?

I'm trying out Coq, but I'm not completely sure what I'm doing. Is: Theorem new_theorem : forall x, P:Prop /\ Q:Prop Equivalent to: Ax ( P(x) and Q(x) ) (where A is supposed to be the universal ...
1
vote
1answer
81 views

equality of eta-equivalent terms not established by reflexivity in coq

edit: I should probably say how I am currently worked around the problem here. I defined a principle for showing equality of permutations, Lemma permInd : ∀ (U : Type) (A : Ensemble U) (φ ψ : Perm ...
1
vote
1answer
50 views

Term rewriting inside dependantly typed expression fails for unknown reason

Here is a simplified snippet of a larger proof which captures the behavior in question. Section foo. Parameter t : Type. Parameter x : t. Parameter y : t. Parameter prop : x = y <-> ...
1
vote
2answers
65 views

How to prove forall n:nat, ~n<n in Coq?

I've been confused for hours and I cannot figure out how to prove forall n:nat, ~n<n in Coq. I really need your help. Any suggestions?
1
vote
2answers
50 views

What does V stand for in the Coq file extension?

Is .v for verification? validation? vamanos? Why not use a .coq extension?
1
vote
2answers
47 views

Discarding tautological premises in Coq

I have a hypothesis in the local context, let's call it H which is of the form true=true -> conclusion. Which tactic can I use to discard the premise and retain only the conclusion?
1
vote
1answer
94 views

Recursive function definition in coq with limit on set of possible inputs

I need to define a recursive function with no easily measurable argument. I keep a list of used arguments to ensure that each one is used at most once, and the input space is finite. Using a measure ...
1
vote
1answer
92 views

Strange behavior of semicolon in Coq

I'm having a problem understanding why my Coq code doesn't do what I expect in the code below. I tried to make the example as simplified as possible, but the problem didn't show up anymore when I ...
0
votes
0answers
68 views

How to use induction without Fixpoint definition in Coq? [closed]

I want to verificate a program written in c. I am using Jessie to translate the (pre/post)conditions of the program to coq. In coq I will make a proof. Sometimes I need recursive definitions. ...
0
votes
1answer
115 views

Coq Proof Help - Im stuck :(

Im having a problem with my Coq Proof and was hoping for some help and guidance. I have part of my definition below: Inductive Architecture : Set := | Create_Architecture (Arch_Name: ...