HaloO,

Xavier Noria wrote:
   {0, 1} X {{}} = {(0, {}), (1, {})}

which, you see, is different from {0, 1}. They have different elements. The fact that there's a clear mapping that sort of identifies them has nothing to do with set equality.

But X is cooperating with , in Perl 6:

  (0,1) X (()) === ((0,()),(1,())) === (0,1)

That is, X strips the outer list and comma concatenates the
inner empty list away.

With your definition X is not even associative because @a X @b X @c does
not produce a list of triples but either
    (@a X @b) X @c  === ( ((@a[0],@b[0]), @c[0]), ...)
or
     @a X (@b X @c) === ( ( @a[0], (@b[0],@c[0])), ...).
That is two lists of differently  structured pairs.


Regards, TSa.
--

The Angel of Geometry and the Devil of Algebra fight for the soul
of any mathematical being.   -- Attributed to Hermann Weyl

Reply via email to