Difference between revisions of "Manuals/calci/BINOMDIST"

From ZCubes Wiki
Jump to navigation Jump to search
 
(46 intermediate revisions by 4 users not shown)
Line 1: Line 1:
<div style="font-size:30px">'''BINOMDIST (ns, ts, ps, cu)'''</div><br/>
+
<div style="font-size:30px">'''BINOMDIST (numbers, trials, probability, cumulative)'''</div><br/>
 +
 
 +
*<math>numbers</math> is the number of successes in trials.
 +
*<math>trials</math> is the number of independent trials.
 +
*<math>probability</math> is the probability of success on each trial.
 +
*<math>cumulative</math> is a logical value that determines the form of the function.
 +
**BINOMDIST(), returns the individual term binomial distribution probability.
  
*ns is the number of successes in trials.
 
*ts is the number of independent trials.
 
*ps is the probability of success on each trial
 
*cu is a logical value that determines the form of the function.
 
 
==Description==
 
==Description==
This function gives the individual element Binomial Distribution Probability.We can use this function when the following conditions are satisfied:
+
 
 +
*This function gives the individual element Binomial Distribution Probability.  
 +
*We can use this function when the following conditions are satisfied:
 
#A number of tests <math>n</math> should be fixed.
 
#A number of tests <math>n</math> should be fixed.
 
#Each test must be independent.
 
#Each test must be independent.
Line 12: Line 16:
 
#No test has  any impact on any other test.  
 
#No test has  any impact on any other test.  
 
  For example, the number of ways to achieve 2 heads in a set of four tosses is "4 choose 2".
 
  For example, the number of ways to achieve 2 heads in a set of four tosses is "4 choose 2".
*In BINOMDIST function, NS is the number of successes  in trials.
+
*In BINOMDIST function, <math>numbers</math> is the number of successes  in trials.
*TS is the number trials to be made, also NS and TS should be integers.
+
*<math>trials</math> is the number trials to be made, also <math>numbers</math> and <math>trials</math> should be integers.
*And PS is number of probability of success on each independent trials.  
+
*<math>probability</math> is the number of probability of success on each independent trials.  
*Finally CU is the logical value like TRUE or FALSE. If it is TRUE  it will give the cumulative value or FALSE it will give the exact probability.
+
*<math>cumulative</math> is the logical value like TRUE or FALSE. If it is TRUE  it will give the cumulative value or FALSE it will give the exact probability.
 
This function gives result as "Error" when  
 
This function gives result as "Error" when  
#NS and TS are not an Integer.  
+
#<math>numbers</math> and <math>trials</math> are not an Integer.  
#NS,TS and PS are not a numeric.
+
#<math>numbers,trials,probability</math> are not a numeric.
#NS<0 or NS>TS.
+
#<math>numbers < 0</math> or <math>numbers > trials</math>
#Also PS<0 or PS>1.
+
#Also <math>probability < 0</math> or <math>probability >1</math>
 +
For Example: =BINOMDIST (4, 12, 0.3, FALSE) is 0.2311
 +
 
 +
*The binomial distribution with parameters n and p, we write <math> X \tilde{} B(n, p)</math>.
 +
*The probability of getting exactly <math> k </math> successes in <math> n </math> trials is given by the Probability Mass Function:
 +
<math> b(k;n,p)=Pr(X = k) = \binom{n}{k}p^{k}(1-p)^{n-k}</math> for k=0,1,2,3...n where  <math>\binom{n}{k}</math> is the COMBIN(n,k) i.e.<math> \binom{n}{k} = \frac{n!}{k!(n-k)}!</math>
  
The binomial distribution with parameters n and p, we write <math> X \tilde{} B(n, p)</math>.
+
*The Cumulative Binomial Distribution is:<math>B(x;n,p) = Pr(X \le x) =\sum_{i=0}^x  \binom{n}{i}p^{i}(1-p)^{(n-i)}</math>
The probability of getting exactly <math> k </math> successes in <math> n </math> trials is given by the Probability Mass Function:
 
<math> b(k;n,p)=Pr(X = k) = \binom{n}{k}p^{k}(1-p)^{n-k}</math>,for k=0,1,2,3...n where (n,k)is the COMBIN(n,k) i.e.<math>(n,k)=\frac{n!}{k!(n-k)}!</math>
 
  
The Cumulative Binomial Ditrbution is:<math>B(x;n,p) = Pr(X \le x) =\sum_{n=0}^x  \binom{n}{i}p^{i}(1-p)^{(n-i)}</math>
+
==ZOS==
*It calculates the individual term Binomial Distribution Probability.
 
*ns and ts are integers.
 
*When ns or ts or ps is non-numeric BINOMDIST displays error.
 
*When ns is less than 0 or greater than t, BINOMDIST shows NaN.
 
  
When ps is less than 0 or greater than 1, BINOMDIST calculates the wrong result.
+
*The syntax is to calculate <math>BINOMDIST(numbers,trials,probability,cumulative)</math>
= BINOMDIST (4, 12, 0.3, FALSE) is 0.2311
+
*<math>numbers</math> is the number of successes in trials.
 +
*<math>trials</math> is the number of independent trials.
 +
*<math>probability</math> is the probability of success on each trial.
 +
*<math>cumulative</math> is indicating the form of the function.
 +
