Hi,
For shift operators manipulating positive numbers we can use the short-cut formula,
For example:
for signed right shift: x >> 3, can be solved using the formula x * (2 raised to 3)
for signed left shift: x << 3, can be solved using the formula x / (2 raised to 3)
Is there a short-cut formula to determine the following:
a. unsigned right shift (>>>

?
b. signed right or left shift manipulating negative numbers?
i.e. -5 >> 3 or -5 << 3 or -5 >> -3 or -5 << -3
Thanks in advance!