------------------------------------------------------------------------------
MC logo
Right-Left Decimal to Binary
[^] Conversion Examples   [^^][^^] Binary/Boolean Main Index
------------------------------------------------------------------------------
[Binary To Decimal Conversions] [Left-Right Decimal to Binary] [Right-Left Decimal to Binary] [Binary To Hex Conversions] [Hex To Decimal Conversions] [Right-Left Hex to Binary]
Here are several examples conversions from decimal to binary using the right-to-left method. In each case, we repeatedly divide the number by two, taking the sequence of remainders as the result. The remainders are the digits of the result, generated right-to-left; the first remainder generated is the lowest binary digit.
9310 = 10111012:
0 R1
21 R0
22 R1
25 R1
211 R1
223 R0
246 R1
293
7110 = 10001112:
0 R1
21 R0
22 R0
24 R0
28 R1
217 R1
235 R1
271
3310 = 1000012:
0 R1
21 R0
22 R0
24 R0
28 R0
216 R1
233
19610 = 110001002:
0 R1
21 R1
23 R0
26 R0
212 R0
224 R1
249 R0
298 R0
2196
22310 = 110111112:
0 R1
21 R1
23 R0
26 R1
213 R1
227 R1
255 R1
2111 R1
2223
99210 = 11111000002:
0 R1
21 R1
23 R1
27 R1
215 R1
231 R0
262 R0
2124 R0
2248 R0
2496 R0
2992