The algorithm puzzle was to find the integer part of (1+√2)n using only integer arithmetic, in number of operations which is polynomial in logn
[Note: the puzzle post mistakenly said time, instead of number of operations. Fixed now]
Solution
By the binomial theorem, notice that
(1+√2)n=an+bn√2
where an and bn are both integers.
Now
(an+bn√2)(1+√2)=(an+2bn)+(an+bn)√2
Thus we get the recurrence relations:
an+1=an+2bn
bn+1=an+bn
This can be written in matrix form as
[1211][anbn]=[an+1bn+1]
i.e.
A[anbn]=[an+1bn+1]
Giving us
An[a1b1]=[an+1bn+1]
An can be computed in O(logn) integer operations.
Once we have (an,bn) we can compute the integer part of an+bn√2 by computing the integer part of bn√2 using binary search for integer x such that x2<2b2n<(x+1)2 (or other algorithms) and adding that to an.
We could also solve this problem by a more straight-forward divide and conquer + memoization algorithm, like we did for Fibonacci earlier, by writing (a2n,b2n) in terms of (an,bn) etc.
[Note: the puzzle post mistakenly said time, instead of number of operations. Fixed now]
Solution
By the binomial theorem, notice that
(1+√2)n=an+bn√2
where an and bn are both integers.
Now
(an+bn√2)(1+√2)=(an+2bn)+(an+bn)√2
Thus we get the recurrence relations:
an+1=an+2bn
bn+1=an+bn
This can be written in matrix form as
[1211][anbn]=[an+1bn+1]
i.e.
A[anbn]=[an+1bn+1]
Giving us
An[a1b1]=[an+1bn+1]
An can be computed in O(logn) integer operations.
Once we have (an,bn) we can compute the integer part of an+bn√2 by computing the integer part of bn√2 using binary search for integer x such that x2<2b2n<(x+1)2 (or other algorithms) and adding that to an.
We could also solve this problem by a more straight-forward divide and conquer + memoization algorithm, like we did for Fibonacci earlier, by writing (a2n,b2n) in terms of (an,bn) etc.
No comments:
Post a Comment