To find the total number of ways of drawing 8 balls containing at least two balls of each colour, let B, Y, and R represent the number of blue, yellow, and red balls drawn, respectively.
We are given:
- Total blue balls available =5⟹B≤5
- Total yellow balls available =6⟹Y≤6
- Total red balls available =4⟹R≤4
The conditions for the draw are:
B+Y+R=8
B≥2,Y≥2,R≥2
We can list all possible valid combinations of (B,Y,R) that satisfy these conditions and calculate the number of ways to choose them using combinations (rn):
-
Case 1: (B,Y,R)=(4,2,2)
Ways=(45)×(26)×(24)=5×15×6=450
-
Case 2: (B,Y,R)=(2,4,2)
Ways=(25)×(46)×(24)=10×15×6=900
-
Case 3: (B,Y,R)=(2,2,4)
Ways=(25)×(26)×(44)=10×15×1=150
-
Case 4: (B,Y,R)=(3,3,2)
Ways=(35)×(36)×(24)=10×20×6=1200
-
Case 5: (B,Y,R)=(3,2,3)
Ways=(35)×(26)×(34)=10×15×4=600
-
Case 6: (B,Y,R)=(2,3,3)
Ways=(25)×(36)×(34)=10×20×4=800
Summing up the ways from all valid cases gives the total number of ways:
Total ways=450+900+150+1200+600+800=4100
Thus, the correct option is A.