Answer on Question #46066 - Math - Statistics and Probability
The sales per day in a shop is exponentially distributed with average sale amounting to Rs.100 and net profit is 8%. Find the probability that the net profit exceeds Rs.30 on two consecutive days.
Solution
The exponential probability distribution function is given by the formula , the mean of the distribution is .
As the mean is 100, .
Net profit is 8%, so, if net profit equals to 30, then sales are equal to .
Thus, to find the probability that net profit exceeds 30, we should find the probability that sales are greater than 375.
Use R to calculate the probability using exponential distribution.
R code:
1 - pexp(375, rate=1/100)
The value is 0.023518. This is the probability that net profit exceeds 30 in one day.
To calculate the probability that net profit exceeds 30 on two consecutive days, multiple probabilities:
0.023518 * 0.023518 = 0.000553
www.AssignmentExpert.com
Comments