Questions tagged [3sat-problem]
3 questions
2
votes
1 answer
Grover 3-SAT: Interpretation of Quantum Circuit
I'm referring to the Grover implementation for the 3-SAT problem:
https://qiskit.org/textbook/ch-applications/satisfiability-grover.html
For the given problem
the generated quantum circuit is as follows:
Can someone interpret how the circuit…
Kurt Stockinger
- 21
- 2
1
vote
0 answers
Why should we need measurement while finding oracle is already give us solution in SAT problem with Grover's Search Algorithm?
Based on reference I read in this site learn.qiskit.org here is simple problem example about 3-SAT problem in dimacs format:
c example DIMACS-CNF 3-sat
p cnf 3 5
-1 -2 -3 0
1 -2 3 0
1 2 -3 0
1 -2 -3 0
-1 2 3 0
And here is the solution I find using…
Muhammad Ikhwan Perwira
- 367
- 2
- 10
0
votes
1 answer
Grover's algorithm for 3SAT problem gives unexpected results
Based on SAT problem and Grover's algorithm, I've done some experiments. For the below example, I've received unexpected results:
Input: boolean function:
c example 4
p cnf 3 4
1 -2 -3 0
1 -2 3 0
1 2 -3 0
-1 -2 -3 0
Truth table of boolean…
SmileDay
- 3
- 3