A photographer will arrange 6 people of 6 different heights for photograph by placing them in two rows of three so that each person in the first row is standing in front of someone in the second row. The heights of the people within each row must increase from left to right, and each person in the second row must be taller than the person standing in front of him or her. How many such arrangements of the 6 people are possible?
5
6
9
24
36
3楼同学说的没问题,首先1,6固定在首末位,这里要用C(2,4)的原因是,题目中说,一定从左到右由小到大排列,所以,我们只要从剩余的4个数中抽出来两个数字放在前面,他们只有一种放置方法,随之后排的两个也只有一种防置方法。这些抽取方法中除了4和5放在前列这一种不符合题设外,其余都符合,所以最后要减1.
登录 或 注册 后可以参加讨论