Bob L.
asked 01/31/16recursion for the difference between 99 and 100
Write a recursion for the difference between 99 and 100, as you move up in bases above 10 (base 11, base 12, base 13, etc.).
It should be fully simplified, and please use "n" (w/out quotes) as your variable. n should equal whichever base you're using (i. e. if you write a recursion and it happens to be n^2+2n+3, I should be able to plug in any base as n, and find out the difference between 99 and 100 for that base)
"Bases above 10? What's a base?" You may ask. Well, you would naturally count up in base 10, (1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20....), base 11 however, would be (1,2,3,4,5,6,7,8,9,A,10,11,12,13,14,15,16,17,18,19,1A,20....), base twelve adding a B, and so on and so forth. I would look carefully at what happens between 99 and 100 though, it gets interesting.
It should be fully simplified, and please use "n" (w/out quotes) as your variable. n should equal whichever base you're using (i. e. if you write a recursion and it happens to be n^2+2n+3, I should be able to plug in any base as n, and find out the difference between 99 and 100 for that base)
"Bases above 10? What's a base?" You may ask. Well, you would naturally count up in base 10, (1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20....), base 11 however, would be (1,2,3,4,5,6,7,8,9,A,10,11,12,13,14,15,16,17,18,19,1A,20....), base twelve adding a B, and so on and so forth. I would look carefully at what happens between 99 and 100 though, it gets interesting.
Use a lowercase n
For something like "eight to the power of two" please write it as 8^2
It should be simplified down into a quadratic-esk equation (ax^2 + bx + c)
For something like "eight to the power of two" please write it as 8^2
It should be simplified down into a quadratic-esk equation (ax^2 + bx + c)
More
1 Expert Answer

Arnold F. answered 01/31/16
Tutor
5
(53)
College Professor & Expert Tutor In Statistics and Calculus
I believe the question is asking for a formula for 100n - 99n in terms on n.
You should remember that any number e.g. a four digit number with the following digits in base b
a = a3 a2 a1 a0 (base b) can be written as a linear combination of powers of b.
In this case a = a0 + a1b + a2b2 + a3b3 .
Do this for 100n and 99n and see where that leads you.
Any questions? Comment back.
Still looking for help? Get the right answer, fast.
Ask a question for free
Get a free answer to a quick problem.
Most questions answered within 4 hours.
OR
Find an Online Tutor Now
Choose an expert and meet online. No packages or subscriptions, pay only for the time you need.
Darrell A.
01/31/16