Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
7answers
186 views

Using theorem provers to find attacks

I've heard a bit about using automated theorem provers in attempts to show that security vulnerabilities don't exist in a software system. In general this is fiendishly hard to do. My question is ...
6
votes
2answers
196 views

Showing (head . init ) = head in Agda

I'm trying to prove a simple lemma in Agda, which I think is true. If a vector has more than two elements, taking its head following taking the init is the same as taking its head immediately. ...
5
votes
2answers
120 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 ...
4
votes
2answers
177 views

What's your favourite assisted theorem prover?

I'm hoping to pick one of the many assisted theorem provers (rather than automatic ones) but there are rather a lot to choose from! Does anyone have any you prefer and may I ask why? Thanks!
3
votes
2answers
45 views

Pattern matching with associative and commutative operators

Pattern matching (as found in e.g. Prolog, the ML family languages and various expert system shells) normally operates by matching a query against data element by element in strict order. In domains ...
3
votes
1answer
74 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
3answers
233 views

Tautology Checker for GNU Prolog

I am looking for open-source implementations of tautology checkers written in GNU Prolog (implementation for SWI-Prolog is acceptable as well, but GNU Prolog is preferred). I'd like to feed program ...
3
votes
2answers
146 views

SMT solvers for bit vector arithmetic

I'm planning some experiments in symbolic execution of C code, using an off-the-shelf SMT solver, and wondering which solver to use; looking at e.g. the SMT contest entrants, and taking only the ...
3
votes
3answers
465 views

Combinator logic axioms

I'm carrying out some experiments in theorem proving with combinator logic, which is looking promising, but there's one stumbling block: it has been pointed out that in combinator logic it is true ...
3
votes
2answers
118 views

Kowalski graph theorem proving

I'm trying to use the Kowalski graph algorithm for resolution theorem proving. The description of the algorithm at http://www.doc.ic.ac.uk/~rak/ is silent on what to do about the large number of ...
2
votes
1answer
61 views

Propositional Theorem Proving [closed]

How can we use Breadth First Search as a strategy for propositional theorem proving (I can't see a clear problem formulation: what are the actions available at each state and what a state is). I've ...
2
votes
2answers
77 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
2answers
97 views

Books about SMT solovers

everybody. Could you recommend me a good book or blog or any other kind of information source about SMT/SAT solovers and theorem proving. It would be great if there will be described not only ...
1
vote
1answer
165 views

Z3: Extracting existential model-values

I'm playing around with Z3's QBVF solver, and wondering if it's possible to extract values from an existential assertion. To wit, let's say I have the following: (assert (exists ((x (_ BitVec 16))) ...
1
vote
1answer
163 views

Has anyone tried proving Z3 with Z3 itself?

Has anyone tried proving Z3 with Z3 itself? Is it even possible, to prove that Z3 is correct, using Z3? More theoretical, is it possible to prove that tool X is correct, using X itself?
1
vote
4answers
200 views

Pairwise priority queue

I have a set of A's and a set of B's, each with an associated numerical priority, where each A may match some or all B's and vice versa, and my main loop basically consists of: Take the best A and B ...
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: ...