sat solvers and computer algebra systems a powerful
play

SAT Solvers and Computer Algebra Systems: A Powerful Combination for - PowerPoint PPT Presentation

SAT Solvers and Computer Algebra Systems: A Powerful Combination for Mathematics Curtis Bright 1 Ilias Kotsireas 2 Vijay Ganesh 1 1 University of Waterloo 2 Wilfrid Laurier University The 29th International Conference on Computer Science and


  1. SAT Solvers and Computer Algebra Systems: A Powerful Combination for Mathematics Curtis Bright 1 Ilias Kotsireas 2 Vijay Ganesh 1 1 University of Waterloo 2 Wilfrid Laurier University The 29th International Conference on Computer Science and Software Engineering November 4, 2019 1/21

  2. SAT: Boolean satisfiability problem 2/21

  3. SAT: Boolean satisfiability problem SAT solvers: Clever brute force 2/21

  4. Effectiveness of SAT solvers Many problems that have nothing to do with logic can be effectively solved by reducing them to Boolean logic and using a SAT solver. 3/21

  5. Effectiveness of SAT solvers Many problems that have nothing to do with logic can be effectively solved by reducing them to Boolean logic and using a SAT solver. Limitations of SAT solvers SAT solvers lack mathematical understanding beyond the most basic logical inferences and will fail on some trivial tiny problems. 3/21

  6. CAS: Computer algebra system 4/21

  7. CAS: Computer algebra system Symbolic mathematical computing 4/21

  8. Effectiveness of CAS Computer algebra systems can perform calculations and manipulate expressions from many branches of mathematics. 5/21

  9. Effectiveness of CAS Computer algebra systems can perform calculations and manipulate expressions from many branches of mathematics. Limitations of CAS CASs are not optimized to do large (i.e., exponential) searches. 5/21

  10. SAT + CAS Search + Knowledge 6/21

  11. MathCheck Our SAT+CAS system MathCheck has constructed over 100,000 various combinatorial objects. For example, this {± 1 } -matrix with pairwise orthogonal rows: uwaterloo.ca/mathcheck 7/21

  12. Results of MathCheck Verified the even Williamson conjecture up to order 70. Found the smallest counterexample of the Williamson conjecture. Found three new counterexamples to the good matrix conjecture. Verified the best matrix conjecture up to order 57. Verified conjectures about complex Golay sequences up to length 28. Verified the Ruskey–Savage conjecture up to order five. Verified the Norine conjecture up to order six. Verified the nonexistence of weight 15 and 16 codewords in a projective plane of order ten. 8/21

  13. Williamson matrices Williamson matrices are symmetric and circulant (each row a cyclic shift of the previous row) {± 1 } -matrices A , B , C , D such that A 2 + B 2 + C 2 + D 2 is a scalar matrix. 9/21

  14. The Williamson conjecture It does, however, seem quite likely that [ . . . ] matrices of the Williamsom type, “always exist,”. . . Solomon Golomb and Leonard Baumert, 1963 10/21

  15. Counterexample Williamson matrices do not exist in order 35 and this is the smallest odd counterexample (Ðoković 1993). 11/21

  16. Even orders In 2006, Kotsireas and Koukouvinos found Williamson matrices in all even orders n ≤ 22 using a CAS. In 2016, Bright et al. found Williamson matrices in all even orders n ≤ 30 using a SAT solver. 12/21

  17. Even orders In 2006, Kotsireas and Koukouvinos found Williamson matrices in all even orders n ≤ 22 using a CAS. In 2016, Bright et al. found Williamson matrices in all even orders n ≤ 30 using a SAT solver. In 2018, Bright, Kotsireas, and Ganesh enumerated all Williamson matrices in all even orders n ≤ 70 using a SAT+CAS method. 12/21

  18. SAT encoding Let the Boolean variables a 0 , . . . , a n − 1 represent the entries of the first row of the matrix A with true representing 1 and false representing − 1. a 0 a 1 a 2 a 3 a 4 true true false false true 13/21

  19. Naive setup Encoding that Williamson matrices of order n exist SAT solver Williamson matrices or counterexample 14/21

  20. Naive setup Encoding that Williamson matrices of order n exist SAT solver Williamson matrices or counterexample This is suboptimal as SAT solvers alone will not exploit mathematical facts about Williamson matrices. 14/21

  21. System overview The SAT solver is augmented with a CAS learning method: partial satisfying assignment SAT solver CAS conflict clause 15/21

  22. System overview The SAT solver is augmented with a CAS learning method: partial satisfying assignment SAT solver CAS conflict clause expression of the form x 1 ∨ x 2 ∨ · · · ∨ x n where each x i is a variable or negated variable 15/21

  23. Power spectral density (PSD) filtering If A is a Williamson matrix then PSD A ≤ 4 n where PSD A is the maximum squared magnitude of the Fourier transform of A . 16/21

  24. Search with PSD filtering To exploit PSD filtering we need (1) an efficient method of computing the PSD values; and (2) an efficient method of searching while avoiding matrices that fail the filtering criteria. 17/21

  25. Search with PSD filtering To exploit PSD filtering we need (1) an efficient method of computing the PSD values; and (2) an efficient method of searching while avoiding matrices that fail the filtering criteria. � CASs excel at (1) and SAT solvers excel at (2). 17/21

  26. Learning method assignment to a 0 , . . . , a n − 1 SAT solver CAS 18/21

  27. Learning method assignment to a 0 , . . . , a n − 1 SAT solver CAS The CAS computes the PSD of A . If it is too large. . . 18/21

  28. Learning method assignment to a 0 , . . . , a n − 1 SAT solver CAS � ¬ a i a i true in assign The CAS computes the PSD of A . If it is too large. . . . . . a conflict clause is learned. 18/21

  29. Results Over 100,000 sets of Williamson matrices were found in all even orders up to order 70. 35 is in fact the smallest counterexample of the Williamson conjecture. Applying Computer Algebra Systems with SAT Solvers to the Williamson Conjecture. Journal of Symbolic Computation , 2019. 19/21

  30. Recent SAT+CAS Results Heule, Kauers, and Seidl found many new algorithms for 3 × 3 matrix multiplication. A family of schemes for multiplying 3 × 3 matrices with 23 coefficient multiplications. ACM Communications in Computer Algebra , 2019. Kaufmann, Biere, and Kauers verified Boolean arithmetic circuits. Verifying Large Multipliers by Combining SAT and Computer Algebra. Conference on Formal Methods in Computer Aided Design , 2019. 20/21

  31. Conclusion The SAT+CAS paradigm is currently the fastest way of performing searches for certain combinatorial objects. 21/21

  32. Conclusion The SAT+CAS paradigm is currently the fastest way of performing searches for certain combinatorial objects. Moreover, the code tends to be simpler: no need to write and optimize a special-purpose search algorithm. 21/21

  33. Conclusion The SAT+CAS paradigm is currently the fastest way of performing searches for certain combinatorial objects. Moreover, the code tends to be simpler: no need to write and optimize a special-purpose search algorithm. The main difficulty lies in setting up and tuning the learning method, requiring expertise in both SAT solvers and the problem domain. 21/21

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