8 places 4 labels $\{1,2,3,4\}$
the original order 1,1,2,2,3,3,4,4 how many ways to order such that no label will have the original position.
solution:
we will use inclusion exclusion principle , we will find all ways such that they are in the original places
A1- we have $6!/(2!2!2!)$
and for the same logic we get : $A_i$ = $4\choose1$$6!/(2!2!2!)$
$A_(1\cap2)$= $4!/(2!2!)$ and by the same logic we get : $A_(i\cap j)$= $4\choose2$$4!/(2!2!)$, $i\neq j$
$A_(1\cap2\cap3)$=$2!/(2!)$ and by the same logic we get: $A_(i\cap j\cap k)$=$4\choose3$$2!/(2!)$ where i,j,K differ from one another
for 4 of them we have 1 option\
we conclude : $|U|-(A_i)+(A_(i\cap j))-(A_(i\cap j \cap k )) +...= $$8!/(2!2!2!2!)$-$4\choose1$$6!/(2!2!2!)$+$4\choose2$$4!/(2!2!)$-$4\choose3$$2!/(2!)$+1
is it Correct?