Processing math: 100%

Sunday, June 28, 2015

How many non-decreasing functions [Solutions]

The problem was to find the number of ordered pairs x=(x1,x2,,xn) such that xixi+1 and 1xim for all i, xi being a natural number.

Solution

We will present two solutions.

Solution 1)

The first solution uses what is called the Stars and Bars approach.

For each k{1,2,,m} you look at exactly how many xi=k. Call this number yk (note, it could be 0).

We must have that y1+y2++ym=n, with 0yin.

Now given a y=(y1,y2,,ym) we can easily map this back to the x=(x1,x2,,xn) from which it was created.

Thus it is enough to count the number of solutions to y1+y2++ym=n, with 0yin.

The way to look at this is to consider n stars, and m1 vertical bars. Finding a solution to the above equation is equivalent to placing the m1 bars among the n stars. The number of stars to the left of the leftmost bar is y1, the one next to it is y2 and so on.

The number of ways to do this is to select the position of the stars among a total n+m1 spots: (n+m1n)

Solution 2)

The second solution I find particularly elegant.

Suppose instead of xixi+1, we had the condition xixi+1 (i.e. strictly increasing).

Then it is easy to count: just select n among m = (mn) (and sort to get the increasing order).

We can reduce our problem to the strictly increasing case.

Set zi=xi+i1.

Now we have that zi<zi+1 (strictly increasing) and that 1zim+n1.

Thus the answer is (m+n1n)

Saturday, June 27, 2015

Sorting with reversals

You are given an array A of n elements, each element being either 0 or 1 or 2.

You want to sort the array.

The catch is, the only write operation you can do on the array is pick two any two indices ij, and reverse the contiguous portion of the array from A[i] to A[j], i.e. after the operation, A[i] and A[j] are swapped, A[i+1] and A[j1] are swapped, ,A[i+k] and A[jk] are swapped (where k(i+j)/2).

Let's say we call this operation the splice-reverse.

Can you sort the array using O(n) splice-reverses?

[Solution. Also see comments below]

Thursday, June 25, 2015

How many non-decreasing functions?

How many non-decreasing functions exist which map {1,2,,n}{1,2,,m}?

i.e

How many ordered pairs (x1,x2,,xn) exist such that

xixi+1 and 1xim for all i?

[Solution]

Sunday, June 21, 2015

Bless partner, curse partner.

You are South and hold QJ9642, 2, 5, AQ872, with E/W vul.

Your LHO is the dealer and opens 1H. Partner doubles and RHO bids 4H. You bid 4S, wondering if you missed a slam.

LHO passes, and bless partner, who bids 6S.

LHO lead the DA and you see

IMPS
E/W 
 The Dummy
♠ AKT73
♥ AQ
♦ KJT
♣ J94

     


 You
♠ QJ9642
♥ 2
♦ 5
♣ AQ872

W N E S
1HX4H4S
P6SPP
P

Curse partner. Overbid again.

While you are cursing partner, LHO goes into a tank, and emerges with a low club! Now you have a chance. Bless partner?

You play the 9, covered by the T, which you win with the Q.

Now LHO likely has the HK, DQ and the CK for his opening bid. In that case you have him, but have to time the hand correctly.

You should play all the trumps, throwing a club from dummy, then play a heart to the Q, and cash the HA and DK coming down to the DJ and CJ in the dummy and CA8 in hand.

West is squeezed in the minors.


Thursday, June 18, 2015

Sum involving golden ratio [Solution]

The problem was to find

Sn=nk=1[kφ]

where φ is the golden ratio and [x] is the integer part of x.

The challenge was to do it using polynomial in logn time.

Solution

If you look at the numbers of the form ak=[kφ] and *not* of the form [kφ], you will notice a pattern.

The pattern is as follows:

If ak=[kφ] and bk=ak+k, then we have that {a1,a2,}{b1,b2,}=N

i.e, the numbers not of the form [kφ], are precisely of the form [kφ]+k.

This observation can be proved using Beatty's theorem (and is not that difficult to prove).

Now, if you consider the numbers {1,2,,an} then these can be split into two disjoint sets {a1,a2,,an} and {b1,b2,,bm} for some m.

Thus we have that

1+2++an=Sn+mk=1bm=Sn+Sm+m(m+1)/2

Thus

Sn=n(n+1)/2m(m+1)/2Sm

which is a recursive formula for Sn. It can be shown that m=θ(n), and thus this recursive formula gives us a polynomial in logn time algorithm to compute Sn.

All we need to do is compute m. I will leave that to you.

Monday, June 15, 2015

Limit everywhere function [Solution]

The problem was to find a function f whose limit g exists everywhere (i.e. limtxf(t)=g(x)) and f(x)=2g(x)sinx.

The key is to realize that g must continuous!

(In fact one can show that f is continuous almost everywhere, but that does not help this problem immediately).

If g is continuous then, the functional equation implies that f is too, and the result that f(x)=sinx follows easily.

To prove g is continuous at c we need to show that given an ϵ>0, there is a δ>0, such that |g(x)g(c)|<ϵx,0<|xc|<δ 

Now we have that there is some δ such that

|f(x)g(c)|<ϵ2,x,0<|xc|<δ

Also for any x1 such that 0<|x1c|<δ we have a δ1 such that |f(x)g(x1)|<ϵ2x,0<|xx1|<δ1

Thus we can find an x such that for any 0<|x1c|<δ we have the above two to be true, and hence adding them gives us that

|g(x1)g(c)|<ϵx1,0<|x1c|<δ

Monday, June 8, 2015

Finding a sum involving the golden ratio

This is a math oriented algorithms puzzle.

Let φ be the golden ratio: 1+52.

Consider the following sum

Sn=[φ]+[2φ]++[nφ]

i.e

Sn=nk=1[kφ]

where [x] is the integer part of x.

Can you give an algorithm to compute Sn that takes a polynomial in logn time?

[Solution]

Friday, June 5, 2015

Limit everywhere function

Here is a strange math problem.

Suppose f:[0,1][0,1] is function whose limit exists everywhere.

i.e g(t)=limxtf(x) is well defined, and gives rise to another function.

Now suppose f and the limit function g satisfy

f(x)=2g(x)sinxx[0,1]

Find all such f.

[Solution]