362 views
0 votes
0 votes
If we use diminished radix representation then representation for 0 will be b^n-1 where b is the base so this representation is for 0 , how come we are associating +0 and -0 for this ?

Normally also we have representation for 0 , so again this b^n-1 is a representation for 0 so why to associate sign to it ?

1 Answer

Best answer
0 votes
0 votes

lets take example for all the cases. signed , unsigned , 1;s and 2's . i think they generated the system by dividing all the numbers into half,. But they even willingly can't represent +0 and -0 see this 

  10 -10 +0 -0
unsigned 1010  n/a 0000 n/a
signed 01010 11010 00000 10000
1's  01010 10101 00000 11111
2's 01010 10110 00000 00000

everything other than zero has different form except zero . so even though they thought of following the same convention it could not be followed.

selected by

Related questions

1 votes
1 votes
0 answers
2
radha gogia asked Nov 1, 2015
425 views
For a 3*3 identity matrix , we have eigen value as 1 but there is no linearly independent vector for it since if they are 3 unknowns then we shall have x=y=z=0 so then ho...
0 votes
0 votes
3 answers
3
radha gogia asked Sep 3, 2015
731 views
main( ){ int i=-4, j, num=10; j = i % -3; j = j?0: num*num; printf(“j = %d”, j); } I tried with the formula $\boxed{\displaystyle \text{Dividend} = \left(\text{Quoti...
1 votes
1 votes
1 answer
4
Anup patel asked Dec 31, 2016
668 views
Suppose we have a ripple counter then what will be the difference in output if we use 1) Positive Edge Triggered Clock pulse2) Negative Edge Triggered Clock pulse