Girish Mahajan (Editor)

Josephus problem

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

In computer science and mathematics, the Josephus problem (or Josephus permutation) is a theoretical problem related to a certain counting-out game.

Contents

People are standing in a circle waiting to be executed. Counting begins at a specified point in the circle and proceeds around the circle in a specified direction. After a specified number of people are skipped, the next person is executed. The procedure is repeated with the remaining people, starting with the next person, going in the same direction and skipping the same number of people, until only one person remains, and is freed.

The problem — given the number of people, starting point, direction, and number to be skipped — is to choose the position in the initial circle to avoid execution.

History

The problem is named after Flavius Josephus, a Jewish historian living in the 1st century. According to Josephus' account of the siege of Yodfat, he and his 40 soldiers were trapped in a cave by Roman soldiers. They chose suicide over capture, and settled on a serial method of committing suicide by drawing lots. Josephus states that by luck or possibly by the hand of God, he and another man remained until the end and surrendered to the Romans rather than killing themselves. This is the story given in Book 3, Chapter 8, part 7 of Josephus' The Jewish War (writing of himself in the third person):

However, in this extreme distress, he was not destitute of his usual sagacity; but trusting himself to the providence of God, he put his life into hazard [in the manner following]: "And now," said he, "since it is resolved among you that you will die, come on, let us commit our mutual deaths to determination by lot. He whom the lot falls to first, let him be killed by him that hath the second lot, and thus fortune shall make its progress through us all; nor shall any of us perish by his own right hand, for it would be unfair if, when the rest are gone, somebody should repent and save himself." This proposal appeared to them to be very just; and when he had prevailed with them to determine this matter by lots, he drew one of the lots for himself also. He who had the first lot laid his neck bare to him that had the next, as supposing that the general would die among them immediately; for they thought death, if Josephus might but die with them, was sweeter than life; yet was he with another left to the last, whether we must say it happened so by chance, or whether by the providence of God. And as he was very desirous neither to be condemned by the lot, nor, if he had been left to the last, to imbrue his right hand in the blood of his countrymen, he persuaded him to trust his fidelity to him, and to live as well as himself.

The details of the mechanism used in this feat are rather vague. According to Dowdy and Mays, in 1612 Bachet suggested the specific mechanism of arranging the men in a circle and counting by threes to determine the order of elimination. This story has been often repeated and the specific details vary considerably from source to source. For instance, Herstein and Kaplansky (1974) have Josephus and 39 comrades stand in a circle with every seventh man eliminated. A history of the problem can be found in S. L. Zabell's Letter to the editor of the Fibonacci Quarterly.

Josephus had an accomplice; the problem was then to find the places of the two last remaining survivors (whose conspiracy would ensure their survival). It is alleged that he placed himself and the other man in the 31st and 16th place respectively.

Variants and generalizations

A Medieval version of the Josephus problem involves 15 Turks and 15 Christians on board a ship in a storm which will sink unless half the passengers are thrown overboard. All 30 stand in a circle and every ninth person is to be tossed into the sea. Where should the Christians stand to ensure that only the Turks are tossed? In other versions the roles of Turks and Christians are interchanged.

In Concrete Mathematics: A Foundation for Computer Science, Graham, Knuth and Patashnik describe and study a "standard" variant: Determine where the last survivor stands if there are n people to start and every second person (k = 2 below) is eliminated.

A generalization of this problem is as follows. We suppose that every mth person will be executed from a group of size n, in which the pth person is the survivor. If there is an addition of x people to the circle, then the survivor is in the p + mx-th position if this is less than or equal to n + x. If x is the smallest value for which (p + mx) > (n + x), then the survivor is in position (p + mx) − (n + x).

Solution

In the following, n denotes the number of people in the initial circle, and k denotes the count for each step, that is, k 1 people are skipped and the k -th is executed. The people in the circle are numbered from 1 to n .

k=2

We explicitly solve the problem when every 2nd person will be killed, i.e. k = 2 . (For the more general case k 2 , we outline a solution below.) We express the solution recursively. Let f ( n ) denote the position of the survivor when there are initially n people (and k = 2 ). The first time around the circle, all of the even-numbered people die. The second time around the circle, the new 2nd person dies, then the new 4th person, etc.; it's as though there were no first time around the circle.

If the initial number of people was even, then the person in position x during the second time around the circle was originally in position 2 x 1 (for every choice of x ). Let n = 2 j . The person at f ( j ) who will now survive was originally in position 2 f ( j ) 1 . This gives us the recurrence

f ( 2 j ) = 2 f ( j ) 1 .

If the initial number of people was odd, then we think of person 1 as dying at the end of the first time around the circle. Again, during the second time around the circle, the new 2nd person dies, then the new 4th person, etc. In this case, the person in position x was originally in position 2 x + 1 . This gives us the recurrence

f ( 2 j + 1 ) = 2 f ( j ) + 1 .

When we tabulate the values of n and f ( n ) we see a pattern:

This suggests that f ( n ) is an increasing odd sequence that restarts with f ( n ) = 1 whenever the index n is a power of 2. Therefore, if we choose m and l so that n = 2 m + l and 0 l < 2 m , then f ( n ) = 2 l + 1 . It is clear that values in the table satisfy this equation. Or we can think that after l people are dead there are only 2 m people and we go to the 2 l + 1 th person. He must be the survivor. So f ( n ) = 2 l + 1 . Below, we give a proof by induction.

Theorem: If n = 2 m + l and 0 l < 2 m , then f ( n ) = 2 l + 1 .

Proof: We use strong induction on n . The base case n = 1 is true. We consider separately the cases when n is even and when n is odd.

If n is even, then choose l 1 and m 1 such that n / 2 = 2 m 1 + l 1 and 0 l 1 < 2 m 1 . Note that l 1 = l / 2 . We have f ( n ) = 2 f ( n / 2 ) 1 = 2 ( ( 2 l 1 ) + 1 ) 1 = 2 l + 1 , where the second equality follows from the induction hypothesis.

If n is odd, then choose l 1 and m 1 such that ( n 1 ) / 2 = 2 m 1 + l 1 and 0 l 1 < 2 m 1 . Note that l 1 = ( l 1 ) / 2 . We have f ( n ) = 2 f ( ( n 1 ) / 2 ) + 1 = 2 ( ( 2 l 1 ) + 1 ) + 1 = 2 l + 1 , where the second equality follows from the induction hypothesis. This completes the proof.

We can solve for l to get an explicit expression for f ( n ) :

f ( n ) = 2 ( n 2 log 2 ( n ) ) + 1

The most elegant form of the answer involves the binary representation of size n : f ( n ) can be obtained by a one-bit left cyclic shift of n itself. If we represent n in binary as n = 1 b 1 b 2 b 3 b m , then the solution is given by f ( n ) = b 1 b 2 b 3 b m 1 . The proof of this follows from the representation of n as 2 m + l or from the above expression for f ( n ) .

Implementation: If n denotes the number of people, the safe position is given by the function f ( n ) = 2 l + 1 ,where n = 2 m + l and 0 l < 2 m .

Now if we represent the number in binary format, the first bit denotes 2 m and remaining bits will denote l . For example, when n=41, its binary representation is

n = 1 0 1 0 0 1

2m = 1 0 0 0 0 0

l = 0 1 0 0 1

The general case

The easiest way to solve this problem in the general case is to use dynamic programming by performing the first step and then using the solution of the remaining problem. When the index starts from one, then the person at s shifts from the first person is in position ( ( s 1 ) mod n ) + 1 , where n is the total number of persons. Let f ( n , k ) denote the position of the survivor. After the k -th person is killed, we're left with a circle of n 1 , and we start the next count with the person whose number in the original problem was ( k mod n ) + 1 . The position of the survivor in the remaining circle would be f ( n 1 , k ) if we start counting at 1 ; shifting this to account for the fact that we're starting at ( k mod n ) + 1 yields the recurrence

f ( n , k ) = ( ( f ( n 1 , k ) + k 1 ) mod n ) + 1 ,  with  f ( 1 , k ) = 1 ,

which takes the simpler form

g ( n , k ) = ( g ( n 1 , k ) + k ) mod n ,  with  g ( 1 , k ) = 0

if we number the positions from 0 to n 1 instead.

This approach has running time O ( n ) , but for small k and large n there is another approach. The second approach also uses dynamic programming but has running time O ( k log n ) . It is based on considering killing k-th, 2k-th, ..., ( n / k k ) -th people as one step, then changing the numbering.

This improved approach takes the form

g ( n , k ) = { 0 if  n = 1 ( g ( n 1 , k ) + k ) mod n if  1 < n < k k ( ( g ( n , k ) n mod k ) mod n ) k 1 where  n = n n k if  k n

References

Josephus problem Wikipedia