Sum of combinations from k to n

  • Context: Undergrad 
  • Thread starter Thread starter Ediliter
  • Start date Start date
  • Tags Tags
    Combinations Sum
Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
3 replies · 3K views
Ediliter
Messages
2
Reaction score
0
I have been trying to figure out a formula for the sum of combinations. For example:

[itex]\sum[/itex]nk=0([itex]\frac{n}{k}[/itex]) = 2n

But what if you want to sum from any arbitrary k, like 4? I've tried looking at Pascal's triangle for nice values of n and k, but haven't been able to see a pattern. I would really appreciate any help with this. I want to apply this to combinations for large n, which are impractical to compute.

Thank you in advance.
 
Physics news on Phys.org
I don't know any nice formula for [itex]\sum_{k=0}^m \binom{n}{k}[/itex] Your question made me curious and I searched the web. It apparently doesn't know a nice formula either. Perhaps if you give an example of the kind of computation you are trying to do, someone will see a way to compute the result - at least compute it on a computer.
 
The sum could be expressed in terms of the incomplete beta function, e.g. using the cdf of the binomial distribution with p=1/2.
 
For large n the binomial distribution is approximated by a normal distribution, so if you only want a close approximation you could use that.