Challenge
Help design more effective microchips by solving Boolean satisfiability problems.
It's the problem of determining if there exists a truth assignment to a given Boolean formula that makes the formula true (satisfies all clauses). A Boolean formula is built from:
3-SAT is a special case of SAT where each clause is limited to exactly three literals (a literal is a variable or its negation).
SAT has a vast range of applications in science and industry in fields including computational biology, formal verification, and electronic circuit design.
For example: SAT is used in computational biology to solve the "cell formation problem" of organising a plant into cells. SAT is also heavily utilised in electronic circuit design.

Figure 1: Chips made possible by electronic circuit design