Permutations/combinations problem

  • Context: Undergrad 
  • Thread starter Thread starter JL3
  • Start date Start date
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
1 reply · 2K views
JL3
Messages
1
Reaction score
0
I have a problem about combinations and permutations I am trying to solve. Say we have an n-dimensional vector. Each element of the vector can contain anyone of [tex]\lambda=3[/tex] values (-1, 0 or +1). Then the number of possible vectors is simply:

[tex]\lambda^n[/tex]

If we place the additional restriction that the vector must contain exactly [tex]k[/tex] non-zeros, then it becomes:

[tex]p=(\lambda-1)^{k}\times\binom{n}{k}=\frac{n!(\lambda-1)^{k}}{k!(n-k)!}[/tex]

If we change the restriction so that it must contain at most [tex]k[/tex] non-zeros and at least 1 non-zero, then it becomes:

[tex]p=\sum_{k'=1}^{k}\left[(\lambda-1)^{k'}\times\binom{n}{k'}\right]=\sum_{k'=1}^{k}\frac{n!(\lambda-1)^{k'}}{k'!(n-k')!}[/tex]

Are my equations correct? Is there a more compact way of expressing this last equation, to get rid of the summation?
 
Physics news on Phys.org
The formulas are correct.

If we want to get rid of the sum, we needed ##\binom n {k'} =\binom k {k'} \cdot r(n,k)## but the correction ##r## does also depend on ##k'##. So I guess there is no way to get rid of the sum.