Question: Why do I get a set with repeated elements?

When I load LinearAlgebra and give the command

{Matrix([1])} union {Matrix([1])};

I receive a set with two elements, each equal to the matrix [1]. Why does this happen? How can I eliminate this duplicate element?

Please Wait...