Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Boolean Algebra by spoty
boolean = lambda a,b,op:{"conjunction": a and b,
"disjunction": a or b,
"implication": not(a) or b,
"exclusive": a ^ b,
"equivalence": a == b}[op]
Jan. 26, 2015
Comments: