I'm hoping you can help me with how many combinations are possible, given the following...
I have 5 letters (A, B, C, D, E). I need to create groups of 12 letters, obviously I can use the letters multiple times. However, there are limitations on the usage of letters:
-In each group of 12, I must use A 5-6 times, B 1-3 times, C, 1-3 times, D 1-3 times, and E 1-3 times.
-If A is used 6 times, then the maximum usage of B, C, D, and E is 2 times each.
-If B is used 3 times, then C can only be used 1 time, D and E could only be used 1-2 times each, and A would be used exactly 5 times.
-If C is used 3 times, then B can only be used 1 time, D and E could only be used 1-2 times each, and A would be used exactly 5 times.
-If D is used 3 times, then E can only be used 1 time, B and C could only be used 1-2 times each, and A would be used exactly 5 times.
-If E is used 3 times, then D can only be used 1 time, B and C could only be used 1-2 times each, and A would be used exactly 5 times.
-If B is used 1 time, then C must be used 2-3 times.
-If C is used 1 time, then B must be used 2-3 times.
-If D is used 1 time, then E must be used 2-3 times.
-If E is used 1 time, then D must be used 2-3 times.
And the total number of letters in each group must be 12.
How many combinations would this produce?
And the order matters as I want to know all the different orders they could be in. For example, A A A A A A B C C D D E would be one and B C C D D E A A A A A A would be another... same number of specific letters in each group but counts as 2 groups because they are in a different order.
Thank you in advance for your help!
Edited: groups of 12 needed, not 14. sorry!