How many ways can I arrange, say, 3 letters and 3 digits, if the letters must appear in groups?
For starters, I know we can do $26^3 * 10^3$ to represent a 6 letter string where letters together are followed by 3 digits. Then, by inspection, I can see that there are 4 places the chunk can go, so my final answer (I think) would be $26^3 * 10^3 * 4$. Is there a general way to do these problem without examining each on a case by case basis?
Thanks!