Suppose we have $m+n$ symbols out which $m$ are identical and $n$ are distinct. It is required to find the number of permutations of these $m+n$ symbols such that no two identical symbols are together. I tried to solve it through the help of of a recurrence relation. .My reasoning as follows:
If $f(m,n)$ is the requisite no of permutations the following things are obvious : $$f(1,1)=2$$ $$f(1,n)=(n+1)!$$ and similar such base conditions. Now in the general case the first symbol can be either one among the $m$ identical symbols or it can be one of the $n$ different symbols .This means we have the following recurrence relation $$f(m,n)=n{f(m-1,n-1)+nf(m,n-1)}$$. In particular what is the value of $f(4,6)$
Is my reasoning and hence the above recurrence relation correct ?I would be greatly thankful for any help.