Equivalent
Equivalence relation.
Equivalent(A, B)
isTrue
iffA
andB
are bothTrue
or bothFalse
. ReturnsTrue
if all of the arguments are logically equivalent. ReturnsFalse
otherwise.Equivalent(arg1, arg2, ...)
is equivalent to(arg1 && arg2 && ...) || (!arg1 && !arg2 && ...)
.
See
Examples
If all expressions do not evaluate to True
or False
, Equivalent
returns a result in symbolic form:
Otherwise, Equivalent
returns a result in DNF
Implementation status
- ✅ - full supported