I have a problem that consist in comparing boolean expressions ( OR is +, AND is * ). To be more precise here is an example:

I have the following expression: "A+B+C" and I want to compare it with "B+A+C". Comparing it like string is not a solution - it will tell me that the expressions don't match which is of course false. Any ideas on how to compare those expressions?

Any ideas about how can I tackle this problem? I accept any kind of suggestions but (as a note) the final code in my application will be written in C++ (C accepted of course).

An normal expression could contain also parenthesis:

(A * B * C) + D or A+B*(C+D)+X*Y

Thanks in advance,

Iulian

link|improve this question

You'll need to transform the incoming expressions to Polish Notation in order to create an Abstract Syntax Tree that can be evaluated. – Anero Jun 3 '10 at 11:46
Do you need to check whether expressions are equivalent or just produce the same result for given values of variables? – qrdl Jun 3 '10 at 11:46
@Anero A+B+C and B+C+A produce different ASTs – qrdl Jun 3 '10 at 11:48
I need to check only if the expressions are equivalent. And I have a lot of expressions. – INS Jun 3 '10 at 11:52
Is there any "NOT" operator there? – KennyTM Jun 3 '10 at 11:59
show 1 more comment
feedback

2 Answers

up vote 8 down vote accepted

I think the competing approach to exhaustive (and possibly exhausting) creation of truth tables would be to reduce all your expressions to a canonical form and compare those. For example, rewrite everything into conjunctive normal form with some rule about the ordering of symbols (eg alphabetical order within terms) and terms (eg alphabetical by first symbol in term). This of course, requires that symbol A in one expression is the same as symbol A in another.

How easy it is to write (or grab from the net) a C or C++ function for rewriting your expressions into CNF I don't know. However, there's been a lot of AI work done in C and C++ so you'll probably find something when you Google.

I'm also a little unsure about the comparative computational complexity of this approach and the truth-table approach. I strongly suspect that it's the same.

Whether you use truth tables or a canonical representation you can of course keep down the work to be done by splitting your input forms into groups based on the number of different symbols that they contain.

EDIT: On reading the other answers, in particular the suggestion to generate all truth tables and compare them, I think that @Iulian has severely underestimated the number of possible truth tables.

Suppose that we settle on RPN to write the expressions, this will avoid having to deal with brackets, and that there are 10 symbols, which means 9 (binary) operators. There will be 10! different orderings of the symbols, and 2^9 different orderings of the operators. There will therefore be 10! x 2^9 == 1,857,945,600 rows in the truth table for this expression. This does include some duplicates, any expression containing only 'and' and 'or' for instance will be the same regardless of the order of symbols. But I'm not sure I can figure this any further ...

Or am I making a big mistake ?

link|improve this answer
I think this method may have better results in my particular case. – INS Jun 3 '10 at 12:42
A truth table is a table with one row for each possible combination of input values, containing the value of the evaluated expression. There are two possible states for each input value, and the input values are independent - so there are 2**N rows in the truth table where N is the number of different input values. – caf Jun 4 '10 at 5:05
@caf: what you write is right, but @Iulian's problem would require the construction of multiple truth tables to resolve the question of whether multiple expressions are the same. I didn't make it terribly clear in my post or edit that this is what I was trying to count -- the number of rows in all the truth tables that would have to be constructed. And I'm still not sure that my figuring is correct. – High Performance Mark Jun 4 '10 at 8:11
Well, if you want to compare two expressions, you don't actually need to construct an actual truth table at all. Just iterate over all the 2**N combinations, for each combination calculate the value of expression 1 and expression 2, if they're unequal then the expressions are not equivalent. ie, it appears that the OP has two specific boolean expressions and wishes to compare those. – caf Jun 5 '10 at 1:36
feedback

You can calculate the truth table for each expression over all possible inputs then compare the truth tables.

link|improve this answer
1  
Can this be achieved without evaluating for all the possibilities? In our case we're talking about expressions containing even 20 boolean elements, which would mean 2^20 computations. The expressions are sometimes pretty complex. I would not rule out your solution by all means, but I hope to be able to do something different - less complex. – INS Jun 3 '10 at 11:49
+1 That's probably the only reliable way to do it – qrdl Jun 3 '10 at 11:50
3  
@Iulian Şerbănoiu: You could look at Disjunctive Normal Form - en.wikipedia.org/wiki/Disjunctive_normal_form - perhaps you can sort the terms and then compare. – Mark Byers Jun 3 '10 at 11:56
1  
1 048 576 calculations are not that much. – Daniel Daranas Jun 3 '10 at 12:09
@Iulian: in general you probably wouldn't need to test all 2^20 solutions, as soon as you generate a different line for the same T/F inputs the expressions are different and you can go on to the next one. – High Performance Mark Jun 3 '10 at 12:45
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.