Assuming 3-OCC-MAX SAT is the language of all CNF formulas in which every variable appears in at most 3 clauses. Is this problem NP-Complete? I'm trying to find a karp reduction between SAT and this problem, but I couldn't find it.
1
There are 1 best solutions below
Related Questions in NP-COMPLETE
- How to prove a prob is np complete and is in np?
- Heuristic to find the maximum weight independent set in an arbritary graph
- Prove NP-Completeness of generating 2 shortest routes over given edge grouping constraints?
- example of reduction a polynomial decision to an NP-complete
- Set Cover Reduction
- NP-Complete VS NP-Hard
- Is this a correct understanding of proving something is NP Complete?
- NP complete - solvable in non-deterministic polynomial time
- How to generate a partial board solution for N-Queens (P vs NP)?
- Is longest possibly non-simple path in NP?
- Is GAP (graph accessibility) NP-Complete?
- 3-OCC-MAX SAT np-complete?
- Np-hardness reduction
- Hamiltonian paths & social graph algorithm
- Complexity measurement of NP-complete
Related Questions in SAT
- SAT-Solving: DPLL vs.?
- Adding clauses directly to the z3 solver
- Optimize SAT constraints of puzzle from DNF
- partial assignments in Z3
- Choco Sat Formulation
- Yosys instruction "sat -dump_cnf "
- How to download sat file with angular and C#
- Optimize event seat assignments with Corona restrictions
- Finding a path through vertices in a graph with SAT Solving in Python
- 3-OCC-MAX SAT np-complete?
- Is MAX 3 SAT NP-complete or co-NP-complete?
- How many satisfying assignments are there in a set of 3-CNF clauses where no clause share the same variable?
- How can I express scheduling problems in minisat?
- "Check if a cycle of K nodes exists" reduction to SAT?
- Alloy6 allowing invalid state transitions
Related Questions in CNF
- Conversion to CNF (stuck)
- Yosys instruction "sat -dump_cnf "
- 3-OCC-MAX SAT np-complete?
- Implement custom library browser / type hierarchy in an Eclipse plugin
- Z3 Boolean Expression Simplification
- transform first oder logic (FOL) to CNFFormula
- convert logical gates to cnf python
- Enable Action in navigator popup when nothing is selected
- How to design the CNF file from a given feature model?
- How are objective functions represented in SAT solvers?
- Converting CNF format to DIMACS format
- Python : Looking for Model Checker tool and results to CNF convertion
- How can I add more supported file extension (eg .cnf) for Remote - SSH: Editing Configuration Files
- Filtering contents in Eclipse Common Navigator Framework view
- Which tool is the best to convert clauses in CNF (or even better DIMACS CNF)?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
This problem is NP-complete. It is easy to see that it is in NP (guessing a model; check it in polynomial time).
First Attempt (Failure)
To show NP-hardness, I propose the following construction:
Consider a 3-SAT instance F over n variables. Consider a clause
[L1, L2, L3]. Define fresh variables p1, p2, p3. Define Li equivalent to pi. Afterwards, replace the original clause using the fresh variables.This results in clauses of the form:
Do this for all clauses and always use fresh variables.
Note that the variables p1 to p3 are used exactly three times, whereas L1 till L3 are used twice. This construction is polynomial.
EDIT: I currently see that this is not a valid solution yet: The original literals may exceed the maximum occurence of 3.
Second Attempt
The idea is to use fresh variables for every apperance of a literal.
Let M be the number of appearences of variables in the 3SAT formula (this can be improved). For every atom A in the 3SAT CNF, add the following to the resulting the 3-OCC-MAX SAT formula:
Do the same for the occurences of -A.
Furthermore, add the following to ensure that either the q-row or the p-row is true.
Now, add the clauses of the original 3SAT CNF, in which the n-th occurence of the literal L is replaced by qn. There is no "0-th occurence", i.e. we start counting by 1; therefore q0 and p0 as well as qM and pM are not used in this context. Note that A and -A appears 2x, the variable p0, q0, p_M+1, q_M+1 three times and the variables p_i, q_i, where i is between 1 and M at most three times.