I am trying to understand the solution to a probability problem, and I am having trouble understanding where some of the numbers are coming from.
The textbook gives this definition for conditional expectation, which I have no trouble understanding:
The conditional expectation $Ex[R \;|\; A]$ of a random variable $R$ given event $A$ is: $$ Ex[R \;|\; A] ::= \sum_{r\;\in\text{range}(R)} r \cdot Pr[R = r \;|\; A] $$
The textbook gives the expected value of the a die roll given the event that the number rolled is at least 4:
$$ Ex[R \;|\; R \geq 4] = \sum_{i = 1}^6 i \cdot Pr[R = i \;|\; R \geq 4] = 1 \cdot 0 + 2 \cdot 0 + 3 \cdot 0 + 4 \cdot \dfrac{1}{3} + 5 \cdot \dfrac{1}{3} + 6 \cdot \dfrac{1}{3} = 5 $$
I understand why the result is what it is. I do not understand where the multiplier $\dfrac{1}{3}$ in the last three terms comes from.
Because the question asks for the excepted value of the face on a die given that the number rolled is at least $4$, we know for certain that the probability space only includes $4,5,6$. The faces on the die, $1,2,3$, occur with probability $0$ given that the number rolled is at least $4$. Since only $4,5,6$ occur and, in a fair die, each face would occur with equal probability, the probability of rolling $4,5$, or $6$ should be $\frac{1}{3}$.
Another way to see this is that the entire probability space of rolling a die is $\Omega=\{1,2,3,4,5,6\}$ since only these numbers can appear. Now we have a subset $A\subset\Omega$ where $A=\{4,5,6\}$ is the event that the die shows a number at least $4$.
By definition of probability spaces $P(A)=1$. Since any event $\omega\in A$ occur with equal probability, $P(4|A)=P(5|A)=P(6|A)=\frac{1}{3}$.
Thus, $E[R|R\geq4]=5$.