Quote (MsRailgun @ Sep 20 2013 04:22pm)
That is true. But the question remains, how many times can you do it for a particular number until it reaches under, say, 3 or 2 or 1?
EDIT: PLEASE SEE MY FIXED SOLUTION ON NEXT PAGE
Let's say c is the number we want to reach
and we have number k
if we root k n times, it should be the equivalent of this
k^(1/2n)
we want to know n such that this is < c
k^(1/2n) < c
1/(2n) * log k < c
2n > 1/c * log k
n > 1/(2c) * log k
so you take the smallest n such that n is an integer and is greater than this expression.
This post was edited by zackill4 on Sep 20 2013 03:37pm