Theorem proving, currently the most well-developed subfield of automated reasoning, is the proving of mathematical theorems by a computer program.

learn more… | top users | synonyms

0
votes
1answer
25 views

destruct with dependent types

I have several inductive types defined for a compiler that I'm verifying of this form Inductive types := Int | Char | Symbol | Bool. Inductive val : types -> Type := | T : val Bool | F : val Bool ...
0
votes
1answer
50 views
+50

Isabelle: Sledgehammer finds a proof but it fails

This is a beginner question, I have worked with Isabelle only a few weeks. Often times I have the problem that Sledgehammer finds a proof. But then I try it, but the proof doesn't terminate. I guess ...
1
vote
2answers
55 views

Coq: Problems with List In inductive

I'm new to Coq, but with some effort I was able to prove various inductive lemmas. However I get stuck on all exercises that uses the following inductive definition: Inductive In (A:Type) (y:A) : ...
1
vote
2answers
46 views

Isabelle: proof for a equality of transposed matrix with a constant factor

I am facing problems with the following lemma, which I think should be correct. I can get the proof to work up to a certain point with small steps, however I haven't found a way to proof the entire ...
0
votes
1answer
32 views

Isabelle: transpose a matrix that includes a constant factor

In my Isabelle theory I have a matrix with a constant factor: ... k :: 'n and c :: 'a (χ i j. if j = k then c * (A $ i $ j) else A $ i $ j) I can calculate the transposed matrix: (transpose (χ i ...
1
vote
1answer
38 views

Isabelle: how to work with matrices

I started to learn Isabelle, the theorem prover, about 2-3 weeks ago. I am still an absolute beginner and I worked with the tutorial "Programming and Proving in Isabelle/HOL" so far. The only help ...
0
votes
1answer
93 views

how to prove the correctness of a c program with coq

I want to prove the correctness of some of my programs but I don't know where to start. Let's say I have the following program, how can I prove its correctness or lack there of. How can I go from the ...
0
votes
1answer
40 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. ...
2
votes
1answer
75 views

Z3: Performing Matrix Operations

My Situation I'm working on a project which needs to: Prove the correctness of 3D matrix transformation formulas involving matrix operations Find a model with the values of the unknown matrix ...
2
votes
1answer
36 views

Z3 will not case split on hand-crafted data types

I have defined my own booleans, called boolean is SMT2, and the AND function boolean_and over them. My conjecture is that AND is commutative: (declare-sort boolean) (declare-const sk_x boolean) ...
2
votes
3answers
59 views

Elimination rule for finitely-bounded quantifiers

I have the following goal: ∀x ∈ {0,1,2,3,4,5}. P x I want to break this goal down into the six subgoals P 0, P 1, P 2, P 3, P 4 and P 5. This is easily done by apply auto. But what is the relevant ...
1
vote
2answers
79 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 ...
1
vote
1answer
61 views

Z3Py: Generating Abstract Formulas From A System Of Equations

My Example: system of equations Pseudo-Code Constraint Base a = b+c ∧ e = a*c ∧ a = +2 ; some replaceable concrete values ∧ c = +18 Solution b = -16 ∧ e = -32 The Information I Want ...
5
votes
1answer
100 views

Invoking Nitpick and Sledgehammer together in Isabelle

When I state a lemma in Isabelle, I often type nitpick, and if that doesn't give me a counterexample. I then type sledgehammer to try to find a proof automatically. I wonder: is it possible to ...
2
votes
1answer
144 views

Z3 Theorem Prover: Pythagorean Theorem (Non-Linear Artithmetic)

Wherefore? The usecase context in which my problem occures I define 3 random item of a triangle. Microsoft Z3 should output: Are the constraints satisfiabe or are there invalid input values? A ...
0
votes
1answer
112 views

automated theorem proving program - where to start? [closed]

I'm a second year student with my discrete mathematics 2 assignment is to make an automated theorem prover. I have to make a simple prover program that works on Propositional Logic in 4 weeks ...
0
votes
2answers
100 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 ...
1
vote
1answer
50 views

Reducing the number of used clauses using proof goal in Z3

I am experimenting with optimizing the use of Z3 for proving facts about a first-order theory. Currently, I specify a first-order theory in Python, ground the quantifiers there and send all the ...
3
votes
1answer
102 views

Books about Coq [closed]

It seems there are two books about Coq programming for newbies: Software Foundations Certified Programming with Dependent Types Is there any other book about Coq?
1
vote
1answer
53 views

OTTER inferences

I'm writing an input file for OTTER that is very simple: set(auto). formula_list(usable). all x y ([Nipah(x) & Encephalitis(y)] -> Causes(x,y)). exists x y (Nipah(x) & Encephalitis(y)). ...
0
votes
1answer
57 views

declare-fun and define-fun in Z3 can't work together?

I need to model length of array. So I declare a function (declare-fun LEN ((Array Int Int)) Int) At the same time, I want to define some macros using define-fun. However, as I tested a little bit ...
1
vote
1answer
123 views

Skolemization in Z3

I am trying to remove existential quantifiers in my theory using Skolemization. This means that I replace existential quantifiers with functions that are parameterized by the universally quantified ...
4
votes
1answer
400 views

Z3: finding all satisfying models

I am trying to retrieve all possible models for some first-order theory using Z3, an SMT solver developed by Microsoft Research. Here is a minimal working example: (declare-const f Bool) (assert (or ...
3
votes
1answer
146 views

Avoiding quantifiers in Z3

I am experimenting with Z3 where I combine the theories of arithmetic, quantifiers and equality. This does not seem to be very efficient, in fact it seems to be more efficient to replace the ...
1
vote
2answers
100 views

Can I use declare-const to eliminate the forall universal quantifier?

I have some confusion of using universal quantifier and declare-const without using forall (set-option :mbqi true) (declare-fun f (Int Int) Int) (declare-const a Int) (declare-const b Int) (assert ...
-1
votes
1answer
36 views

What tools are suitable for showing program non-termination? [closed]

I want to generate lots of small programs written in a very simple C-like language (using unbounded integers only, and with no user input). If a program runs too long, send it to a tool that checks ...
5
votes
1answer
190 views

printing internal solver formulas in z3

The theorem proving tool z3 is taking a lot of time to solve a formula, which I believe it should be able to handle easily. To understand this better and possibly optimize my input to z3, I wanted to ...
1
vote
1answer
67 views

Lost on this exercise

I have to proof this: Variable A : Set. Variable P : A -> Prop. Variables R : A -> A -> Prop. Lemma pool : (forall x:A, ~P x) -> ~(exists x:A, ~ P x). So far I've done: intros. unfold ...
0
votes
1answer
71 views

Coq: defining a function based on uniqueness and existence theorems

To isolate this issue as much as possible, suppose I begin a Coq session as follows. Parameter A : Type. Parameter B : Type. Parameter P : A -> B -> Prop. Axiom existence : forall a : A, ...
4
votes
1answer
101 views

Solving this coq exercise

I'm learning COQ and I'm stuck on one of the book exercises. The book doesn't give me a solution so I don't know what to do. I've done the first one though. I have to translate these statements to ...
1
vote
1answer
74 views

Sample uniformly from set of satisfying assignments in Z3

Is there a way to use the Z3 theorem prover to sample uniformly from the set of satisfying assignments? If not, what is the closest system to Z3 that has this capability?
0
votes
0answers
37 views

Knuth-Bendix ordering and the one unary function [closed]

I'm looking at Knuth-Bendix ordering in the context of theorem proving with the superposition calculus. The explanations of KBO that I've been able to find say among other things that each function ...
3
votes
1answer
157 views

Theorem proving with A* algorithm

I'm preparing the final exam for my master's degree, this is a problem of past exam , it's really confused me, don't know where to start. My thought is the admissible heuristic is resolution rule, ...
1
vote
0answers
42 views

Distinct variables for different clauses [closed]

In resolution theorem proving, it is normally assumed variables in different clauses are distinct. This is not something that happens automatically; it requires significant extra code and computation ...
1
vote
1answer
74 views

Using an existential theorem in Coq

I have the following theorem in Coq: Theorem T : exists x:A, P x. I want to be able to use this value in a subsequent proof. I.E. I want to say something like: "let o represent a value such that P o. ...
0
votes
0answers
38 views

Automatic theorem provers for code validation

Recently I began to read the book Artificial Intelligence by Norwig and Russel. A large part of it is dedicated to using automatic theorem provers. The authors claim that these provers can be used for ...
1
vote
1answer
169 views

BDD implementations in Java

Anyone has suggestions for BDD (binary decision diagrams) implementations in Java (or one that provides Java bindings)? I found this page online: http://www.mancoosi.org/~abate/avalaible-bdd-libraries ...
5
votes
1answer
233 views

Limits of SMT solvers

Traditionally most work with computational logic was either propositional, in which case you used a SAT (boolean satisfiability) solver, or first-order, in which case you used a first-order theorem ...
5
votes
1answer
487 views

Difference between Z3 and coq

I am wondering if someone can tell me the difference between Z3 and coq? Seems to me that coq is a proof assistant in that it requires the user to fill in the proof steps, whereas Z3 does not have ...
0
votes
1answer
117 views

Finish proof with false hypothesis in Coq

So I have a false hypothesis in a subgoal. It's an equality between different constructors. How do I finish the subgoal? H: List.Not_Empty Bit.Bit Bit.Zero (List.Empty Bit.Bit) = List.Empty Bit.Bit
15
votes
4answers
1k views

Is it possible to program and check invariants in haskell?

When I write an algorithm I usually write down invariants in comments, for example one function might return an ordered list and the other one expect that a list would be ordered. I'm aware that ...
11
votes
2answers
1k views

How to learn agda

I am trying to learn agda. However, I got a problem. All the tutorials which I found on agda wiki are too complex for me and cover different aspects of programming. After parallel reading of 3 ...
4
votes
2answers
256 views

Has anybody seen a good open source Prolog implementation of the SATCHMO theorem prover?

I've seen quite a few papers on the SATCHMO theorem prover that talk about Prolog implementations. But the only source code implementation I've found so far was in a book and it was really limited ...
3
votes
3answers
206 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 ...
2
votes
1answer
127 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 ...
3
votes
1answer
169 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 ...
1
vote
1answer
554 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))) ...
3
votes
3answers
574 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 ...
4
votes
1answer
674 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?
0
votes
1answer
182 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: ...

1 2