in Digital Logic edited by
1,672 views
1 vote
1 vote
A particular number is written as $132$ in radix-$4$ representation. The same number in radix-$5$ representation is _____________.
in Digital Logic edited by
by
1.7k views

2 Answers

4 votes
4 votes
Best answer

$\left(132\right)_{4}$

= $(1*4^2 + 3*4^1 + 2*4^0)_{10}$

= $\left(30\right)_{10}$

= $\left(25 + 5 + 0\right)_{10}$ [powers of 5]

= $(1*5^2 + 1*5^1 + 0*5^0)_{10}$

= $\left(110\right)_{5}$

Answer is 110.

selected by
3 votes
3 votes

Firstly convert the base $4$ into decimal number system (Base $10$):

$(132)_4=(z)_{10} \implies 2*4^0+3*4^1+1*4^2=(30)_{10}$

Now convert $(30)_{10}$ into base $5$,dividing by $5$ we get:

$(30)_{10}=(x)_5$

$\therefore (x)_5=(110)_5$

edited by