Multiplication.
All the possible products are contained in the set, so the set is closed under multiplication.
This isn't true for any of the other three standard arithmetic operations (addition, subtraction, division), and it's easy to see why.
One caveat about addition, though. The set *is* closed under addition modulo 2. Any even number
is equivalent to 0 modulo 2, i.e.
, while any odd number
is equivalent to 1 modulo 2, i.e.
.
When you add two even numbers together, you get another even number.
When you add two odd numbers together, you get an even number.
When you add an even number to an odd number, you get an odd number.
So if you represent every even number by 0 and every odd number by 1, you get the following results:
(even + even = even)
(even + odd = odd)
(odd + even = odd)
(odd + odd = even)
The same also goes for multiplication modulo 2.