I haven't learned this in programming class before, but now I need to know it. What are some good resources for learning these numbers and how to convert them? I pretty much am going to memorise these like the times table.
feedback
|
|
In our everyday decimal system, the base number, or radix is The significance of a digit is Decimal number
This scheme will help us understand any number system in terms of decimal numbers. Hexadecimal system's radix is
We have just converted the number In binary system, the radix is
Octal system - same thing, radix is
So, to do a conversion between number systems is to simply change the radix. To learn about bitwise operators, see http://www.eskimo.com/~scs/cclass/int/sx4ab.html. | |||||||||
feedback
|
|
This: http://members.tripod.com/numeric_systems/ seems like a good start. | ||||
|
feedback
|
|
Use Google:
The fundamental concept of number systems is this: a number is the sum of each of its digits times its base raised to the power of the position of the number. Hex, decimal, octal, and binary are all "bases" of number systems, but they count the same thing. You know decimal already, so it is the easiest to explain:
This exact principle applies to every base system. Binary:
Hexadecimal (hex):
Hex is really the only common base that isn't intuitively obvious, because it uses alpha characters to describe the values 10,11,12,13,14, and 15, using the letters a,b,c,d,e, and f respectively, instead. We use binary, octal, and hex because binary is the language of computers (remember, a digital wire can either have current or not have current (values 1 or 0)). Each single hex character describes four binary digits exactly, while an octal character describes 3 binary digits. Hex is used much more often than octal.
Capitalization of hexadecimal numbers isn't important. The most important thing for you to memorize in terms of number systems is the above table. You should usually use Google when converting long hexadecimal or binary numbers to decimal, but if you know the table above then you won't need Google for many short strings. As an exercise, I also recommend that you write conversion methods in the language of your choice to convert from one base system to another. They are simple iterators and will help solidify the concepts in your head. I love writing them like this: Now, any time you see a hex number in the form | |||||||||||||||
feedback
|
|
Learning to convert number bases (also known as radixes) is much easier with a radix conversion tool that does all the hard work for you. That way you can learn quickly by converting a bunch of numbers to and from different radixes, and see right away the result of the conversion. Use this radix converter -- http://www.sooeet.com/math/base-converter.php to convert a list of decimal numbers to binary, octal, and hexadecimal (one number at a time). Here are two lists of decimal numbers to get you started: 1, 2, 4, 8, 16, 32, 64, 128, 256, 512, 1024, 2048, 4096, 8192, 16384, 32768, 65536 0, 1, 3, 7, 15, 31, 63, 127, 255, 511, 1023, 2047, 4095, 8191, 16383, 32767, 65535 The two lists look similar, but produce very different results when you convert them to binary, octal, and hexadecimal. Try it and see. To use this number base converter, type a number, or copy and paste any number from the above lists, into the "Base-10" box, and press Enter or Return on your keyboard. The number you entered is converted to binary (base-2), octal (base-8), and hexadecimal (base-16), plus many other number bases (radixes), from base-2 and base-36. If you want to better understand radix conversion, read the help pop-ups next to each radix box, to learn about the internal workings of each radix. Now, try changing the binary, octal, and hex numbers that you got from converting the above lists, by replacing binary, octal, or hex "digits". For example: Decimal 15 = binary 1111 Now, in the binary result (1111), replace any of the 1 binary digits (bits), with a zero (0) and press Enter or Return on your keyboard. In this example: Binary 1101 = decimal 13 You can see that the second bit from the right in a binary number has a weight of 2 decimal. Keep experimenting like this, with decimal, binary, octal, and hexadecimal number conversions, and you will soon master the subject. | |||
|
feedback
|
|
Converting between binary, octal, and hex is pretty easy.
These are easy because the radixes for binary, octal, and hex are all powers of 2. The trick is going between decimal and the other three, because 10 (the radix for decimal) has that pesky factor of 5. Several other answers show how to convert from binary, octal, and hex to decimal. The algorithm I was taught to go from decimal to another radix is to continually divide by the radix and read off the remainders as the answer going right to left. For instance, here's how to express 227 in hex:
so the answer is E3. | |||
|
feedback
|
|
Binary systems are those systems in which numeric data is represented with the help of two numbers/symbols i.e 0 & 1 only. In binary number system,also known as base 2 system or radix 2, the most common forms in which a number is represented are; A number enclosed in brackets with a subscript of ‘2’ e.g decimal number 3 can be represented simply in binary as (011) 2 or (011) 2 Without brackets (011)2. The binary number system has a vast scope as it is used in logic gates, the base of every digital electronic system. Read More about Binary System here | |||
|
feedback
|