Fraction in other bases

837 Views Asked by At

How to convert a base 10 fraction into fraction in other bases?. For example base 10 fraction 17/94, How we convert this 17/94 into base 2 fraction ?

1

There are 1 best solutions below

7
On BEST ANSWER

Why not just convert the numerator and denominator to base-2 and write that as your fraction? $$ \bigg(\frac{17}{94}\bigg)_{10} = \frac{17_{10}}{94_{10}} = \frac{00010001_2}{01011110_2} = \bigg(\frac{00010001}{01011110}\bigg)_2 $$ If this is not what you are asking for, you should provide more details/context in your question.