I have ten (10) items each of six (6) different colors (so 60 items total).
For easier reading, I'll call the colors {A, B, C, D, E, F}.
I would like to find the minimum number of items I need to have 3 A's OR 4 B's OR 5 C's OR 6 D's OR 7 E's OR 8 F's.
I think I'm having the most trouble grasping how the or works in this case.
My first thought was that, well, if I take $6*7 +1 = 43$ items then I ensure that I get at least 8 of some color, right?
And, in that case, I would have at least 7 of all the other colors, so I know that taking 43 items would satisfy the condition.
But can I do that with fewer than 43 items? I haven't been able to find a calculator or something of the sort for these questions, so I'm not sure how to check my work.
The maximum number of items for which all of the OR conditions fail is $$2+3+4+5+6+7=27$$ which can be realized by the selection $$2A,\;\;3B,\;\;4C,\;\;5D,\;\;6E,\;\;7F$$ where the coefficient indicates the multiplicity of the color.
Thus, any selection of $28$ items guarantees that at least one of the OR conditions is satisfied.