You can put this solution on YOUR website! Consider strings of length 9 with elements being a, b or c. How many
strings will contain at least 6 b’s?
---
# of strings with at least 6 b's = 9C6*2^3 + 9C7*2^2 + 9C8*3 + 9C9
----
= 84*8 + 36*4 + 27 + 1
---
= 844
============
Cheers,
Stan H.