Tell me more ×
Mathematics Stack Exchange is a question and answer site for people studying math at any level and professionals in related fields. It's 100% free, no registration required.

Whats the method to find the base of any given number,

eg. (121) r = (144) 8

here r and 8 is a base

So how do i find the value of r?

share|improve this question

1 Answer

up vote 1 down vote accepted

By definition $$144_8=1\cdot8^2+4\cdot8^1+4\cdot8^0=64+32+4=100\;,$$ and $$121_r=1\cdot r^2+2\cdot r^1+1\cdot r^0=r^2+2r+1\;.$$ To find $r$, just solve the quadratic equation $$r^2+2r+1=100$$ by whatever method you find most convenient; the slickest method is probably to notice that $r^2+2r+1=(r+1)^2$, so $(r+1)^2=100=10^2$.

share|improve this answer
So value of r here would be i guess, 9 ? (r+1)^2= 100 -> r+1 = 10 -> r = 10-1 -> r =9 – Kishan Thobhani Oct 20 '12 at 12:22
@Kishan: That’s right. And you can now check: $$121_9=1\cdot9^2+2\cdot9^1+1\cdot9^0=81+18+1=100\;.$$ – Brian M. Scott Oct 20 '12 at 12:27

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.