Below you will find pages that utilize the taxonomy term “binary”
July 16, 2017
Binary Conversion
This is a method I learned recently, figured I’d write it down.
Start with the number that you’re trying to convert. Divide it by two. If the result is even, leave a zero behind and put the result to the left of the original number. If the result is odd, put the result minus the remainder to the left and leave a one behind.
Basically, even results get a 0, odd results get a 1.