Determine the amount of divisors of $10!$
This is a question in my combinatorics textbook, so I need to somehow reduce this to an elementary counting problem like combinations, permutations with or without repetition. I just don't see it. I can determine $10$ easy divisors, those are all the numbers $1$ through $10$ themselves. Then we can consider all possible products of these numbers, but then I get that a number can be either in the product , or not. I would get that it is $2^{10}=1024$ but the answer says it should be $270$.
What is going wrong here?
Note: $1$ and $10!$ are included
You've overcounted quite a bit, because integer factorization is not unique unless we're talking about primes. So for example, you've got $4 \cdot 10 = 40 = 5 \cdot 8$ counted twice.
So rather than thinking about numbers between $1$ and $10$, think of prime powers. A number is a divisor of $10!$ if and only if it is of the form
$$n = 2^a \cdot 3^b \cdot 5^c \cdot 7^d$$ for appropriate ranges of $a, b, c, $ and $d$. I'll leave it to you to figure out why the values of $a, b, c, $ and $d$ range from $0$ to $8$, $4$, $2$ and $1$ respectively, giving
$$(8 + 1)(4 + 1)(2 + 1)(1 + 1) = 270$$
in total.