Difference between revisions of "Manuals/calci/BINOMIAL"

From ZCubes Wiki
Jump to navigation Jump to search
 
(5 intermediate revisions by 3 users not shown)
Line 1: Line 1:
<div style="font-size:30px">'''BINOMIAL(n,k)'''</div><br/>
+
<div style="font-size:30px">'''BINOMIAL(N,K)'''</div><br/>
*<math>n</math>  is the number of items.  
+
*<math>N</math>  is the number of items.  
*<math>k </math> is the  number of selection.
+
*<math>K </math> is the  number of selection.
  
  
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  
Line 25: Line 25:
 
*Most compact  formula for the coefficient of the binomial value is Factorial formula.  
 
*Most compact  formula for the coefficient of the binomial value is Factorial formula.  
 
*Factorial formula is symmetric of the combination formula.
 
*Factorial formula is symmetric of the combination formula.
 +
 +
==ZOS==
 +
 +
*The syntax is to calculate BINOMIAL in ZOS is <math>BINOMIAL (N,K)</math>.
 +
**<math>N</math>  is the number of items.
 +
**<math>K</math> is the  number of selection.
 +
*For e.g., BINOMIAL(20..25,4)
 +
*BINOMIAL(10..14,7..8)
  
 
==Examples==
 
==Examples==
Line 32: Line 40:
 
#=BINOMIAL(12,12)=1
 
#=BINOMIAL(12,12)=1
 
#=BINOMIAL(1,-1) = 0
 
#=BINOMIAL(1,-1) = 0
 +
 +
==Related Videos==
 +
 +
{{#ev:youtube|tWIa6Dovirs|280|center|BINOMIAL}}
  
 
==See Also==
 
==See Also==
Line 38: Line 50:
  
 
==References==
 
==References==
 +
*[http://en.wikipedia.org/wiki/Binomial_distribution Binomial Distribution]
 +
*[http://en.wikipedia.org/wiki/Binomial_coefficient Binomial Coefficient]
 +
 +
 +
*[[Z_API_Functions | List of Main Z Functions]]
 +
 +
*[[ Z3 |  Z3 home ]]

Latest revision as of 14:11, 5 June 2018

BINOMIAL(N,K)


  • Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle N} is the number of items.
  • Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle K } 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 Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle \binom{n}{k}} and it is read by n choose k.
  • It is the coefficient of the Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle x^k} term in the polynomial expansion of the binomial thorem .
  • The coefficient is occur in the formula of binomial thorem:
Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle (x+y)^n=\sum _{k=0}^n \binom{n}{k} x^{n-k} y^k}
 where Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle  k\le n}
. 
  • To find the coefficient of the binomial ,we can use several methods.
  1. Recursive formula 
  2. Multiplicative formula 
  3. Factorial formula.
  • 1.Recursive Formula:
Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle \binom{n}{k}= \binom{n-1}{k-1} +\binom{n-1}{k}}
  for Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle n,k>0}
 and Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle 1\le k\le n-1}
.
  • 2. Multiplicative formula:

Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle \binom{n}{k}= \prod_{i=1}^k \frac{n+1-i}{i}}

  • 3.Factorial formula:

Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle \binom{n}{k}= \frac{n!}{k!(n-k)!}} where Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle k\le n} ,and which is zero when Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle k>n} .

  • Also for the initial values Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle \binom{n}{0}=\binom{n}{n}=1 } for Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle n\ge 0} .
  • Most compact formula for the coefficient of the binomial value is Factorial formula.
  • Factorial formula is symmetric of the combination formula.

ZOS

  • The syntax is to calculate BINOMIAL in ZOS is Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle BINOMIAL (N,K)} .
    • Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle N} is the number of items.
    • Failed to parse (MathML with SVG or PNG fallback (recommended for modern browsers and accessibility tools): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle K} is the number of selection.
  • For e.g., BINOMIAL(20..25,4)
  • BINOMIAL(10..14,7..8)

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

Related Videos

BINOMIAL

See Also

References