Say I have this set: {a,a,a,a,b,b,c,c}
I want to know how many combinations of 3 items I can make. this would be the result I'm looking for:
{a,a,a} {a,b,b} {a,b,c} {a,c,c} {a,a,b} {a,a,c} {b,b,c} {b,c,c}
8 items in total. Another words, order doesn't matter, repetitions are not allowed, but some of the items in my set are of the same type. ( I can't use nCr with repeats because I don't have enough items of type b or c ). I'm total noob. please bear with me.
thanks, Kyle