-
Recent Posts
- Shapley-Shubik Voting Power September 15, 2023
- Decoding of Linear Codes September 1, 2023
- Permutation Generation August 18, 2023
- Finite Function Generation March 17, 2023
- Reachability for 1-Conservative Petri Nets January 27, 2023
Recent Comments
- Jianjiang Wang on How to get the archive password
- Sean T. McCulloch on Satisfiability
- Jonathan Buss on Satisfiability
- Sean T. McCulloch on Pokemon
- Tim Knittel on Pokemon
Archives
- September 2023
- August 2023
- March 2023
- January 2023
- December 2022
- November 2022
- October 2022
- September 2022
- August 2022
- June 2022
- May 2022
- December 2021
- November 2021
- October 2021
- September 2021
- August 2021
- July 2021
- May 2021
- April 2021
- March 2021
- February 2021
- January 2021
- December 2020
- November 2020
- October 2020
- September 2020
- August 2020
- March 2020
- February 2020
- January 2020
- December 2019
- November 2019
- October 2019
- September 2019
- August 2019
- July 2019
- June 2019
- May 2019
- April 2019
- March 2019
- February 2019
- January 2019
- December 2018
- November 2018
- October 2018
- September 2018
- August 2018
- July 2018
- June 2018
- May 2018
- April 2018
- March 2018
- February 2018
- January 2018
- December 2017
- November 2017
- October 2017
- September 2017
- August 2017
- July 2017
- June 2017
- May 2017
- April 2017
- March 2017
- February 2017
- January 2017
- December 2016
- November 2016
- October 2016
- September 2016
- August 2016
- July 2016
- June 2016
- May 2016
- April 2016
- March 2016
- February 2016
- January 2016
- December 2015
- November 2015
- October 2015
- September 2015
- August 2015
- July 2015
- June 2015
- May 2015
- April 2015
- March 2015
- February 2015
- January 2015
- December 2014
- November 2014
- October 2014
- September 2014
- August 2014
- July 2014
- June 2014
Categories
- Algebra and Number Theory
- Appendix- Algebra and Number Theory
- Appendix- Automata and Language Theory
- Appendix- Games and Puzzles
- Appendix- Mathematical Programming
- Appendix- Network Design
- Appendix- Program Optimization
- Appendix- Sets and Partitions
- Appendix-Graph Theory
- Appendix-Logic
- Appendix: Miscellaneous
- Appendix: Sequencing and Scheduling
- Appendix: Storage and Retrieval
- Chapter 3 Exercises
- Core Problems
- Overview
- Problems not in appendix
- Uncategorized
Category Archives: Appendix-Logic
Protected: Generalized Satisfiability
Enter your password to view comments.
Posted in Appendix-Logic
Tagged 3-sat, Difficulty 5, Generalized Satisfiability, LO1, LO2, LO3, LO4, LO5, LO6
Protected: Quantified Boolean Formulas
Enter your password to view comments.
Posted in Appendix-Logic
Tagged 3SAT, Difficulty 3, LO11, QBF, uncited reduction
Protected: Planar 3-Satisfiability
Enter your password to view comments.
Posted in Appendix-Logic, Problems not in appendix
Tagged Difficulty 8, Planar 3Sat, Satisfiability
Monotone EQSat
Today I’m posting 2 problems relating to my student Dan Thornton’s independent study work. I’m out of town this week and next, so I have these posts set to automatically go up on Tuesday afternoon.
Dan’s independent study was based on the “Automaton Identification” problem, but to show that reduction, he needs to use a variant of 3SAT, which he shows here:
The problem: Monotone EQ SAT. This is a specific instance of Monotone SAT.
The description:
We are given a conjunction of clauses where each clause in
contains all negated or non-negated variables
and the number of clauses and variables are equal, is there an assignment of the variables so that
is satisfied? Our instance will have
clauses and variables.
Example:
Here is an that has
variables and
clauses.
F =
The above may be satisfied by the following assignment:
The reduction:
We will reduce from Monotone SAT. So we are given an instance of Monotone SAT with the clauses here each clause is of the form
where each clause has all negated or non-negated variables. This is different from Monotone EQ SAT as we do not require the number of variables and clauses to be equal.
From this we must build an instance of Monotone EQ SAT.
We may transform our instance of Monotone SAT, , into one of Monotone EQ SAT by the following iterative procedure. New variables will be denoted by
and new clauses by
.
=
; i = 1; j = 1; While{number of clauses != number of variables}{ introduce two new variables
; If{number of variables
number of clauses}{ Create the new clause
;
;
; } else { Create three new clauses:
![]()
![]()
;
;
; }
; }
The above algorithm will produce an equation that is in Monotone EQ SAT. This may be shown by induction. Notice that before the procedure if
that we will add 2 new variables and 3 new clauses.
If then we will add 2 new variables but only a single new clause. Either way the difference between the number of variables and clauses,
will decrease by
. So in
steps we will obtain an formula where
= 0. Such a formula is an instance of Monotone EQ SAT.
True{Monotone SAT True{Monotone EQ SAT}
Here we assume that there is a truth assignment function that maps every variable to a truth value, such that
is satisfied. Then after we preform the above algorithm we have an instance of
, now our instance of
will be of the form
for some
. Now notice that
above will satisfy
in
and we may trivially satisfy
by simply assigning all new variables
to true.
This will give us a new truth assignment function that will satisfy
True{Monotone EQ SAT} True{Monotone SAT}
Here we assume that there is a truth assignment function that will satisfy
then obviously as
then
must also satisfy
.
(Back to me)
Difficulty: 3. The logical manipulations aren’t hard, but it is possible to mess them up. For example, it’s important that the algorithm above reduces the difference in variables and clauses by 1 each iteration. If it can reduce by more, you run the risk of skipping over the EQ state.
Posted in Appendix-Logic
Tagged Dan's Problems, Difficulty 3, Monotone EQ Sat, Monotone Sat
Protected: DNF Non-Tautology
Enter your password to view comments.
Posted in Appendix-Logic
Tagged 3-sat, Difficulty 2, DNF Non-Tautology, LO8, Non-Tautology
Monotone 3-Satisfiability
I told Daniel when he gave me his Monotone Satisfiability reduction that the actual problem mentioned in G&J was Monotone 3-Satisfiability. So he went off and did that reduction too.
The Problem:
Monotone 3 SAT. This is a more restrictive case of Monotone SAT
The Description:
Given an formula of clauses where each clause in
contains all negated or non-negated variables, and each clause
contains at most
variables. Does there exist an assignment of the variables so that
is satisfied?
Example:
the following assignment satisfies :
However:
And the following is in Monotone 3SAT form:
are both unsatisfiable.
The reduction:
In the following reduction we are given an instance of 3SAT,
. Here each clause is of the form:
where
and each is a literal of the form
.
We use the following construction to build an instance of Monotone 3 SAT out of the above instance of 3SAT :
In each clause we have at most one literal,
that is not of the same parity as the rest of the literals in the clause. For every such literal, we may preform the following substitution:
this yields a modified clause
.
Now we must be able to guarantee that and
are mapped to opposite truth values, so we introduce the new clause:
and conjunct it onto our old formula
producing a new formula
.
For example:
so we preform the substitution
so and
Now repeating this procedure will result in a new formula: .
We claim logical equivalence between the and
This is semantically intuitive as the
clause requires all substituted literal
in
to take the value opposite of
this was the stipulation for the substitution initially. It is also verifiable by truth table construction for:
:
If there exists a truth assignment that satisfies
, then we may extent this truth assignment to produce
which will satisfy
by letting
for all
and letting
for all
.
Obviously if is satisfiable
must be by the above construction of
. So by the above claim we have that
will satisfy
.
:
Continuing from the above, if we have a truth assignment that satisfies
, then by the claim above it also must satisfy
. And
is a sub-formula of
so any truth assignment that satisfies
must also satisfy
.
(Back to me)
Difficulty: 4, since it’s a little harder than the regular Monotone Sat one.
Posted in Appendix-Logic
Tagged 3-sat, Dan's Problems, Difficulty 4, Monotone 3SAT, Monotone Sat, uncited reduction
Monotone Satisfiability
This semester I’m doing an independent study with a student, Daniel Thornton, looking at NP-Complete problems. He came up with a reduction for Monotone Satisfiability, and since I hadn’t gotten to that problem yet, I told him if he wrote it up, I’d post it.
So, here it is. Take it away, Daniel!
The Problem: Monotone SAT. This is mentioned in problem LO2 in the book.
The description:
Given an set of clauses where each clause in F contains all negated or non-negated variables, is there an assignment of the variables so that
is satisfied?
Example:
the following assignment satisfies :
The reduction:
In the following reduction we are given an instance of SAT, with the clauses:
. Here each clause is of the form
and each
is a literal of the form
Now we build an instance of Monotone SAT from the instance of SAT given above:
For each we construct two new clauses
and
, such that all elements of
are non-negated literals and all terms in
are negated literals with the addition of the new special term
. Now let us build a new formula
this is our instance of Monotone SAT, clauses are either all non-negated or negated.
:
Notice how we added the extra literal or
to each of the clauses
or
respectfully. Now if there is an assignment that satisfies all of the clauses of
then as only
or
may be satisfied by the appended extra literal, one of the clauses must be satisfied by it’s other literals. These literals are also in
so such an assignment satisfies all
.
:
Using an argument similar to the one above, For to be satisfied there must be at least one literal assignment say
that satisfies each clause
Now
is in either
or
. This implies that at least one of
or
is also satisfied by
, so simply assign the new term
accordingly to satisfy the clause in
not satisfied by
(back to me again)
Difficulty: 3. I like that the reduction involves manipulating the formula, instead of applying logical identities.
Posted in Appendix-Logic
Tagged Dan's Problems, Difficulty 3, Monotone Sat, uncited reduction
Protected: One-In-Three 3SAT
Enter your password to view comments.
Posted in Appendix-Logic
Tagged 3-sat, Difficulty 7, LO4, NAE3SAT, One-In-Three 3SAT, uncited reduction
Protected: Three-Occurrence 3SAT
Enter your password to view comments.
Posted in Appendix-Logic, Problems not in appendix
Tagged Difficulty 5, Edge Subgraph, LO1, Three Occurrence 3-sat, uncited reduction
Protected: Maximum 2-SAT
Enter your password to view comments.
Posted in Appendix-Logic
Tagged 3-sat, Difficulty 8, LO5, Max 2-Sat