How can I tell Mathematica that it should delete equal elements from a list, which aren't in the same order. For example
list={x == y, y == x} ;
should become {x == y.
How can I tell Mathematica that it should delete equal elements from a list, which aren't in the same order. For example
list={x == y, y == x} ;
should become {x == y.
Reduce[list]but for more complex cases you can get reductions which are not expected. – Kuba Jan 29 '16 at 15:57