Three children, each accompanied by a guardian seek admission in a school. The Princi wants to interview all the 6 persons one after the other subject to only one condition that no child is interviewed before its guardian. In how many ways can this be done ?
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
Mmmmm, I'm disappointed, I expected a solution using integration and vectors. HAHA. Just kidding.
But nice solution, I love how you showed three possible methods, I used the first because it was the first one that came to mind.
Log in to reply
I'd love to see a vector solution to this problem myself. :)
The first method was the first to come to my mind as well, but the others are more intuitive and generalize more easily.
Method 3 rocks! :). Nice solutions sir.
Well I'm just a student of 17 and solved it after 2 days :P. This question came in a scholarship examination and the average time to solve it was 2 minutes for just 1 mark :P
one easy way is to consider a parent and a child pair and select 2 places for the pair. In this 2 places, they can be arranged in only 1 way. this can be done in C(6,2) ways. For the next pair it will be C(4,2) and for the third pair only 2 places are left, which leaves us at with only 1 way. so total possibilities= C(6,2)XC(4,2)XC(2,2)=15 6 1=90
I broke the problem into 3 cases.
Case 1: All 3 guardians come 1st and all the children come 2nd. 3!3! = 36 permutations by the fundamental counting principal.
Case 2: 2 guardians come 1st and the last guardian comes before their child. 3x2 ways to choose 2 guardians from 3. I listed the 6 ways one guardian can be placed in between the 3 children and yet come before their own. c1/g3/c2/c3, c1/c2/g3/c3, c1/g3/c3/c2, c2/g3/c1/c3, c2/c1/g3/c3, c2/g3/c3/c1 So total is 3x2x6=36
Case 3. 1 guardian comes 1st. There are 3 ways to do that. I listed the 6 ways to place the other two guardians among the 3 children and meet the condition. So total is 3x6=18
Total = case 1 +case 2 + case 3 = 36+36+18 = 90
Not elegant but that's how I did it.
There are 3 pairs of people. If we didnt care about the placement, this means there are 6! Or 720 ways they can be arranged. however we are told that each corresponding student guardian must be interviewed first which means that for each pair, half of the ways would have the guardian ahead ofnthe student. And becausebthere are thre pairs , its (1/2)^3 which equals to 1/8. therefore, the nber of ways in which the guardian is interviewed ahead of the student corresponding student is 1/8 of the total of number of ways or 90 ways.
Brute Force Solution:
Problem Loading...
Note Loading...
Set Loading...
There are a few approaches to solving this problem.
Choose one of the 3 children to put last; then their guardian can be placed in one of the 5 time slots before their child. In the next available time slot prior to that of the child in the last time slot place one of the remaining 2 children; their guardian can then be placed in one of the 3 remaining time slots before their child. The remaining two time slots can then be filled in only one appropriate way, (i.e., the remaining guardian prior to their child).
This gives us a total of 3 ∗ 5 ∗ 2 ∗ 3 = 9 0 interview orderings.
For any given guardian/child pairing, half of all interview orderings will have the guardian interviewed prior to the child. Since this is the case for each pairing, we have that ( 2 1 ) 3 = 8 1 of all orderings will have each guardian come before their child. Since there are 6 ! = 7 2 0 possible orderings, we have ( 8 1 ) ∗ 7 2 0 = 9 0 orderings that satisfy the given restriction.
Label the guardians/children as A , A , B , B , C , C . We don't actually have to distinguish between the guardians and their children in this labeling process, since when we permute these 6 letters there is only one permitted way of ordering each guardian/child pairing. So the number of allowed orderings is the same as the number of permutations of these 6 letters, which is 2 ! ∗ 2 ! ∗ 2 ! 6 ! = 8 7 2 0 = 9 0 .