
I)How to convert any radix number to decimal number system ?
Any radix number to Decimal number system
where
p-> No of digits to the left of the radix.
n->No of digits to the right of the radix.
d->value of the number.
r->radix of the number.
1)Binary to Decimal conversion
Example
101112 = 1*24 + 0*23 + 1*22 + 1*21
+ 1*20 =...