The GAMMALN.PRECISE function in Google Sheets is designed to return the natural logarithm of the gamma function for a specified input. This function is particularly useful in statistics and various scientific calculations, where the gamma function plays a crucial role in modeling distributions and complex calculations involving continuous probability distributions.
Syntax
GAMMALN.PRECISE(x)
- x: The value for which the gamma logarithm is to be calculated. This must be a positive number.
Example #1
GAMMALN.PRECISE(5)
This call calculates the natural logarithm of the gamma function for the value 5.
Result: Approximately 3.178.
Example #2
GAMMALN.PRECISE(10)
In this instance, the function returns the natural logarithm of the gamma function for the value 10.
Result: Approximately 15.104.
Example #3
GAMMALN.PRECISE(2.5)
Here, the function evaluates the natural logarithm of the gamma function for the decimal value 2.5.
Result: Approximately 0.284.
Error handling
- NUM!: This error occurs if the input value x is not a positive number.
- VALUE!: This error arises when the input value is non-numeric or invalid, such as a text string.