Could use a quick reality check on the definition of left-shift (q6b); there seems to be more than one consistent interpretation.
What would the following set become with i=1, j=3?
{ 011, 101, 111, 001 }
Thanks. :-)
Subscribe to:
Post Comments (Atom)
4 comments:
According to what I understood, it should become
{ 110, 101, 111, 100 }
So is the "shift" just a swap? I would have interpreted shift to mean
011 -> 101
Anon. is correct:
011 -> 110
101 -> doesn't change
111 -> doesn't change
001 -> 100
In set language, each A is replaced by A \setminus {j} \cup {i} (as long as that's not already in the family).
Thanks, now it's clear.
Post a Comment