Skip to main content

Questions tagged [satisfiability]

Satisfiability (SAT) is the problem of determining whether there is a variable assignment that fulfills a given Boolean formula.

0 votes
1 answer
37 views

I'm trying to do variable elimination by resolution in CNF SAT formulas. According to Wikipedia and other sources, the resolution rule states that $$ \dfrac{(p \lor a) \land (\neg p \lor b)}{(a \lor b)...
Grisu47's user avatar
  • 121
5 votes
2 answers
158 views

First of all, I do know that it is not known whether or not $\overline{SAT}$ is in NP. But to me, it clearly looks like it is in NP. Given a Boolean formula φ with n variables, we nondeterministically ...
Aland Ameer's user avatar
1 vote
1 answer
145 views

I'm trying to solve the game of chess with a Boolean Satisfiability Sovler. For that, I implement a C/C++ program with some non-deterministic values, convert this program to a Boolean Formula (CNF) ...
Serge Rogatch's user avatar
0 votes
0 answers
48 views

I am hashing a bunch of strings made up of a finite number of known keyword strings (n many keyword strings). Here I want to generate a perfect hash s.t. each ...
yosmo78's user avatar
  • 187
1 vote
0 answers
58 views

This is about the proof of Lemma 5.13 in the well-renowned book Motwani R, Raghavan P. Randomized Algorithms. Cambridge University Press; 1995. Access with institutional login: link. (The lemma is in ...
M G's user avatar
  • 11
0 votes
2 answers
109 views

Is it possibile to construct an xorsat problem with n variables that has as solutions only (0,1,...),(1,0,...),(0,0,...)? By dots, I meam the values of auxiliary variables, and these 3 vectors are the ...
user3682770's user avatar
4 votes
2 answers
236 views

Knuth's dancing links solver is featured prominently on the Wikipedia page of the Exact Cover Problem. A more recent version for exact cover with colors using Dancing cells was released by Knuth. This ...
worldsmithhelper's user avatar
0 votes
2 answers
98 views

Is there any method to transfer dividing calculation between two binary integer numbers into a SAT problem or any other NPC problems? It seems that all the +-x/ calculations can be transferred into ...
leonxia80's user avatar
0 votes
0 answers
87 views

What is an example of a minimal NP-hard subset of SAT? For example, 3SAT is hard but a professor told me that "most" 3SAT instances are actually easy. Have we found a minimal subset, or at ...
Rincewind's user avatar
0 votes
0 answers
62 views

Let's consider a boolean satisfiability problem with n variables in CNF form. We could consider that the n variables could represent a vector forming a integer between 0 and 2^n - 1. In that case, ...
Steeve's user avatar
  • 11
0 votes
0 answers
34 views

When using the CGen tool to convert the SHA-256 algorithm into Conjunctive Normal Form (CNF), the input and output bits are represented by DMAC literals. However, I am specifically interested in ...
pc gangroli's user avatar
1 vote
0 answers
45 views

I am building an inference engine that uses interval analysis to compute variable bounds. Efficiency is very important in my case: I cannot use SMT solvers I cannot afford full enumeration, since ...
Recover's user avatar
  • 11
2 votes
1 answer
88 views

I’ve been stuck on a problem while trying to prove that a restricted version of Dual Horn SAT is NL-hard. The input is a CNF formula such that (1) each clause has at most one negative literal (Dual ...
joeren1020's user avatar
4 votes
0 answers
88 views

Consider a subset $A\subseteq \{0, 1, 2, \dots, n - 1\}$. We define $A + i = \{(a + i) \text{ mod } n \mid a \in A\}$. For example if $A = \{1, 3, 4\}$ and $n = 5$, $A + 2 = \{3, 0, 1\}$. We want to ...
Maximilian Meiler's user avatar
2 votes
0 answers
66 views

I've been researching directional resolution as mentioned here. After experimenting a bit, choosing a good variable ordering can make a big difference in the number of new clauses being generated. I'm ...
Dan's user avatar
  • 121

15 30 50 per page
1
2 3 4 5
48