So I'm trying to prepare for exams, and am having some trouble with permutations, and was wondering what's a good strategy to solve this task is:
Given the set of letters $\text{AAABBBBCCDEEFG}$ find:
$(*)$ The number of unique permutations of these letters.
$(**)$ The number of unique permutations where the vowels ${\color{red}{AAA}}$ appears before ${\color{green}{EE}}$. (E.g. ${\color{red}{AA}}\text{C}{\color{red}{A}}\text{C}{\color{green}{E}}\text{BBG}{\color{green}{E}}\text{FDBB}$, but not $\text{B}{\color{red}{AA}}\text{C}{\color{green}{E}}\text{C}{\color{red}{A}}\text{BBG}{\color{green}{E}}\text{FDB}$)
$(*\!*\!*)$ The number of unique permutations where ${\color{red}{D}}{\color{green}{F}}{\color{blue}{G}}$ appears in that order. (E.g. $\text{AACACEBB}{\color{red}{D}\text{E}{\color{green}{F}}\text{BB}{\color{blue}{G}}}$ but not $\text{AACACEBB}{\color{blue}{G}}\text{E}{\color{green}{F}}{\color{red}{D}}\text{BB}$)
$(*\!*\!**)$ The number of permutations where no vowels appear in a pair. (E.g. $\text{B}{\color{magenta}{A}}\text{C}{\color{magenta}{E}}\text{C}{\color{magenta}{A}}\text{BBG}{\color{magenta}{E}}\text{FDB}{\color{magenta}{A}}$, but not $\text{B}{\color{orange}{AA}}\text{C}{\color{magenta}{E}}\text{C}{\color{magenta}{A}}\text{BBG}{\color{magenta}{E}}\text{FDB}$)
So $(*)$ is $\frac{14!}{3!4!2!1!2!1!1!}$, but I'm not sure how I should proceed with the others...
Thanks in advance!