A player decides to play a maximum of 4 times, betting on red each time. The player will quit after losing twice. In the tree, any possible last plays will be an ending point of the tree. Branches of the tree should indicate the winning or losing, and how that affects whether a new play is made. I know the possible ways to win and lose: I just can't picture the tree. I need some help with the structure and how to read it.
winning combinations:
w,w,w,w
w,w,w,l
w,w,l,w
w,l,w,w
l,w,w,w
losing combinations
w,l,l,w
w,w,l,l
w,l,w,l
l,w,l,w
l,w,w,l
winning combinations:
w,w,w,w
w,w,w,l
w,w,l,w
w,l,w,w
l,w,w,w
losing combinations
w,l,l,w
w,w,l,l
w,l,w,l
l,w,l,w
l,w,w,l
Last edited: