>>12313399>>12313419I've just modelled it on Python, and you're right, the answer is 2/3. My apologies.
My code, if you're interested
import random
n = 1
second_gold_count = 0
while n <= 10000:
____BOXES = [["GOLD", "GOLD", "GOLD"], ["GOLD", "SILVER"], ["SILVER", "SILVER", "SILVER"]]
____picked_box = random.choice(BOXES)
____picked_ball = random.choice(picked_box)
____if picked_ball == "GOLD":
________picked_box.remove(picked_ball) # Remove picked ball from box.
________second_picked_box = random.choice(picked_box)
________if second_picked_box == "GOLD":
____________second_gold_count += 1
________n += 1
print(second_gold_count / n)
The dashes are just because I can't remember how to format code on here. I even tried an arbitrary number of gold balls in the first box and it didn't make a difference, it's always 2/3.