wxMaxima比较逻辑表达式

时间:2013-03-16 12:02:10

标签: maxima

我是wxMaxima的新手,无法弄清楚如何比较两个逻辑表达式。 例如:

test1:(A and B) or C;
test2:(A or C) and (B or C);

is(test1=test2);

应该是

true

但结果是

false

我在这里做错了什么?!

1 个答案:

答案 0 :(得分:1)

您可以使用a logic algebra package

load("logic.mac");
test1:(A and B) or C;
test2:(A or C) and (B or C);
logic_equiv(test2, test1 );
(%o20)                               true