I've recently been learning factorials in school. If there is an equation (in $\mathbb N$) with $(n-5)!$, I have to ensure that $n$ is not 1, 2, 3 or 4. I've been told that I should write domain:
$D = \mathbb N \setminus \{1; 2; 3; 4\}$
My question: Is it possible to use an interval? Can I write
$D = \mathbb N\ \setminus \langle1; 4\rangle$ (or for someone more common $[1; 4]$)
? And if not, is there another "solution"? Exclude 4 numbers is easy but what if there were 50?
Thanks