vote up -1 vote down star

I have 4 binary bits

Bit 3 Bit 2 Bit 1 Bit 0

Normally the answer is simple: 2^4, or 16 different combinations; and it would looks something like the following:

0000 0001 0010 0011 0100 0101 0110 0111 1000 1001 1010 1011 1100 1101 1110 1111

However, The LSB (Bit 0) changes state every iteration

I need an algorithm where the state of a bit only changes once through all the iterations; i.e, I need all my bits to act like the MSB (Bit 3).

Anybody have any ideas?

EDIT:

It seems that most people are converging to there being only 5 possible solutions. However this assumes there is a starting point for the value and an ending point. This doesn't matter so I'm going to give a real world scenario to better explain.

Suppose I have an digital alarm clock that gives me 4 outputs. Each output can be programmed to go on at a certain time and off at a certain time and are programmed independent of each other, eg. I can program output 1 to go on at 1 am and off at 3 am, while I can program output 2 to go on at 7 pm and off at 2 am. There are no restrictions to how long each output can stay on.

Now I want to hook this alarm clock to a computer and get as close as possible to the current correct time. i.e If the clock says the time is 2:15 pm, my computer knows that the alarm is within the 12 pm to 6 pm range for example. I want to be able to get the smallest possible range. Whats the smallest possible range I can get?

flag

This is a very interesting problem. I'm trying to figure it out now, I like challenges. =) Do you know if it is possible, or is it a prove/disprove? – Andrei Krotkov Jan 16 '09 at 14:56
Bits are normally numbered in a way that LSB is bit 0, let me edit that for you. :) – Bombe Jan 16 '09 at 14:56
@Andrei: I have come up with a solution, but didn't state it in the question cause I want to see what other people come up with. I actually have to use this in some computer interfacing. – darudude Jan 16 '09 at 15:34
Does the computer have its own internal clock? If so, then it knows what time it is, and doesn't need the alarm clock. If it doesn't, then how do 4 bits from the alarm clock give the computer any info about time? – mbeckish Jan 16 '09 at 15:54
Also, you originally stated that each bit can change only once, but in your "clock" example, each bit changes twice. For example, originally off, on at 1am, off again at 3am. – mbeckish Jan 16 '09 at 15:56
show 2 more comments

8 Answers

vote up 8 vote down check
  1. There are 4 bits.
  2. Each bit may change state only once.
  3. For each new value, at least one of the bits must have changed state from the previous value.

Therefore, you can have at most 4 state changes, and at most 5 different values.

Example:

0000 -> 0001 -> 0011 -> 0111 -> 1111

Edit:

Very well, let's restate from what you mean rather than from what you say.

  1. There are 4 bits.
  2. Each bit may change state only twice. (once from 0 to 1, and once from 1 to 0)
  3. For each new value, at least one of the bits must have changed state from the previous value.

Therefore, you can have at most 8 state changes, and at most 8 different values (since the last state change necessarily brings all bits back to their initial state)

Example:

0000 -> 0001 -> 0011 -> 0111 -> 1111 -> 1110 -> 1100 -> 1000 -> 0000

So, by setting the outputs for: 3 AM - 3 PM, 6 AM - 6 PM, 9 AM - 9 PM and noon - midnight, you can determine which 3-hour period it is from the outputs. I'd suggest plugging wires into the visual output instead.

link|flag
Please look at the Gray Code, as Jon Skeet suggests. – Lasse V. Karlsen Jan 16 '09 at 16:32
bingo! this is what I emant. I got 8 combinations as well, I was hoping I could get better. – darudude Jan 16 '09 at 16:37
vote up 1 vote down

Based on your alarm clock example I assume you need to finish on the combiation you started on, and that each bit can be cycled on then off only once, e.g.

0000 -> 0001 -> 0011 -> 0111 -> 1111 -> 1110 -> 1100 -> 1000 -> 0000

The number of steps is twice the number of bits, so with 4 bits you could get the current time to within a 3 hour range.

link|flag
I swear I did not read this before editing my answer. – zarawesome Jan 16 '09 at 16:26
vote up 0 vote down

Here is an example to how you can keep a bit from only beeing flipped once. Not knowing all the parameter of you system it is not easy to give an accurat example but here is one anyway.

char bits = 0x05;
flipp_bit(char bit_flip)
{
    static char bits_flipped=0;
    if( (bits_flipped & bit_flip) == 0)
    {
        bits_flipped |= bit_flip;
        bits ^= bit_flip;
    }
}

Flipping with this fucntion will only allow one flip on each bit.

link|flag
vote up 0 vote down

"I need an algorithm where the state of a bit only changes once through all the iterations"

If the above statement is taken literally, then there are only five states per iteration, as explained in other posts.

If the question is "How many possible sequences can be generated?", then:

Is the first state always 0000?

If not, then you have 16 possible initial states.

Does order matter?

If yes, then you have 4! = 24 possible ways to choose which bits to flip first.

So, this gives a total of 16*24 = 384 possible sequences that can be generated.

link|flag
Yes I meant the literal method – darudude Jan 16 '09 at 15:18
vote up 0 vote down

If Gamecat got you correctly, your bitmask values will be:

 1 - 1 
 2 - 1 
 4 - 1
 8 - 1
 16 - 1
 etc.
 2^i - 1

or, using shifts: (1 << i) - 1 for i in 0..

link|flag
vote up 3 vote down

I believe it is impossible to cycle though all possible bit patterns with such a restriction.

If you have an n-bit idea, you can cycle though a total of (n+1) states before having to flip a bit you've already flipped.

For example, in a 3-bit example, if you start with 111, you get

111
110
100
000

And then you're forced to flip one you've already flipped to get a new state.

link|flag
vote up 0 vote down

You want each bit to change only once?

Like:

0000 -> 0001 -> 0011 -> 0111 -> 1111

In that case you can use a simple counter where the delta is multiplied by 2 each iteration (or shift left).

link|flag
vote up 6 vote down

You want a Gray Code. Look about half way down for "Constructing an n-bit gray code".

link|flag
No, because even in the Gray Code, the LSB changes twice. Not three times, but still more than once. – Andrei Krotkov Jan 16 '09 at 14:58
Yes, I'd misread the question - but "only change each bit once" is a pretty silly restriction with a trivial solution. – Jon Skeet Jan 16 '09 at 15:46

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.