is there a function like NORMSINV for exponential distribution

G

Guest

I am trying to calculate safety stock using an exponential distribution need
to calculate the safety factor for a desired service level
 
M

Mike Middleton

Stuart Douglas -

The exponential density function f(x) = lambda*EXP(-lambda*x),

or f(x) = EXPONDIST(x,lambda,FALSE).

The cumulative probability p = P(X<=x) = 1 - EXP(-lambda*x),

or p = P(X<=x) = EXPONDIST(x,lambda,TRUE).

For cumulative probability p = P(X<=x), the inverse cumulative is x
= -LN(1-p)/lambda.

- Mike Middleton
http://www.DecisionToolworks.com
Decision Analysis Add-ins for Excel
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top