We have 3 dice labeled R,B,G for the color. We say a Die is maximal if it's larger or equal to the others.
If any of my thinking is wrong please point it out
a)What is the probability that the maximum is 4?
$P(R=4, B\le4, G\le4)$ and since the events are independent it's equal to $P(R=4)P(B\le4)P(G\le4)=(1/6)(4/6)(4/6)$. Then we have to do this for the case of R,G or B being true for all 3. So that's
$P(R=4, B\le4, G\le4)\cup P(B=4, R\le4, G\le4)\cup P(G=4, B\le4, R\le4)$
=$P(R=4, B\le4, G\le4) + P(R=4, R\le4, G\le4) + P(G=4, B\le4, R\le4)$
-$P(R=4, B=4, G\le4) + P(R=4, R\le4, G=4) + P(G\le4, B=4, R=4)$
+$P(R=4, B=4, G=4)$
By inclusion-exclusion rule.
b)What is the probability that R is the maximal with R=4?
Just calculate by doing all the events of R=4 and B and G being $\le 4$. So therefore.
$P(R max|R=4)=P(R max, R=4)/P(R=4)$
=$(4^2/6^3)/(6^2/6^3)$
$4^2/6^2$
c)What is the probability that R=4 conditioned on event that R is maximal?
P(R=4|R is maximal)=P(R=4, R is maximal)/P(R is Maximal)
$(4^2/6^3)/\sum^6_{i=1}i^2/6^3$
There are a couple of problems with a).
First, the number of ways to roll at most $4$ with a given die is $4$, not $\binom64$. So your calculation of $\binom64\binom64\big/6^3$ for the probability that (say) the red die rolls $4$ and the others roll $\leq 4$ should be ${4^2}\big/{6^3}$.
Secondly, there is a more subtle problem. You can't just multiply this by $3$ to get the total probability, because you have counted some situations more than once. For example, the situation $R=4,G=4,B=2$ is included in the probability for $R=4, G\leq 4, B\leq 4$ but also in the probability for $G=4, R\leq 4, B\leq 4$. To deal with this you need to calculate the following three situations separately:
Note that these cases cover all possibilities you are interested in, and have no overlap, so you can then just add up the three probabilities.
There are similar problems with the other parts.