I'm looking for a way to calculate the probability to be able to get your holidays when you want based on:
- There are $365$ days in the year
- Weekends will be counted as normal days (to simplify)
- You can take $20$ days holidays
- There are $x$ number of persons taking $20$ days holidays and you can not take the same days
My guess is that for one person it will be $$\frac{(365-20)}{365}=0.945$$ and for $x$ number of persons will be $$\frac{(365-(20*x))}{365}$$. Is this correct?