The first digit (1)- re-write it from the real number... in this case, the real number is 1101101, so the first digit of your calculations is 1. The second digit is: the numeric system multiplied by the first digit,and to the result add the second digit from the real number. This is: 2*1+1=3. Now, the algorithm continues the same way to the end... you get the third digit by: multiply the previous digit (3) by 2 (the numeric system) and to the result add the 3th digit of your real number. This is: 2*3+0=6. |