Attempt for solving TPPmark problem of the 16th Theorem Proving and Provers meeting (TPP 2020).
Main program is TPPmark2020.hs.
124本のベクトルからなる集合 X = {(x,y,z) | x,y,z ∈ {0,±1,±√2}} \ {(0,0,0)} の各要素を白または黒に塗り分けることを考えます. このとき,次の2条件 a), b) を満たすようにベクトルを白または黒に塗り分けることはできないことを証明してください.
- a) 2つの直交するベクトルのうち,少なくとも1本は黒色である.
- b) 互いに直交し合う3つのベクトルのうち,少なくとも1本は白色である.
Consider painting each element of the set X = {(x,y,z) | x,y,z ∈ {0,±1,±√2}} \ {(0,0,0)} of 124 vectors white or black. Prove that the vectors cannot be painted white or black in such a way that the following two conditions a) and b) are met.
- a) Whenever two of the vectors are orthogonal, at least one is black.
- b) Whenever three of the vectors are mutually orthogonal, at least one is white.
Xの要素p毎の論理変数 white(p) (真であるときに白、偽であるときに黒であることを表す) と
- ¬white(p1) ∨ ¬white(p2) for p1,p2∈X, p1 and p2 are orthogonal
- white(p1) ∨ white(p2) ∨ white(p3) for p1,p2,p3∈X, p1, p2 and p3 are mutually orthogonal
という制約条件からなる命題論理式をSATソルバを用いて解くことで、そのような塗り分けが可能かどうかを判定することができる。
solveQ1
が論理式を生成してSATソルバで解く関数であり、 Q1.cnf が得られた論理式である。
SATソルバは一瞬でUNSATという結果を返すため、そのような塗り分けは不可能なことが示せた。
条件 c) を満たしつつ,条件 a) と b) の少なくとも一方は成り立たないように,ベクトルの集合 X からできるだけ多くの要素を減らしてください. (ヒント: 33本までは減らせることが知られています.)
- c) 集合内に互いに直交し合う3つのベクトルの集合が少なくとも1つは存在する.
Reduce as many elements as possible from the set of vectors X such that at least one of the conditions a) and b) does not hold while condition c) is satisfied. (Hint: It is known that you can reduce the number to 33.)
- c) There is at least one set of three mutually orthogonal vectors in the set.
まず、 X の各要素pが減らした結果の集合 X'⊆X に含まれるか否かを論理変数 X'(p) によって表すこととする。
次に、条件 a), b), c) は以下のような命題論理式で表すことができる。
- a(X', white) := ⋀(p1,p2) ∈ "orthogonal vectors of X" (X'(p1) ∧ X'(p2) → ¬white(p1) ∨ ¬white(p2))
- b(X', white) := ⋀(p1,p2,p3)∈"three mutually orthogonal vectors of X" (X'(p1) ∧ X'(p2) ∧ X'(p3) → white(p1) ∨ white(p2) ∨ white(p3))
- c(X') := ⋁(p1,p2,p3)∈"three mutually orthogonal vectors of X" (X'(p1) ∧ X'(p2) ∧ X'(p3))
すると、問題は c(X') ∧ (∀white. ¬a(X', white) ∨ ¬b(X', white)) を満たす X'(p) の割当てのうち、真になっている X'(p) が最小のものを探す問題となる。
また、「33本までは減らせる」ことがヒントとして与えられているので、 基数制約 |X'| ≤ 33 も制約条件に加える。
Totalizer符号化[1]による基数制約の符号化、Tseitin符号化[2][3]、および冠頭標準形への変換を行ってQDIMACS形式の論理式 Q2_33.qdimacs を生成し、QBFソルバcaqeを用いて解いたところ、|X'| = 33 である以下の解が得られた。
- (-√2, -1, -1)
- (-√2, -1, 0)
- (-√2, -1, 1)
- (-√2, 0, -√2)
- (-√2, 0, -1)
- (-√2, 0, 0)
- (-√2, 1, -1)
- (-√2, 1, 0)
- (-1, -√2, 0)
- (-1, -1, √2)
- (-1, 0, -√2)
- (-1, 0, 1)
- (-1, 0, √2)
- (-1, 1, -√2)
- (-1, 1, √2)
- (-1, √2, -1)
- (0, -√2, -√2)
- (0, -√2, -1)
- (0, -√2, 1)
- (0, -1, -√2)
- (0, -1, 0)
- (0, -1, 1)
- (0, 0, 1)
- (0, 1, -√2)
- (1, -√2, -1)
- (1, -√2, 0)
- (1, 1, 0)
- (1, 1, √2)
- (1, √2, -1)
- (1, √2, 1)
- (√2, -√2, 0)
- (√2, -1, -1)
- (√2, 0, -1)
次に基数制約を |X'| ≤ 32 に変更した(QDIMACSファイルはQ2_32.qdimacs)ところ、数時間程度では解を得ることが出来なかった。
プログラムでは solveQ2
関数が該当箇所である。
以下のような節グループの集まりを考える。
- グループ D = CNF(a(X', white) ∧ b(X', white))
- グループ Gp = {X'(p)} for p ∈ X
G = {Gp}p∈X の部分集合 G' ⊆ G で D ∪ ⋃G' が充足不能なものを、この問題の Group oriented Unsatisfiable Subset (GUS) と呼ぶ。
すると、
- {X' ⊆ X | c(X') ∧ (∀white. ¬a(X', white) ∨ ¬b(X', white))}
- = {X' ⊆ X | c(X') ∧ ¬(∃white. a(X', white) ∧ b(X', white))}
- ⊆ {X' ⊆ X | ¬(∃white. a(X', white) ∧ b(X', white))}
- = {X' ⊆ X | ∀X''⊆X. X' ⊆ X'' ⇒ ¬(∃white. a(X'', white) ∧ b(X'', white))}
- = {X' ⊆ X | D ∪ ⋃{Gp}p∈X' is UNSAT}.
- = {X' ⊆ X | {Gp}p∈X' is GUS}.
のように、問題の条件を満たす X' の集合は GUS の条件を満たす X' の集合に包含されるため、 GUS のサイズがすべて33以上であれば、上述の |X'| = 33 が最適解であることがわかる。
また、GUS すべてについて確認せずとも、GUS のうち極小なものである Group oriented Minimal Unsatisfiable Subset (GMUS) [4] についてのみ確認すれば十分である。
そこで、まず CAMUS アルゴリズム[5]を用いてすべての MUS のハイパーグラフの横断である MCS (Minimal Correction Subset) を列挙する。
- GCNF形式ファイル: Q2.gcnf
- 実行ログ: Q2_toysat_mcs.txt
その結果、以下のようなベクトルの部分集合(に対応するグループ)の33個のMCSが得られた。
- {(0, -1, -√2), (0, 1, √2)}
- {(-√2, 0, -1), (√2, 0, 1)}
- {(-1, √2, 1), (1, -√2, -1)}
- {(-√2, -1, 0), (√2, 1, 0)}
- {(-1, √2, -1), (1, -√2, 1)}
- {(-1, 1, -√2), (1, -1, √2)}
- {(-1, -√2, 1), (1, √2, -1)}
- {(-1, 1, √2), (1, -1, -√2)}
- {(-√2, -1, -1), (√2, 1, 1)}
- {(-1, -1, -√2), (1, 1, √2)}
- {(-1, -√2, -1), (1, √2, 1)}
- {(-1, -1, √2), (1, 1, -√2)}
- {(-√2, 1, 1), (√2, -1, -1)}
- {(-√2, -1, 1), (√2, 1, -1)}
- {(0, -√2, -1), (0, √2, 1)}
- {(0, -√2, 1), (0, √2, -1)}
- {(-√2, 1, -1), (√2, -1, 1)}
- {(-1, √2, 0), (1, -√2, 0)}
- {(-1, 0, √2), (1, 0, -√2)}
- {(-1, 0, -√2), (1, 0, √2)}
- {(-√2, 0, 1), (√2, 0, -1)}
- {(0, -1, √2), (0, 1, -√2)}
- {(-√2, 1, 0), (√2, -1, 0)}
- {(-1, -√2, 0), (1, √2, 0)}
- {(0, 0, -√2), (0, 0, -1), (0, 0, 1), (0, 0, √2)}
- {(0, -√2, 0), (0, -1, 0), (0, 1, 0), (0, √2, 0)}
- {(-√2, 0, √2), (-1, 0, 1), (1, 0, -1), (√2, 0, -√2)}
- {(-√2, 0, 0), (-1, 0, 0), (1, 0, 0), (√2, 0, 0)}
- {(-√2, 0, -√2), (-1, 0, -1), (1, 0, 1), (√2, 0, √2)}
- {(-√2, √2, 0), (-1, 1, 0), (1, -1, 0), (√2, -√2, 0)}
- {(0, -√2, -√2), (0, -1, -1), (0, 1, 1), (0, √2, √2)}
- {(-√2, -√2, 0), (-1, -1, 0), (1, 1, 0), (√2, √2, 0)}
- {(0, -√2, √2), (0, -1, 1), (0, 1, -1), (0, √2, -√2)}
ここで、これらの MCS は互いに素であるため、そのハイパーグラフ横断である各MUSは各MCSから要素を一つづつ集めたものになり、したがってすべて33要素となる。
よって、|X'| = 33 が最適解であることを示せた。
より一般的に n 次元 (n > 3) の場合に拡張してください. このとき問題は,条件 c') を満たしつつ,条件 a) と b') の少なくとも一方は成り立たないように, n 次元ベクトルの集合を見つけることとなります.
- a) 2つの直交するベクトルのうち,少なくとも1本は黒色である.
- b') 互いに直交し合うn本のベクトルのうち,少なくとも1本は白色である.
- c') 集合内に互いに直交し合う n 本のベクトルの集合が少なくとも1つは存在する.
一般の場合はとても難しいです.特定の n (> 3) に対して,このようなベクトルの集合を構成する回答も歓迎します.
More generally, extend it to the case of n dimensions (n > 3). The problem is to find a set of n-dimensional vectors such that at least one of the conditions a) and b') does not hold while condition c') is satisfied.
- a) Whenever two of the vectors are orthogonal, at least one is black.
- b') Whenever n vectors are mutually orthogonal, at least one is white.
- c') There exists at least one set of n vectors in the set that are mutually orthogonal to each other.
The general case is very difficult. The constitution of such a set of vectors for a particular n (> 3) is also welcome.
n = 4 の場合について、基数制約は加えずに問2と同様のQBFを用いたアプローチを試みた(QDIMACSファイルはQ3_4.qdimacs)が、解を得ることが出来なかった。
プログラム中の solveQ3
関数が該当箇所である。
- [1] O. Bailleux and Y. Boufkhad, “Efficient cnf encoding of boolean cardinality constraints,” in Principles and Practice of Constraint Programming – CP 2003, F. Rossi, Ed. Berlin, Heidelberg: Springer Berlin Heidelberg, 2003, pp. 108–122.
- [2] G. Tseitin, “On the complexity of derivation in propositional calculus,” Studies in Constr. Math. and Math. Logic, 1968.
- [3] D. Plaisted and S. Greenbaum, “A Structure-preserving Clause Form Translation,” in Journal on Symbolic Computation, volume 2, 1986.
- [4] Matti Järvisalo, Daniel le Berre and Olivier Roussel, “Rules of the 2011 SAT Competition,” http://www.satcompetition.org/2011/rules.pdf
- [5] M. H. Liffiton, K. A. Sakallah, “Algorithms for computing minimal unsatisfiable subsets of constraints,” Journal of Automated Reasoning 40 (1), 1–33 (Jan 2008)