Q. 1.15

Question

Let Hk(n) be the number of vectors x1, . . . , xk for which each xi is a positive integer satisfying 1 xin and x1  x2,  , xk.


(a)Without any computations, argue that 


H1(n)=nHk(n)=j=1nHk-1(j)     k>1

Hint: How many vectors are there in which xk = j?


(b) Use the preceding recursion to compute H3(5).

Hint: First compute H2(n) for n = 1, 2, 3, 4, 5.

Step-by-Step Solution

Verified
Answer

(a) It is proved that 


H1(n)=nHk(n)=j=1nHk-1(j)     k>1.

(b) The value of H3(5)=35.

1Part (a) Step 1. Prove that H 1 ( n ) = n

We have to prove that

 H1(n)=n


H1(n)=nrefers to the ways in which one number xi is selected from n positive integers 1 through n.


We know that, 1 number can be selected from n different numbers in n ways.


Therefore,  H1(n)=n.


2Part (a) Step 2. Prove that H k ( n ) = ∑ j = 1 n H k - 1 ( j )           k > 1 .

We have to prove that Hk(n)=j=1nHk-1(j)     k>1


For k=1, we have proved that H1(n)=n.


if k=2.


H2(n) is the no. of ways of selecting any two positive numbers from 1 through n, as we know this can happen in two ways:

That is we have two numbers x1, x2 from 2 numbers.


Here, x2 is the maximum number. x2 is either 1 or 2 as there are only two members.


For x2 = 1, we need to select one number from (2-1) numbers from 1 through 1, we denote it as  H11.


For x2 = 2, we need to select one number from (2-1) numbers from 1 through 2, we denote it as H12.


So, for n = 2, H22=H11+H12


Therefore, H2n=j=1nH2-1j; k>1

So, for Hkn=Hk-11 + Hk-11 + ........ + Hk-1n


Hence it is proved that Hk(n)=j=1nHk-1(j)     k>1

3Part (b) Step 1. Find the value of H 3 ( 5 ) .


We have, Hk(n)=j=1nHk-1(j)     k>1

So, H3(5)=j=15H3-1(j)     k>1H3(5)=j=15H2-1(j)     k>1

H3(5) =H2(1) +H2(2) +H2(3) +H2(4) +H2(5) 


H2(1)=H2(1) =1

H2(2)=H2(1) + H2(1) =1+2=3

H2(3)=H2(1)+H2(2)+H2(3) = 1+2+3=6

H2(4)=H2(1)+H2(2)+H2(3) +H2(4)= 1+2+3+4=10H2(5)=H2(1)+H2(2)+H2(3)+H2(4)+H2(5)= 1+2+3+4+5=15


Therefore, H3(5) =1 +3 +6 +10 +15=35