Processing math: 100%

Thursday, March 24, 2016

Harmonic numbers are not integers [Solution]

The problem was to show that

Hn=nk=11k=1+12++1n

is never an integer for n>1.

Solution


There are multiple solutions. One of them uses Bertrand's postulate, which says that there is a prime between n and 2n for any n>1.

Now consider the largest prime p in 1,2,,n.

The denominator of Hn is divisible by p. The numerator has terms divisible by p, plus the term 1×2××(p1)×(p+1)××n

By Bertrand's postulate, we have that 2p>n (otherwise p won't be the largest prime).

Thus the numerator is not divisible by p. Thus Hn is not an integer.

Sunday, March 13, 2016

Number of AVL trees

AVL trees were one of the first balanced tree structures to provide O(logn) operations and do so based on height differences between left and right subtree. Look at the wiki link for an exact definition.

Can you give an algorithm to compute the number of AVL trees having exactly n nodes?

[Solution]

Friday, March 4, 2016

Harmonic numbers are not integers

A classic:

Show that

Hn=nk=11k

is never an integer, for n>1.

i.e.

1+12++1n

is never an integer for n>1.