The following example is taken from the book "Introduction to Probability Models" of Sheldon M. Ross (Chapter 5, example 5.4).
The dollar amount of damage involved in an automobile accident is an exponential random variable with mean 1000. Of this, the insurance company only pays that amount exceeding (the deductible amount of) 400. Find the expected value and the standard deviation of the amount the insurance company pays per accident."
In the solution, the author states that:
By the lack of memory property of the exponential, it follows that if a damage amount exceeds 400, then the amount by which it exceeds it is exponential with mean 1000.
After reading several implications of this property, I easily map such statement to something like: if you have been waiting for 400s without seeing the bus, then the expected time until the next bus is always 1000s. (Please correct me if I'm wrong)
In case I've understood well, what makes me confuse is this next equation:
$$ E[Y|I=1] = 1000 $$
where:
$X$: the dollar amount of damage resulting from an accident
$Y=(X-400)^+$: the amount paid by the insurance company (where $a^+$ is $a$ if $a>0$ and 0 if $a<=0$).
$I = 1*(X > 400) + 0*(X<=400)$
I don't get why that equality holds given the memoryless property. Straightforwardly, I think with respect to 400 subtraction, it should be something like: $E[Y|I] = 1000 - 400 = 600$ (or some other value). Can anyone give me an explanation about this?
In case you are not clear about my description, please refer to this link with example 5.4.
