Log norm dist
LOGNORM.DIST Function¶
The LOGNORM.DIST function in Excel is used to return values from a log-normal distribution, which is a probability
distribution of a random variable whose logarithm is normally distributed. It is particularly helpful for working with
data that is positively skewed, such as financial models, biological data, or engineering applications.
Key Features of LOGNORM.DIST:¶
- Probability Distribution Analysis: Calculates probabilities or distribution values based on the log-normal distribution.
- Supports Cumulative or Non-cumulative Values: You can decide between the probability density function (PDF) or cumulative density function (CDF).
- Useful for modeling data where values cannot drop below zero and grow exponentially.
Syntax:¶
- x: The value for which you want the log-normal distribution. It must be a positive number.
- mean: The mean (average) of the natural logarithm of the distribution.
- standard_dev: The standard deviation of the natural logarithm of the distribution. This must be a positive number.
- cumulative: A logical value (
TRUEorFALSE) specifying the type of distribution:TRUEfor the cumulative log-normal distribution (CDF).FALSEfor the probability density function (PDF).
How It Works:¶
The LOGNORM.DIST function assumes that for a log-normal distribution:
- If
ln(x)follows a normal distribution with a specified mean and standard deviation,xfollows a log-normal distribution. - Depending on whether
cumulativeisTRUEorFALSE, the function either computes the cumulative probability up toxor the probability density atxitself.
Examples:¶
-
Basic Calculation (Cumulative Distribution): Calculate the cumulative log-normal distribution for
Result:x = 4, where the logarithmic mean is0.5and standard deviation is1:0.588852 -
Basic Calculation (Probability Density Function): Calculate the probability density for
Result:x = 4with the same mean and standard deviation:0.126317 -
Using with Financial Data: Suppose you have stock prices and want to calculate the probability that they fall within a specific range. If the prices follow a log-normal distribution, you can use
LOGNORM.DISTto assess probabilities.
Notes:¶
-
Parameter Constraints:
xmust always be a positive value; otherwise, the function returns a#NUM!error.- Both
meanandstandard_devshould be real numbers, withstandard_devgreater than zero. - If any argument is invalid (e.g.,
meanis non-numeric), the function will return a#VALUE!error.
-
Special Cases:
- When
cumulativeisTRUE, the result represents the probability that a randomly selected value is less than or equal tox. - The PDF version (
cumulative = FALSE) helps identify the likelihood of observing a specific value.
- When
Applications:¶
- Financial Modeling: Analyze stock returns or other positively skewed financial data using a log-normal distribution model.
- Risk Analysis: Model outcomes for positively skewed processes.
- Environmental Studies: Study data distributions, such as pollutant levels, that often follow a log-normal pattern.
- Quality Control: Assess production data or component reliability following log-normal characteristics.
Tip: Combine
LOGNORM.DISTwith other statistical functions to perform complex analyses, such as evaluating probability regions or fitting models to datasets. For visual representation, plot values or cumulative probabilities in Excel charts.