About 21,700 results
Open links in new tab
  1. How to convert a hexadecimal number to an octal number?

    The table for doing hexadecimal<->octal directly is quite large, though, so it's usually simpler to convert to binary as an intermediate form. It is also possible to do the conversion directly by performing …

  2. arithmetic - How to fast convert from Octal to Hexadecimal ...

    Apr 13, 2017 · There has been a similar question before: How to convert a hexadecimal number to an octal number? But, in my case I need an Algorithm to directly convert a number from Octal to …

  3. number systems - Negative decimal to other base conversion ...

    I'm trying to learn on how to convert a negative decimal number (with fraction) to binary, octal and hexadecimal. So, base 10: -89.3125 Here is what I did to convert this to binary: -89= 1011001 (

  4. Hexadecimal to Octal and Vice Versa - Mathematics Stack Exchange

    Oct 27, 2013 · One strategy is to just convert to decimal and back, but a much better strategy is to remember that in hexadecimal each digit corresponds to four binary digits ($2^4=16$) and in octal …

  5. General rule of thumb to convert between number systems.

    Decimal Octal Hexadecimal Binary I know if I want to convert from octal to hexadecimal, I first convert the octal number to binary with groups of 3 bits and then I regroup the binary number to groups of 4 …

  6. algebra precalculus - Conversion from binary fraction to octal ...

    Jan 28, 2012 · In a very similar way, we can convert from Hexadecimal to binary, and binary to hexadecimal, by grouping into chunks of $4$. (Hexadecimal is base $16=2^4$)

  7. number systems - converting to octal, hexadecimal and binary ...

    May 20, 2015 · Work on converting a decimal integer to binary. Then octal & hexadecimal follow just by grouping the digits in groups of 3 or 4 respectively. To convert to binary, repeatedly divide by 2 and …

  8. Most efficient mental way to convert Decimal to Hexadecimal

    Others convert the decimal into binary and then convert that binary into hexadecimal. One I am quite curious of is a method where the decimal is converted into octal, and the octal to binary, and the …

  9. Hexadecimal value of a negative number? - Mathematics Stack Exchange

    Jun 1, 2013 · They are using two's complement notation to represent negative numbers. To get it, you start with your value, express it in binary, change all the 0's to 1's and vice versa, then add 1. You …

  10. Converting binary to hexadecimal and octal

    Mar 12, 2022 · 1 I’ve noticed a grouping method when converting from binary to hexadecimal and binary to octal. When converting from binary to octal, my math book says to group the binary numbers into …