Difference between revisions of "Manuals/calci/GAMMAINV"

From ZCubes Wiki
Jump to navigation Jump to search
(Created page with "<div id="6SpaceContent" class="zcontent" align="left"> <font size="3"><font face="Times New Roman">'''GAMMAINV''' ('''prob''',''' alpha, beta''')</font></font> <font siz...")
 
 
(14 intermediate revisions by 4 users not shown)
Line 1: Line 1:
<div id="6SpaceContent" class="zcontent" align="left">
+
<div style="font-size:30px">'''GAMMAINV (probability,alpha,beta,accuracy,somenumberofiterations)'''</div><br/>
 +
*<math>probability</math> is the probability value associated with gamma distribution
 +
*<math>alpha(\alpha)</math> & <math>beta(\beta)</math> are the values of  the shape and rate parameters.
 +
*<math> accuracy </math> gives accurate value of the solution.
 +
*<math> somenumberofiterations </math> is any positive integer.
 +
**GAMMAINV(),returns the inverse of the gamma cumulative distribution.
  
<font size="3"><font face="Times New Roman">'''GAMMAINV''' ('''prob''',''' alpha, beta''')</font></font>
+
==Description==
 +
*This function gives the inverse value of Cumulative Gamma Probability Distribution.
 +
*This  distribution is the Continuous Probability Distribution on the positive real line and it is of the reciprocal of a variable distributed according to the gamma distribution with two parameters <math>\alpha</math> & <math>\beta</math>.
 +
*It is used in Bayesian statistics.
 +
*In <math>GAMMAINV (probability,alpha,beta,accuracy,somenumberofiterations)</math> , <math> probability </math> is the probability value associated with Gamma Distribution,<math>alpha</math> is called shape parameter and <math>beta</math> is the rate parameter of the distribution.
 +
*If <math>GAMMADIST (x,alpha,beta,cumulative,accuracy)=prob</math>, then <math>GAMMAINV (probability,alpha,beta,accuracy,somenumberofiterations)= x</math>.
 +
*GAMMAINV use the iterating method to find the value of <math>x</math>.
 +
*Suppose the iteration has not converged after 100 searches, then the function gives the error result.
 +
*This function will give the error result when 
 +
1.Any one of the arguments are non-numeric
 +
2.<math>alpha \le 0 </math> or <math>beta \le 0 </math>
 +
3.<math>probability < 0</math> or <math> probability > 1 </math>
  
<font size="3"><font face="Times New Roman">Where Prob is the probability associated with the gamma distribution, alpha and beta are the parameters to the distribution.</font></font>
+
==Examples==
 +
#=GAMMAINV(0.65189,2,5) = 11.1335534510
 +
#=GAMMAINV(0.006867292,5,7) = 8.155481331
 +
#=GAMMAINV(0.1543869,9,3) = 18.0467153645
 +
#=GAMMAINV(1,9,3) = 82.51739521528073
 +
#=GAMMAINV(1.1,9,3) = NAN, because <math> prob>1 </math>
  
</div>
+
==Related Videos==
----
 
<div id="12SpaceContent" class="zcontent" align="left"><div class="ZEditBox" align="left">
 
  
GAMMAINV
+
{{#ev:youtube|SAMTXAAKeug|280|center|GAMMA Distribution}}
  
</div></div>
+
==See Also==
----
+
*[[Manuals/calci/GAMMADIST  | GAMMADIST]]
<div id="10SpaceContent" class="zcontent" align="left"><div class="ZEditBox" align="justify">Syntax </div><div class="ZEditBox"><center></center></div></div>
+
*[[Manuals/calci/GAMMALN  | GAMMALN]]
----
 
<div id="3SpaceContent" class="zcontent" align="left"><div class="ZEditBox" align="justify">Examples </div></div>
 
----
 
<div id="11SpaceContent" class="zcontent" align="left"><div class="ZEditBox" align="justify">Description </div></div>
 
----
 
<div id="4SpaceContent" class="zcontent" align="left"><div>
 
  
{| id="TABLE1" class="SpreadSheet blue"
+
==References==
|- class="even"
+
[http://en.wikipedia.org/wiki/Gamma_distribution Gamma Distribution]
| class=" " |
 
| class=" " | Column1
 
| class="          " | Column2
 
| class="    " | Column3
 
|- class="odd"
 
| class=" " | Row1
 
| class="sshl_f " | 0.6658
 
| class="sshl_f" | 10
 
| class="sshl_f" |
 
|- class="even"
 
| class="  " | Row2
 
| class=" " | 10
 
| class="sshl_fSelectTD SelectTD " |
 
<div id="4Space_Handle" title="Click and Drag to resize CALCI Column/Row/Cell. It is EZ!"></div><div id="4Space_Copy" title="Click and Drag over to AutoFill other cells."></div>
 
| class="sshl_f" |
 
|- class="odd"
 
| class="sshl_f" | Row3
 
| class="sshl_f " | 4
 
| class=" " |
 
| class="sshl_f" |
 
|- class="even"
 
| class="sshl_f" | Row4
 
| class="sshl_f" |
 
| class="sshl_f" |
 
| class="sshl_f" |
 
|- class="odd"
 
| class="sshl_f" | Row5
 
| class="sshl_f" |
 
| class="sshl_f" |
 
|
 
|}
 
  
<div align="left"></div>''''''</div></div>
 
----
 
<div id="2SpaceContent" class="zcontent" align="left">
 
  
<font size="3"><font face="Times New Roman"><nowiki>=GAMMAINV (B2, B3, B4) is 10</nowiki></font></font>
+
*[[Z_API_Functions | List of Main Z Functions]]
  
</div>
+
*[[ Z3 |  Z3 home ]]
----
 
<div id="1SpaceContent" class="zcontent" align="left">
 
 
 
<font size="3"><font face="Times New Roman">It is the inverse of the gamma cumulative distribution. </font></font>
 
 
 
</div>
 
----
 

Latest revision as of 17:12, 7 August 2018

GAMMAINV (probability,alpha,beta,accuracy,somenumberofiterations)


  • is the probability value associated with gamma distribution
  • & are the values of the shape and rate parameters.
  • gives accurate value of the solution.
  • is any positive integer.
    • GAMMAINV(),returns the inverse of the gamma cumulative distribution.

Description

  • This function gives the inverse value of Cumulative Gamma Probability Distribution.
  • This distribution is the Continuous Probability Distribution on the positive real line and it is of the reciprocal of a variable distributed according to the gamma distribution with two parameters & .
  • It is used in Bayesian statistics.
  • In , is the probability value associated with Gamma Distribution, is called shape parameter and is the rate parameter of the distribution.
  • If , then .
  • GAMMAINV use the iterating method to find the value of .
  • Suppose the iteration has not converged after 100 searches, then the function gives the error result.
  • This function will give the error result when
1.Any one of the arguments are non-numeric
2. or 
3. or 

Examples

  1. =GAMMAINV(0.65189,2,5) = 11.1335534510
  2. =GAMMAINV(0.006867292,5,7) = 8.155481331
  3. =GAMMAINV(0.1543869,9,3) = 18.0467153645
  4. =GAMMAINV(1,9,3) = 82.51739521528073
  5. =GAMMAINV(1.1,9,3) = NAN, because

Related Videos

GAMMA Distribution

See Also

References

Gamma Distribution