Consider the function f described below.
f:N→Nf(1)=1f(2n)=2f(n)f(2n+1)=4f(n)
Define g(n)=f(n)−f(n−1).
Is g(n) bounded? If yes, what is the maximum value that g attains? If not, give a proof of the claim.
This problem is a part of Tessellate S.T.E.M.S.
#ComputerScience
Easy Math Editor
This discussion board is a place to discuss our Daily Challenges and the math and science related to those challenges. Explanations are more than just a solution — they should explain the steps and thinking strategies that you used to obtain the solution. Comments should further the discussion of math and science.
When posting on Brilliant:
*italics*
or_italics_
**bold**
or__bold__
paragraph 1
paragraph 2
[example link](https://brilliant.org)
> This is a quote
\(
...\)
or\[
...\]
to ensure proper formatting.2 \times 3
2^{34}
a_{i-1}
\frac{2}{3}
\sqrt{2}
\sum_{i=1}^3
\sin \theta
\boxed{123}
Comments
It is not bounded since if we set n=2x+1 then f(n)=f(2x+1)=4f(2x−1)=2x+1 and f(n−1)=f(2x)=2x. Thus f(n)−f(n−1)=2x which is obviously not bounded since we can increase the value of x
Log in to reply
Nice argument. We can work out the details by proving smaller claims with induction.