Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have two bit masks (say A and B, and I want to know which bit of A is 1 where the corresponding B bit is 0 (and viceversa).

Of course this is implementable using conditional statements, but I don't want to iterate/shift for testing all bits of the bit mask.

The logic condition which I need is not implemented (or at least, I can't see it). Using a parallel with the logic gates, I need the operator 'A doesn't imply B' (see on Wikipedia).

Is it possible to implement such operator using AND, OR, XOR operators?

share|improve this question

3 Answers

up vote 2 down vote accepted

According to the linked Wikipedia, the simplest expression is A and (not B)

share|improve this answer
aha, nice indeed :) – steabert Nov 21 '10 at 11:10

You can use:

A xor (not B)

A xor B

Analysis:

A  B  A xor B
0  0     0
0  1     1
1  0     1
1  1     0

Edit:

Changed it to a simple XOR, that gives the result that the question asks for. Perhaps the question is not correctly worded, as the solution seems too simple...

share|improve this answer
It is elegant. Interesting that negating the expression becomes (not A) xor B – Luca Nov 21 '10 at 10:39
just out of curiosity, how does this give where A is 1 and B is 0? – steabert Nov 21 '10 at 10:45
@steabert You're right. I even analysed it. Today my brain is not working. I'll be here when my neurons are connected enought. – Luca Nov 21 '10 at 10:52
Ok, I'm here. I've analysed A & !B (so I replaced the ^ with a &). – Luca Nov 21 '10 at 11:00
This is not even close to the correct function, which should only give 1 if A = 1 and B = 0. – erikkallen Nov 21 '10 at 11:00
show 5 more comments

I would say:

A AND (A XOR B)

gives you a 1 where A is 1 and B is 0.

First you detect where A an B are different, then you match with where A is 1.

share|improve this answer
That's not correct. That does not give the result 1 when A = 0 and B = 1. Note the "and viceversa" in the question. – Guffa Nov 21 '10 at 11:12
See my comment below, giving also 1 when A = 0 and B = 1 would come down to a simple XOR. The question was eventually phrased as "A doesn't imply B" and with a reference to the Wikipedia article. Also, your answer also gives 0 when A = 0 and B = 1 :D – steabert Nov 21 '10 at 11:18

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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