2023 2024 EduVark > Education Discussion > General Discussion


  #2  
January 11th, 2016, 04:23 PM
Super Moderator
 
Join Date: Mar 2012
Re: SAT NP Complete

If you want to get information about the SAT NP Complete Boolean satisfiability problem, then here I am telling you about it as you want.


Boolean satisfiability problem
In computer science, the Boolean Satisfiability Problem (sometimes called Propositional Satisfiability Problem and abbreviated as SATISFIABILITY or SAT) is the problem of determining if there exists an interpretation that satisfies a given Boolean formula.

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.


Using the laws of Boolean algebra, every propositional logic formula can be transformed into an equivalent conjunctive normal form, which may, however, be exponentially longer.

For example, transforming the formula
(x1∧y1) ∨ (x2∧y2) ∨ ... ∨ (xn∧yn) into conjunctive normal form yields (x1∨x2∨…∨xn) ∧ (y1∨x2∨…∨xn) ∧ (x1∨y2∨…∨xn) ∧ (y1∨y2∨…∨xn) ∧ ... ∧ (x1∨x2∨…∨yn) ∧ (y1∨x2∨…∨yn) ∧ (x1∨y2∨…∨yn) ∧ (y1∨y2∨…∨yn); while the former is a disjunction of n conjunctions of 2 variables, the latter consists of 2n clauses of n variables.


Here I am providing you a file, which is containing followings;

Why is SAT important?

Theoretical importance:
First NP-complete problem (Cook, 1971)

Many practical applications:

Model Checking
Automatic Test Pattern Generation
Combinational Equivalence Checking
Planning in AI
Automated Theorem Proving
Software Verification



An Example

• Inputs to SAT solvers are usually
represented in CNF
(a + b + c) (a’ + b’ + c) (a + b’ + c’) (a’ + b + c’)
Attached Files
File Type: pdf SAT NP Complete Boolean satisfiability problem.pdf (204.2 KB, 531 views)


Quick Reply
Your Username: Click here to log in

Message:
Options



All times are GMT +5. The time now is 06:15 PM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.
Content Relevant URLs by vBSEO 3.6.0

1 2 3 4 5 6 7 8