The question tell us that we draw two balls at random (without replacement). If at least one of the two balls is red, we draw one more ball and stop. Otherwise, we draw two more balls without replacement.
I see there are a number of scenarios here where the last ball could be Red:
(1) We choose two balls, 1 is Red, the other is notRed. We pick a third ball, it is Red. [RR'R which is identical to R'RR]
(2) We choose two balls, both are Red. We pick a third ball, it is also Red. [RRR]
(3) We choose two balls, neither are Red. We choose another two, one is Red, the other is notRed. [R'R'R'R]
(4) We choose two balls, neither are Red. We choose another two, both are Red. [R'R'RR]
The difficulty here is in scenario (3) in particular as we must have 3 instances of notRed [R'] whilst there are only 2 Green balls (limits options).
Not sure where exactly to start with solving this problem.
The exhaustive list of options (I think) is:
RRR, RBR, RGR, BRR, GRR, BBBR, BBGR, BBRR, GGBR, GGRR, BGBR, BGGR, BGRR, GBRR, GBBR, GBGR
However surely there must be a more logical solution.