About 263,000 results
Open links in new tab
  1. arithmetic - Converting decimal (base 10) numbers to binary by ...

    24 A friend of mine had a homework assignment where he needed to convert decimal (base 10) numbers to binary. I helped him out and explained one of the ways I was taught to do this. The …

  2. How to convert decimal with fraction to a binary

    Aug 27, 2019 · Can anyone help me please. I want to know how to convert a decimal number that has fraction to binary number. For example 1,7 or 24.6 etc... I know how to convert a whole …

  3. Why do we divide or multiply by 2 when converting binary?

    May 2, 2015 · Trying to understand the fundamentals of binary rather than just following steps, I wanted to know why do we multiply by 2 to convert a decimal (0.5, 0.25) to a binary and why …

  4. How convert 1/2 to binary? - Mathematics Stack Exchange

    Feb 14, 2014 · Move the decimal point one space to the left, to get 0.1 So if you're working in base 2, and want to get 1/2, you need to do similar: write 1 in base 2, add the binary point and …

  5. How would I convert a long decimal to binary without using a …

    3 You can convert to a different power-of-two base, e.g. octal or hexadecimal, first. That's $3$ or $4$ times fewer divisions, and then you can very quickly convert to binary using a lookup table …

  6. Decimal to Binary in Rust - Code Review Stack Exchange

    Jan 6, 2019 · The point of a to_binary function is pretty much always because you for some reason want a textual representation in binary. As a quick side note, Rust already has the …

  7. Is there a rule or equation to convert decimal to binary without ...

    Apr 23, 2021 · In order to handle decimal numbers of any arbitrary size, you're still going to have to set up some kind of iterative or recursive procedure to generate all the binary digits, of …

  8. Convert the following hexadecimal representation of 2’s …

    For multiple hexadecimal digits, we can convert to binary just by concatenating the four-bit equivalents: $$178\mathrm d_ {16} = 0001\ 0111\ 1000\ 1101_2.$$ I've shown the binary …

  9. 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, …

  10. How to convert decimal with scientefic notation, to binary?

    How to convert decimal with scientefic notation, to binary? Ask Question Asked 9 years, 10 months ago Modified 5 years, 6 months ago