Choosing balls from the boxes
Show older comments
I found the following question to solve: Game with 13 boxes(no repetitions). Inside each box there is a ball of different colour. There are 3 colours (red, blue and green), and there are 4 balls per colour. One box contains a black ball.
Win: when we pick 4 of the same colour - award: red - 10, blue - 20, green - 50
Loose: when we find black - no award
I would like to write a program, to find the probability of picking the black ball before any 4 of the same colour was found.
My first idea was to write a "for" and than many "if" statements but my plan didn't work:
rCount: # of red balls founded
n = 13
for i = 1:n
if rCount == 4
disp('You won the game with red')
else \\'I would like to write here a code like keep going with the loop'
end
3 Comments
Torsten
on 10 May 2022
I would like to write a code solving this problem.
You didn't state what the problem is.
Sam Chak
on 10 May 2022
Did you get stuck after end?
Michal Waligora
on 10 May 2022
Accepted Answer
More Answers (0)
Categories
Find more on Just for fun in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!