Simulating bitwise AND operator

  • Thread starter Thread starter Puzzle
  • Start date Start date
  • Tags Tags
    Operator
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
4 replies · 3K views
Puzzle
Messages
2
Reaction score
0
Hello,

I have a problem where I must get value of a given binary bit in decimal number:

f(decimal_number, bit_position) = bit_value

For example, getting bit values in decimal 14 (binary 1110):

f(14, 0) = 0
f(14, 1) = 1
f(14, 2) = 1
f(14, 3) = 1

In general it's easy:

(14 & 20) >> 0 = 0
(14 & 21) >> 1 = 1
(14 & 22) >> 2 = 1
(14 & 23) >> 3 = 1

& is bitwise AND
>> is bitwise arithmetic shift right

But in specific (technical) application I cannot use bitwise operators :(
So far I managed to get rid of one of them:

(14 & 20) / (20) = 0
(14 & 21) / (21) = 1
(14 & 22) / (22) = 1
(14 & 23) / (23) = 1

But how to get rid of bitwise AND operator?

Specific application limits me to following things to play with:
+, -, *, /, (, ), square root, xy, ex, ln, log, abs, sin, cos, tan, asin, acos, atan
using floating point decimal numbers. And it has to be "single line" - cannot divide solution
to parts, use variables besides given decimal_number or use any if/else etc logic.

It does not have to be "nice" solution, any "hack" will do as long as it works. For example
"helper" constants (specific to bit position) could be used as additional input to the function.
 
Last edited:
Physics news on Phys.org
If this is unsigned integer math, using 32 bit numbers, with no overflow check:

d = decimal number
b = bit number

f(d,b) = (d × 231-b) / (231)
 
rcgldr said:
f(d,b) = (d × 231-b) / (231)

Thats a good way yes, but sadly seems that my "black box" is operating using high precision floating point values :( I think I could still implement what I need if one last obstacle could be overcome:

How to do modulo operation (reminder of division) with toolset that I mentioned?
 
rcgldr said:
f(d,b) = (d × 231-b) / (231)

Puzzle said:
Thats a good way yes, but sadly seems that my "black box" is operating using high precision floating point values.
I missed the part about floating point decimal numbers.

Puzzle said:
How to do modulo operation (reminder of division) with toolset that I mentioned?
I don't see how this could be done without a floor() function. You mentioned decimal point floating numbers, which could mean BCD (binary coded decimal) strings used for "packed decimal" in Cobol. This would be a problem. If the floating point numbers were binary based, and you knew the format and how hardware handled truncation, you could add, then subtract, a large power of 2 to remove the lower bits, but that still leaves upper bits to be cleared.
 
Last edited: