|
This method has lots of repetition.
Suppose pencils are marked 1,2,3,4,5,6
Suppose CASE 1:
Initially two pencils 1 and 3 are chosen.
Boy 1 gets pencil 1,Boy 2 gets 3
Finally rest 4 pencils are distributed.
let final allocation is:
Boy 1: 1,4,5
Boy 2:2,3,6
CASE 2:
Initially two pencils 2 and 4
are chosen.
Boy 1 gets pencil 4,Boy 2 gets 2
Finally rest 4 pencils are distributed.
Let boy 1 gets 1,5
Boy 2 gets 3,6
final allocation is:
Boy 1: 1,4,5
Boy 2:2,3,6
BOTH CASES ARE IDENTICAL
|