I'm trying to solve what seems to be a simple math problem. I can write the problem as a for loop, but I'm not sure how to translate it into an equation. Can anyone help?
x = 10;
for(int i=0; i<3000; i++)
{
x = x^2
}
|
|
I'm trying to solve what seems to be a simple math problem. I can write the problem as a for loop, but I'm not sure how to translate it into an equation. Can anyone help?
|
||
|
|
|
x^(2^3000) where ^ means to the power of |
||
|
|
The mathematical name for the class of problem you have given is recurrence relation. A recurrence relation defines a sequence An in terms of the preceding terms An-1, An-2, etc. In your case,
As other answers have shown, creating a closed-form solution for your given example is straightforward. Solving a recurrence relation can quickly become much more difficult with seemingly simple changes to the relation:
Such a nonlinear recurrence relation may not even have a closed-form solution, depending on the value of c. (Incidentally, when used with complex numbers the above recurrence relation is at the heart of the Mandelbrot set.) |
||
|
|
|
|
is equivalent to:
|
||
|
|
|
|
You provided code, and are asking us to provide the mathematical equivalent -- so I'm going to take your code literally, and assume it's a C-like language. In that environment, ^ is the bitwise XOR operator. So after the loop x = 10, since it was XOR-ed with a constant 2 (toggling the next-to-LSB bit) an even number of times. Or was this merely pseudocode -- did you really mean exponentiation? |
||||||||
|
|
|
Something (original value of 10 in your case) will be squared 3000 times. |
||
|
|
|
|
Given it's a constant, how about just
But I suspect you want something a bit more intensional:
Or even more:
Or (if you allow slightly looser notation):
with a horizontal "} 3000" under the "...". |
||
|
|