phd research proposal
play

PhD Research Proposal A SAT+CAS system for checking math conjectures - PowerPoint PPT Presentation

PhD Research Proposal A SAT+CAS system for checking math conjectures Curtis Bright University of Waterloo March 14, 2016 1 / 50 Motivation The research areas of SMT [SAT-Modulo-Theories] solving and symbolic computation are quite


  1. PhD Research Proposal A SAT+CAS system for checking math conjectures Curtis Bright University of Waterloo March 14, 2016 1 / 50

  2. Motivation The research areas of SMT [SAT-Modulo-Theories] solving and symbolic computation are quite disconnected. On the one hand, SMT solving has its strength in efficient techniques for exploring Boolean structures, learning, combining solving techniques, and developing dedicated heuristics, but its current focus lies on easier theories and it makes use of symbolic computation results only in a rather naive way. Erica Ábrahám 1 1 Building bridges between symbolic computation and satisfiability checking. ISSAC 2015 . 2 / 50

  3. Satisfiability checking Problem statement Given a logical formula, determine if it is satisfiable. ◮ A logical formula is an expression involving Boolean variables and logical connectives such as ∧ , ∨ , ¬ . ◮ A formula is satisfiable if there exists an assignment to the variables which make the formula true. 3 / 50

  4. Satisfiability checking Example Is ( x ∨ y ∨ ¬ z ) ∧ ( ¬ x ∨ ¬ y ) ∧ z satisfiable? 4 / 50

  5. Satisfiability checking Example Is ( x ∨ y ∨ ¬ z ) ∧ ( ¬ x ∨ ¬ y ) ∧ z satisfiable? Yes, as shown by a tree of possible assignments: x T F y y T F T F z z z z T F T F T F T F � � � � � � � � 4 / 50

  6. DPLL algorithm ◮ Deduce: Simplify clauses to detect conflicts and infer new values of variables. ◮ Decide: Choose an unassigned variable and assign it a value. ◮ Resolve: If a conflict occurs, learn a clause prohibiting the current assignment and backjump (undo variable choices leading to the conflict). Input Decide Deduce Backjump no no Top Level Done? Conflict? Resolve no yes Conflict? yes yes Return SAT Return UNSAT 5 / 50

  7. DPLL algorithm Example Is ( x ∨ y ∨ ¬ z ) ∧ ( ¬ x ∨ ¬ y ∨ ¬ u ) ∧ z ∧ ( ¬ y ∨ u ) satisfiable? Input Decide Deduce Backjump no no Top Level Done? Conflict? Resolve no yes Conflict? yes yes Return SAT Return UNSAT 6 / 50

  8. DPLL algorithm Example Is ( x ∨ y ∨ ¬ z ) ∧ ( ¬ x ∨ ¬ y ∨ ¬ u ) ∧ z ∧ ( ¬ y ∨ u ) satisfiable? Initial clauses Input Decide Deduce Backjump ◮ x ∨ y ∨ ¬ z no no ◮ ¬ x ∨ ¬ y ∨ ¬ u Top Level Done? Conflict? Resolve no yes Conflict? ◮ z yes yes Return SAT Return UNSAT ◮ ¬ y ∨ u 6 / 50

  9. DPLL algorithm Example Is ( x ∨ y ∨ ¬ z ) ∧ ( ¬ x ∨ ¬ y ∨ ¬ u ) ∧ z ∧ ( ¬ y ∨ u ) satisfiable? Initial clauses Input Decide Deduce Backjump ◮ x ∨ y ∨ ¬ z no no ◮ ¬ x ∨ ¬ y ∨ ¬ u Top Level Done? Conflict? Resolve no yes Conflict? ◮ z yes yes Return SAT Return UNSAT ◮ ¬ y ∨ u Deduce From clause 3, z must be true. Simplified clauses: ◮ x ∨ y ◮ ¬ x ∨ ¬ y ∨ ¬ u ◮ ¬ y ∨ u 6 / 50

  10. DPLL algorithm Decide Choose x to be true. Input ◮ x ∨ y Decide Deduce Backjump no no ◮ ¬ x ∨ ¬ y ∨ ¬ u Top Level Done? Conflict? Resolve no yes Conflict? ◮ ¬ y ∨ u yes yes Return SAT Return UNSAT 7 / 50

  11. DPLL algorithm Decide Choose x to be true. Input ◮ x ∨ y Decide Deduce Backjump no no ◮ ¬ x ∨ ¬ y ∨ ¬ u Top Level Done? Conflict? Resolve no yes Conflict? ◮ ¬ y ∨ u yes yes Return SAT Return UNSAT Deduce Propagate the fact that x is true. Simplified clauses: ◮ ¬ y ∨ ¬ u ◮ ¬ y ∨ u 7 / 50

  12. DPLL algorithm Decide Input Choose y to be true. Decide Deduce Backjump no ◮ ¬ y ∨ ¬ u no Top Level Done? Conflict? Resolve no yes Conflict? ◮ ¬ y ∨ u yes yes Return SAT Return UNSAT 8 / 50

  13. DPLL algorithm Decide Input Choose y to be true. Decide Deduce Backjump no ◮ ¬ y ∨ ¬ u no Top Level Done? Conflict? Resolve no yes Conflict? ◮ ¬ y ∨ u yes yes Return SAT Return UNSAT Deduce Propagate the fact that y is true. Simplified clauses: ◮ ¬ u ◮ u 8 / 50

  14. DPLL algorithm Decide Input Choose y to be true. Decide Deduce Backjump no ◮ ¬ y ∨ ¬ u no Top Level Done? Conflict? Resolve no yes Conflict? ◮ ¬ y ∨ u yes yes Return SAT Return UNSAT Deduce Propagate the fact that y is true. Simplified clauses: ◮ ¬ u ◮ u Resolve Conflict: No way to choose u . At least one variable assignment must change, so we learn the clause ¬ z ∨ ¬ x ∨ ¬ y . 8 / 50

  15. DPLL algorithm Backjump Clauses after undoing the last variable choice: ◮ ¬ y ∨ ¬ u Input ◮ ¬ y ∨ u Decide Deduce Backjump no no ◮ ¬ z ∨ ¬ x ∨ ¬ y Top Level Done? Conflict? Resolve no yes Conflict? yes yes Return SAT Return UNSAT 9 / 50

  16. DPLL algorithm Backjump Clauses after undoing the last variable choice: ◮ ¬ y ∨ ¬ u Input ◮ ¬ y ∨ u Decide Deduce Backjump no no ◮ ¬ z ∨ ¬ x ∨ ¬ y Top Level Done? Conflict? Resolve no yes Conflict? yes yes Deduce Return SAT Return UNSAT Since x and z are true, clause 3 simplifies to ¬ y and y must be false. Simplified clauses: ∅ 9 / 50

  17. DPLL algorithm Backjump Clauses after undoing the last variable choice: ◮ ¬ y ∨ ¬ u Input ◮ ¬ y ∨ u Backjump Decide Deduce no no ◮ ¬ z ∨ ¬ x ∨ ¬ y Top Level Done? Conflict? Resolve no yes Conflict? yes yes Deduce Return SAT Return UNSAT Since x and z are true, clause 3 simplifies to ¬ y and y must be false. Simplified clauses: ∅ Satisfying assignment Take x true, y false, and z true. 9 / 50

  18. SAT-Modulo-Theories (SMT) It is possible to consider the satisfiability problem for different types of logical formulas, e.g., those of first-order logic over various theories. ◮ theory of strings ◮ array theory ◮ bitvector theory ◮ theories of arithmetic ◮ integer or real ◮ linear or nonlinear 10 / 50

  19. SAT-Modulo-Theories (SMT) Example Is the formula x 2 < 0 ∨ x 2 > 1 satisfiable in the integer theory of arithmetic? 11 / 50

  20. SAT-Modulo-Theories (SMT) Example Is the formula x 2 < 0 ∨ x 2 > 1 satisfiable in the integer theory of arithmetic? Yes, by taking x = 2. 11 / 50

  21. SMT Solvers First, translate the given formula into a propositional one: a b � �� � � �� � x 2 < 0 ∨ x 2 > 1 becomes a ∨ b A SAT solver can then find a satisfying assignment (set a true). A theory solver needs to be queried to determine if the assignment yields a solution of the original formula (and if not, why not). Here the theory solver can produce the clause ¬ a (i.e., x 2 � 0). Theory solver Clauses UNSAT + Reason/Solution Boolean abstraction SAT/Theory Input SAT solver Interface UNSAT/Solution SAT UNSAT 12 / 50

  22. The MathCheck System ◮ Uses SAT and CAS functionality to finitely verify or counterexample conjectures in mathematics 2 . ◮ Verified two conjectures in graph theory to new bounds. ◮ Similar to a SMT solver with the theory solver replaced by a CAS. CAS Graph Predicates Graph Constraints Learned clauses SAT/CAS Input SAT solver Interface UNSAT/Solution SAT UNSAT Authors Edward Zulkoski, Vijay Ganesh, Krzysztof Czarnecki 2 MathCheck : A Math Assistant via a Combination of Computer Algebra Systems and SAT Solvers. CADE 2015 . 13 / 50

  23. The MathCheck 2 System ◮ Also uses SAT and CAS functionality to finitely verify or counterexample conjectures in mathematics 3 . ◮ Used to study conjectures in combinatorial design theory about the existence of Hadamard matrices. CAS SAT instance Problem Generator SAT SAT solver result (Solution / UNSAT core) SAT UNSAT Authors Curtis Bright, Vijay Ganesh, Albert Heinle, Ilias Kotsireas, Saeed Nejati, Krzysztof Czarnecki 3 MathCheck 2: A SAT+CAS Verifier for Combinatorial Conjectures. Submitted to IJCAR 2016 . 14 / 50

  24. Contributions ◮ Demonstration of usefulness of employing SAT to combinatorial conjectures. ◮ Three general techniques for improving the search. ◮ Verification that Williamson matrices of order 35 do not exist. ◮ Description of an algorithm for finding Williamson matrices of a given order (or showing none exist). ◮ Found 160 Hadamard matrices not in the library of the CAS Magma . 15 / 50

  25. Experimental Results The result that Williamson matrices of order 35 do not exist was shown in under 9 hours of computation time on SHARCNET 4 . This was first shown by Ðoković 5 , who requested an independent verification. MathCheck 2 was also able to find Williamson matrices for all orders n < 35. 4 64-bit AMD Opteron processors running at 2.2 GHz 5 Williamson matrices of order 4 n for n = 33, 35, 39. Discrete Mathematics . 16 / 50

  26. Hadamard matrices ◮ square matrix with ± 1 entries ◮ any two distinct rows are orthogonal Example   1 1 1 1 1 − 1 1 − 1   H =   1 1 − 1 − 1     − 1 1 1 − 1 Conjecture An n × n Hadamard matrix exists for any n a multiple of 4. 17 / 50

  27. Verifying H is Hadamard When H is of order n , want to have HH T = nI n . � n Need to verify that � inner products are 0. 2 Example T       1 1 1 1 1 1 1 1 4 0 0 0 1 − 1 1 − 1 1 − 1 1 − 1 0 4 0 0       =       1 1 − 1 − 1 1 1 − 1 − 1 0 0 4 0             − 1 1 1 − 1 − 1 1 1 − 1 0 0 0 4 18 / 50

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend