| By Arun Iyer on Tuesday, November 06, 2001 - 06:16 pm: |
Can anyone explain to me what a "number in base a" means?
love arun
| By Dan Goodman on Tuesday, November 06, 2001 - 09:35 pm: |
Yup. For example, if a=10 then this is the normal way of writing a number: if the digits (in base 10) are dndn-1dn-2...d2d1d 0 then this represents the number 10ndn+10n-1dn-1+...+100d 2+10d1+d0 where each di is between 0 and 9 inclusive. Writing a number in base a means you have digits dn to d0 each between 0 and a-1 and the number represented is andn+...+d0. For example, in base 4 the number 103 means 3+4*0+42*1=3+16=19. In base 7 the number 216 means 6+7*1+49*2=111 (if my arithmetic is OK). Let me know if that explains it.
| By Arun Iyer on Wednesday, November 07, 2001 - 05:38 pm: |
I got you Dan!!!
One more thing.....does it have to do anything with the
log......?
love arun
| By Dan Goodman on Wednesday, November 07, 2001 - 10:24 pm: |
Not sure if there is much relation between this and log. The connection might be that loga is the inverse of ax and a is called the base of ax or of log. Writing numbers in base a you have terms that look like dnan so you have a being the base of an. That's all.
| By Arun Iyer on Friday, November 09, 2001 - 07:03 pm: |
Yup i got ya!!!
thanks Dan