*For e.g.BINOMDIST(9,12,0.2,false)
 +
{{#ev:youtube|v=3PWKQiLK41M|280|center|Binomial Distribution}}
  
 
==Example==
 
==Example==
 +
 
#Toss a coin for 12 times. What is the probability of getting exactly 7 heads.
 
#Toss a coin for 12 times. What is the probability of getting exactly 7 heads.
#*Here NS=7,TS=12,and PS=1/2=0.5
+
#*Here ns=7,ts=12,and ps=1/2=0.5
#*BINOMDIST(7,12,0.5,FALSE)=0.193359375
+
 
 
#The LMB Company manufactures tires.  They claim that only .007 of LMB tires are defective.  What is the probability of finding 2 defective tires in a random sample of 50 LMB tires?
 
#The LMB Company manufactures tires.  They claim that only .007 of LMB tires are defective.  What is the probability of finding 2 defective tires in a random sample of 50 LMB tires?
#*Here NS=2,TS=50 and PS=0.007
+
#*Here ns=2,ts=50 and ps=0.007
#*BINOMDIST(2,50,0.007,false)=0.0428446
 
  
{| id="TABLE1" class="SpreadSheet blue"
+
{| id="TABLE3" class="SpreadSheet blue"
 
|- class="even"
 
|- class="even"
| class=" " |
+
| Questions
| Column1
+
! ns
| class="            " | Column2
+
! ts
| class="    " | Column3
+
! ps
| class="sshl_f" | Column4
+
! cu
 +
! Result
 +
|-
 
|- class="odd"
 
|- class="odd"
| class=" " | Row1
+
|Question 1
| class=" " | 4
+
|7
| class=" " | 12
+
|12
| class=" " | 0.3
+
|0.5(1/2)
| class="sshl_f " | FALSE
+
|FALSE
 +
|0.193359375
 
|- class="even"
 
|- class="even"
| class="  " | Row2
+
|Question2
| class="sshl_f" | 0.2311
+
|2
| class="sshl_f" |
+
|15
| class="sshl_f" |
+
|0.007
| class="sshl_f" |
+
|FALSE
 +
|0.00469597319803066
 
|- class="odd"
 
|- class="odd"
| Row3
+
|Question3
| class="sshl_fSelectTD SelectTD " |
+
|2
<div id="2Space_Handle" title="Click and Drag to resize CALCI Column/Row/Cell. It is EZ!"></div><div id="2Space_Copy" title="Click and Drag over to AutoFill other cells."></div>
+
|10
| class="sshl_f" |
+
|0.2
| class="sshl_f" |
+
|TRUE
| class="  " |
+
|0.6777995264000007
 
|- class="even"
 
|- class="even"
| Row4
+
 
| class="sshl_f" |
 
| class="sshl_f" |
 
|
 
| class=" " |
 
|- class="odd"
 
| class="sshl_f" | Row5
 
| class="sshl_f" |
 
| class="  " |
 
|
 
|
 
|- class="even"
 
| class=" " | Row6
 
| class="sshl_f" |
 
| class="sshl_f" |
 
|
 
| class="sshl_f" |
 
 
|}
 
|}
 +
 +
==Related Videos==
 +
 +
{{#ev:youtube|WWv0RUxDfbs|280|center|Binomial Distribution}}
  
 
==See Also==
 
==See Also==
 +
 +
*[[Manuals/calci/COMBIN | COMBIN]]
 +
*[[Manuals/calci/FACT | FACT]]
  
 
==References==
 
==References==
 +
[http://en.wikipedia.org/wiki/Binomial_distribution  Binomial Distribution]
 +
 +
 +
*[[Z_API_Functions | List of Main Z Functions]]
 +
 +
*[[ Z3 |  Z3 home ]]

Latest revision as of 03:30, 25 August 2020

BINOMDIST (numbers, trials, probability, cumulative)


  • is the number of successes in trials.
  •  is the number of independent trials.
  •  is the probability of success on each trial.
  • is a logical value that determines the form of the function.
    • BINOMDIST(), returns the individual term binomial distribution probability.

Description

  • This function gives the individual element Binomial Distribution Probability.
  • We can use this function when the following conditions are satisfied:
  1. A number of tests should be fixed.
  2. Each test must be independent.
  3. Each test represents only two results(Success/Failure)
  4. No test has any impact on any other test.
For example, the number of ways to achieve 2 heads in a set of four tosses is "4 choose 2".
  • In BINOMDIST function, is the number of successes in trials.
  • is the number trials to be made, also and should be integers.
  • is the number of probability of success on each independent trials.
  • is the logical value like TRUE or FALSE. If it is TRUE it will give the cumulative value or FALSE it will give the exact probability.

This function gives result as "Error" when

  1. and are not an Integer.
  2. are not a numeric.
  3. or
  4. Also or
For Example: =BINOMDIST (4, 12, 0.3, FALSE) is 0.2311
  • The binomial distribution with parameters n and p, we write .
  • The probability of getting exactly successes in trials is given by the Probability Mass Function:

for k=0,1,2,3...n where is the COMBIN(n,k) i.e.

  • The Cumulative Binomial Distribution is:

ZOS

  • The syntax is to calculate
  • is the number of successes in trials.
  • is the number of independent trials.
  • is the probability of success on each trial.
  • is indicating the form of the function.
  • For e.g.BINOMDIST(9,12,0.2,false)
Binomial Distribution

Example

  1. Toss a coin for 12 times. What is the probability of getting exactly 7 heads.
    • Here ns=7,ts=12,and ps=1/2=0.5
  1. The LMB Company manufactures tires. They claim that only .007 of LMB tires are defective. What is the probability of finding 2 defective tires in a random sample of 50 LMB tires?
    • Here ns=2,ts=50 and ps=0.007
Questions ns ts ps cu Result
Question 1 7 12 0.5(1/2) FALSE 0.193359375
Question2 2 15 0.007 FALSE 0.00469597319803066
Question3 2 10 0.2 TRUE 0.6777995264000007

Related Videos

Binomial Distribution

See Also

References

Binomial Distribution