Problem Statement
An urn contains $4$ fair dice. Two of the dice have standard number schemes. One of the dice has numbered faces $2,2,4,4,6,6$. The last die has all faces numbered with $6$. One of the dice is selected from the urn and rolled. The same die is then rolled again. What is the probability that a $6$ is rolled both times?
My Attempt
I started by laying out my probabilities: For the standard die we have:$$D_1 = [1,2,3,4,5,6]\\ P(D_1) = \frac{1}{2}\\ P(i\vert D_1) = \frac{1}{6}\ \text{Where i runs from 1 to 6}$$ For the $3$rd dice we have:$$D_2 = [2,2,4,4,6,6]\\ P(D_2) = \frac{1}{4}\\ P(k\vert D_2) = \frac{1}{3}\, k \in [2,4,6]$$ For the last dice we have: $$D_3 = [6]\\ P(D_3) = \frac{1}{4}\\ P(6\vert D_3) =1$$
From here I noted that for one roll we have the probability of getting a six to be: $$P(6) = P(6\vert D_3)P(D_3) + P(6\vert D_2)P(D_2) + P(6\vert D_1)P(D_1) = (1)(\frac{1}{4}) + (\frac{1}{3})(\frac{1}{4}) + (\frac{1}{6})(\frac{1}{2}) = \frac{5}{12}$$
From here I wasn't exactly sure how to proceed so I simply squared the answer and got $\frac{25}{144}$. Which is incorrect as the correct answer is $\frac{7}{24}$
Reflection/Questions
I believe my answer for the single roll situation is correct as it's a simple use of the law of total probability. However, I am struggling to see how to incorporate the constraint that "The same dice is rolled again" mathematically. The way I did it - by squaring the answer - would be the answer, I believe, for the situation in which the die is replaced and then randomly selected and rolled for again. My question is then: how does one mathematically account for the constraint that the same die that is selected is rolled for again, without knowing which die has been rolled again. I understand that when given $n$ choices each with their own respective probability then we are to multiply the $n$ probabilities together to get the overall probability of the entire gambit.
I appreciate any help rendered.
Your scheme of separating the cases is correct. We have a two-steps experiment, the first step is the choice of the type $D1$, or $D2$, or $D3$, the second step being the double roll in the considered type. So the needed probability is: $$ \frac 24\cdot\left(\frac 16\right)^2 + \frac 14\cdot\left(\frac 13\right)^2 + \frac 14\cdot\left(\frac 11\right)^2 =\frac 1{4\cdot 6^2}(2+4+36) =\frac {42}{4\cdot 6^2} =\frac {7}{4\cdot 6} \ . $$