Satisfiability problem

Creator
Creator
Seonglae ChoSeonglae Cho
Created
Created
2023 Dec 5 6:11
Editor
Edited
Edited
2023 Dec 19 3:41

SAT, Boolean Satisfiability problem, B-SAT

논리식이 주어졌을 때, 이 논리식을 참으로 만들 수 있는 변수들의 값을 찾는 문제
  • Problem - Is satisfiable?
Satisfiability problem Notion
 
 
 
Boolean satisfiability problem
In logic and computer science, the Boolean satisfiability problem (sometimes called propositional satisfiability problem and abbreviated SATISFIABILITY, SAT or B-SAT) is the problem of determining if there exists an interpretation that satisfies a given Boolean formula. In other words, it asks whether the variables of a given Boolean formula can be consistently replaced by the values TRUE or FALSE in such a way that the formula evaluates to TRUE. If this is the case, the formula is called satisfiable. On the other hand, if no such assignment exists, the function expressed by the formula is FALSE for all possible variable assignments and the formula is unsatisfiable. For example, the formula "a AND NOT b" is satisfiable because one can find the values a = TRUE and b = FALSE, which make (a AND NOT b) = TRUE. In contrast, "a AND NOT a" is unsatisfiable.
2-SAT 문제(2-Satisfiability Problem) (수정: 2019-11-16)
안녕하세요. 이번에 강의할 내용은 2-SAT(2-Satisfiability)이라는 좀 생소할 수 있는 내용입니다! 이...
2-SAT 문제(2-Satisfiability Problem) (수정: 2019-11-16)
 
 
 

Recommendations