Question 1200684
.
A company has 11 software engineers and 7 civil engineers. In how many ways 
can they be seated in a row so that no two of the civil engineers will sit together?
~~~~~~~~~~~~~~~~~~~~~~~~


<pre>
Under given conditions, each civil engineer either can be seated between two 
software engineers or at the extreme left or extreme right position from software engineers.


In all, there are 11+1 = 12 possible positions, where 7 civil engineers can be seated.


The number of such possible allowed placements is  

    {{{C[12]^7}}} = {{{(12*11*10*9*8)/(1*2*3*4*5)}}} = 792.    <U>ANSWER</U>
</pre>

Solved.


------------------


For the purposes of this problem, the engineers are considered as undistinguishable objects 
(although in reality they are distinct persons/individuals).


If you want to consider them as distinguishable persons, then the answer must be multiplied by 7!*11!.