To find the probability of a value being greater than 175000 in an exponentially distributed variable with median 14000, you can use the cumulative distribution function (cdf) of the exponential distribution.
The scale parameter of the exponential distribution is related to the median by the formula: scale = median / ln(2).
In Matlab, you can calculate the probability of the exponentially distributed variable being greater than 175000 as follows:
main.m204 chars7 lines
This code calculates the probability of the exponentially distributed variable being greater than 175000 with the given median value.
Make sure to have the Statistics and Machine Learning Toolbox installed in Matlab to use this functionality.
gistlibby LogSnag