There are 10 girls in a class, all with different heights. They want to form a queue so that no girl stands directly between two girls shorter than her. How many ways are there to form the queue?
Solution:
Let be 10 girls and their heights are represented in the graph:
Given that no girl can stand between two shorter than her.
So, can stand only at position 1.
Ways of Position of is 1 and is 1.
Then is between or , so it has 2 ways.
Similarly, ways for are 3, are 4, are 5, are 6, are 7, are 8 and are 9.
Thus, total possible ways = 1+1+2+3+4+5+6+78+9 = 46.
Comments