I have been trying to figure out whether two numbers wud get the same 9's complement value.. I found a general equation for (r-1)'s complement from a text as : (r^n) - (r^-m) - N where r = radix or Base; n= no of digits in the integer part; m= no. of digits in the fractional part and N=Given value..
But when I apply this eqn to find 9's complement of two numbers: 0.473 and 9.473 then I get the same result for both i.e. 0.526 i.e. (10^0) - (10^-3) - 0.473 = 0.526; and (10^1) - (10^-3) - 9.473 = 0.526
Is there another solution to this since these two numbers cannot yield the same result (it shud be wrong)..??