i see a problem without any definition. would you please help me?
i want to calculate the number of permutations of 1,2,...,1392 that 696 numbers be in the natural positions (from all numbers, 696 numbers be in the correct position).
i reach two solution but i don't know which one is correct?
a)
$$\frac{1392!}{696!}\sum_{k=0}^{696} \frac{(-1)^k}{k!}$$
b)
$$\binom{1392}{696}\sum_{k=0}^{696} \frac{(-1)^k}{k!}$$
It is much easier to help you if you show the reasoning behind your answers. b) is almost correct-first you choose the elements which will be fixed, then you choose a derangement of the rest, which makes sure none of them stay in place, but you missed a factor of $696!$. That will get you to a)