我知道Maxima可以评估逻辑表达式,例如:
false and true or not true
将评估为
false
这很好,但如何生成包含所有变量的所有解释的真值表?
例如,我想要
A and B or not B
生成一个这样的表:
| A | B | A and B or not B |
+-----+-----+--------------------+
| 0 | 0 | 1 |
| 0 | 1 | 0 |
| 1 | 0 | 1 |
| 1 | 1 | 1 |