I've got a problem where I have $m$-men and $w$-women in a line, and I'm trying to find the probability that all the women are adjacent. The answer I got is: $\frac{(m+1)!w!}{(m+w)!}$
The idea is to treat the women as a single unit. So in that case there are $(m+1)!$ ways to organize everyone, and then $w!$ ways to organize the women while they're adjacent. Thus the $(m+1)!w!$. The denominator is the total number of people factorial: $(w+m)!$
Can someone confirm if I've done this right, or point out where it's wrong? The math seems sound, but something about the $+1$ and the actual numerical answers when using example numbers makes me feel like I've made a mistake. I don't know if that's just bad probability intuition or not. Any help appreciated.