Evaluate whether an expression is tautology or not

598 views Asked by At

I am looking for an algorithm to find whether an expression is a tautology or not ? I tried using truth table (brute force) but this is not feasible in my case.

1

There are 1 answers

0
David Eisenstat On BEST ANSWER

A formula is a tautology if and only if its negation is satisfiable. Satisfiability is an NP-hard problem, but there are many solvers that do better than brute force.