Processing math: 100%

Sunday, April 19, 2015

Integer part of (1+2)n [Solution]

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+bn2


where an and bn are both integers.

Now

(an+bn2)(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+bn2 by computing the integer part of bn2 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