Difference between revisions of "Manuals/calci/BETADISTX"

From ZCubes Wiki
Jump to navigation Jump to search
 
(8 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
<div style="font-size:30px">'''BETADISTX(x,alpha,beta)'''</div><br/>
 
<div style="font-size:30px">'''BETADISTX(x,alpha,beta)'''</div><br/>
*<math>x</math> is the value between <math>a</math> and <math>b</math>
+
*<math>x</math> is any real number.
 
*alpha and beta are the value of the shape parameter
 
*alpha and beta are the value of the shape parameter
  
Line 7: Line 7:
 
*The beta distribution is a family of Continuous Probability Distributions defined on the interval [0, 1] parameterized by two positive shape parameters, denoted by <math>\alpha</math> and <math>\beta</math>.
 
*The beta distribution is a family of Continuous Probability Distributions defined on the interval [0, 1] parameterized by two positive shape parameters, denoted by <math>\alpha</math> and <math>\beta</math>.
 
*The Beta Distribution is also known as the Beta Distribution of the first kind.
 
*The Beta Distribution is also known as the Beta Distribution of the first kind.
*In <math>BETADIST(x,\alpha,\beta)</math>, <math>x</math> is any real number.
+
*In <math>BETADISTX(x,alpha,beta)</math>, <math>x</math> is any real number.
 
*alpha is the value of the shape parameter.
 
*alpha is the value of the shape parameter.
 
*beta is the value of the shape parameter
 
*beta is the value of the shape parameter
Line 13: Line 13:
 
<math>f(x)=\frac{x^{\alpha-1}(1-x)^{ \beta-1}}{B(\alpha,\beta)},</math> where <math>0 \le x \le 1</math>; <math>\alpha,\beta >0 </math> and <math>B(\alpha,\beta)</math> is the Beta function.
 
<math>f(x)=\frac{x^{\alpha-1}(1-x)^{ \beta-1}}{B(\alpha,\beta)},</math> where <math>0 \le x \le 1</math>; <math>\alpha,\beta >0 </math> and <math>B(\alpha,\beta)</math> is the Beta function.
 
*The formula for the Cumulative Beta Distribution is called the Incomplete Beta function ratio and it is denoted by <math>I_x</math> and is defined as :
 
*The formula for the Cumulative Beta Distribution is called the Incomplete Beta function ratio and it is denoted by <math>I_x</math> and is defined as :
<math>F(x)=I_x(\alpha,\beta)=\int_{0}^{x}\frac{t^{α−1}(1−t)^{\beta−1}dt} {B(\alpha,\beta)}</math>,  where <math>0 \le x \le 1</math> ; <math>\alpha,\beta>0</math> and <math>B(\alpha,\beta)</math> is the Beta function.
+
<math>F(x)=I_x(\alpha,\beta)</math>=<math>\int_{0}^{x}f(x)=\frac{t^{\alpha-1}(1-t)^{ \beta-1}dt}{B(\alpha,\beta)}</math>,  where <math>0 \le t \le 1</math> ; <math>\alpha,\beta>0</math> and <math>B(\alpha,\beta)</math> is the Beta function.
 
*This function will give the result as error when  
 
*This function will give the result as error when  
 
  1.Any one of the arguments are non-numeric.
 
  1.Any one of the arguments are non-numeric.
  2.<math>\alpha \le 0</math> or <math>\beta \le 0</math>
+
  2.<math>alpha \le 0</math> or <math>beta \le 0</math>
3.<math>x<a</math> ,<math>x>b</math>, or <math>a=b</math>
 
*we are not mentioning the limit values <math>a</math> and <math>b</math>,
 
*By default it will consider the Standard Cumulative Beta Distribution, a = 0 and b = 1.
 
 
 
==ZOS==
 
 
 
*The syntax is to calculate BEATDIST in ZOS is <math>BETADIST (Number,Alpha,Beta,LowerBound,UpperBound)</math>.
 
**<math>Number</math> is the value between LowerBound and UpperBound
 
**<math>alpha</math> and <math>beta</math> are the value of the shape parameter.
 
*For e.g.,BETADIST(11..13,3,5,8,14)
 
*BETADIST(33..35,5..6,10..11,30,40)
 
 
 
  
 
==Examples==
 
==Examples==
#=BETADIST(0.4,8,10) = 0.35949234293309396
+
#=BETADISTX(0.67,9,12) = 0.3102416743686678
#=BETADIST(3,5,9,2,6) = 0.20603810250759128
+
#=BETADISTX(6,34,37) = 2.576888446568541e+72
#=BETADIST(9,4,2,8,11) = 0.04526748971193415
+
#=BETADISTX(100,456,467)= NaN
#=BETADIST(5,-1,-2,4,7) = #ERROR
 
  
 
==Related Videos==
 
==Related Videos==
Line 41: Line 28:
  
 
==See Also==
 
==See Also==
 +
*[[Manuals/calci/BETADIST | BETADIST]]
 
*[[Manuals/calci/BETAINV | BETAINV]]
 
*[[Manuals/calci/BETAINV | BETAINV]]
 
*[[Manuals/calci/ALL | All Functions]]
 
*[[Manuals/calci/ALL | All Functions]]
Line 46: Line 34:
 
==References==
 
==References==
 
[http://en.wikipedia.org/wiki/Beta_distribution  Beta Distribution]
 
[http://en.wikipedia.org/wiki/Beta_distribution  Beta Distribution]
 +
 +
 +
 +
*[[Z_API_Functions | List of Main Z Functions]]
 +
 +
*[[ Z3 |  Z3 home ]]

Latest revision as of 16:01, 4 December 2018

BETADISTX(x,alpha,beta)


  • is any real number.
  • alpha and beta are the value of the shape parameter

Description

  • This function gives the Cumulative Beta Probability Density function.
  • The beta distribution is a family of Continuous Probability Distributions defined on the interval [0, 1] parameterized by two positive shape parameters, denoted by and .
  • The Beta Distribution is also known as the Beta Distribution of the first kind.
  • In , is any real number.
  • alpha is the value of the shape parameter.
  • beta is the value of the shape parameter
  • The Probability Density Function of the beta distribution is:

where ; and is the Beta function.

  • The formula for the Cumulative Beta Distribution is called the Incomplete Beta function ratio and it is denoted by and is defined as :

=, where  ; and is the Beta function.

  • This function will give the result as error when
1.Any one of the arguments are non-numeric.
2. or 

Examples

  1. =BETADISTX(0.67,9,12) = 0.3102416743686678
  2. =BETADISTX(6,34,37) = 2.576888446568541e+72
  3. =BETADISTX(100,456,467)= NaN

Related Videos

Beta Distribution

See Also

References

Beta Distribution