Log norm inv
LOGNORM.INV Function¶
The LOGNORM.INV function in Excel is used to calculate the inverse of the lognormal cumulative distribution function (
CDF) for a given probability, mean, and standard deviation of a dataset. It is particularly useful in financial analysis
and probability scenarios where data follows a lognormal distribution.
Key Features of LOGNORM.INV:¶
- Returns the value
xsuch that the probability of a lognormal random variable being less than or equal toxequals the given probability. - Useful in modeling and simulations where data is skewed, such as stock prices or financial returns.
- Based on the parameters of the normal distribution of the corresponding logarithmic values.
Syntax:¶
- probability: A probability associated with the lognormal distribution (required).
- mean: The mean of the natural logarithms of the dataset (required).
- standard_dev: The standard deviation of the natural logarithms of the dataset (required).
How It Works:¶
The LOGNORM.INV function computes the value x using the lognormal distribution such that:
Where:
Xis the lognormal random variable.- The log of
Xfollows a normal distribution with the specifiedmeanandstandard_dev.
Examples:¶
- Basic Calculation:
Find the inverse lognormal value for probability = 0.95, mean = 0, and standard_dev = 1:
5.180251602.
- Using Real-World Parameters:
Suppose you are modeling financial returns with a probability of 0.8, and the mean and standard deviation of the
log-transformed returns are 1.2 and 0.5, respectively:
x that satisfies the condition will be returned.
- Testing a Range of Probabilities:
If you have multiple probabilities listed in range A1:A5, and you want to compute the inverse lognormal values for
a mean of 1.5 and a standard_dev of 0.7:
Notes:¶
- Parameter Constraints:
- The
probabilitymust be between0and1(exclusive). - The
standard_devmust be greater than0.
- The
- If any parameters are invalid or out of bounds, Excel returns a
#NUM!error. - This function is the inverse of the
LOGNORM.DISTfunction for cumulative distribution mode.
Applications:¶
- Financial Analysis: Estimating potential stock prices or returns based on their lognormal distribution.
- Risk Assessment: Modeling uncertain scenarios in project management or investment returns.
- Simulation Models: Generating input values for stochastic (probabilistic) models where the variable follows a lognormal distribution.
Tip: Use the
LOGNORM.INVfunction to back-calculate values for specific probabilities in datasets that are lognormally distributed.