Difference between revisions of "Manuals/calci/BINOMIAL"

From ZCubes Wiki
Jump to navigation Jump to search
Line 11: Line 11:
 
*It is the coefficient of the <math>x^k</math> term in the polynomial expansion of the binomial thorem <math>(1 + x)^n</math>.  
 
*It is the coefficient of the <math>x^k</math> term in the polynomial expansion of the binomial thorem <math>(1 + x)^n</math>.  
 
*The coefficient is occur in the formula of binomial thorem:
 
*The coefficient is occur in the formula of binomial thorem:
  <math>(x+y)^n=\sum _{k=0}^n \binom{n}{k} x^{n-k} y^k</math> ,where <math> k\le n</math>.  
+
  <math>(x+y)^n=\sum _{k=0}^n \binom{n}{k} x^{n-k} y^k</math> where <math> k\le n</math>.  
 
*To find the coefficient of the binomial ,we can use several methods.  
 
*To find the coefficient of the binomial ,we can use several methods.  
 
   1. Recursive formula  
 
   1. Recursive formula  

Revision as of 03:23, 24 March 2014

BINOMIAL(n,k)


  • is the number of items.
  • is the number of selection.


Description

  • This function gives the coefficent of the binomial distribution.
  • Binomial coefficient is the set of positive integer which equals the number of combinations of k items that can be selected from a set of n items.
  • The coefficients satisfy the Pascals recurrence.
  • The binomial coefficents are denoted by and it is read by n choose k.
  • It is the coefficient of the term in the polynomial expansion of the binomial thorem .
  • The coefficient is occur in the formula of binomial thorem:
 where . 
  • To find the coefficient of the binomial ,we can use several methods.
  1. Recursive formula 
  2. Multiplicative formula 
  3. Factorial formula.
  • 1.Recursive Formula:
  for  and .
  • 2. Multiplicative formula:

  • 3.Factorial formula:

where ,and which is zero when .

  • Also for the initial values for .
  • Most compact formula for the coefficient of the binomial value is Factorial formula.
  • Factorial formula is symmetric of the combination formula.

Examples

  1. =BINOMIAL(10,3)= 120
  2. =BINOMIAL(20,7)= 77520
  3. =BINOMIAL(15,0)= 1
  4. =BINOMIAL(12,12)=1
  5. =BINOMIAL(1,-1) = 0

See Also

References