Photosynthetically active radiation: Difference between revisions

From formulasearchengine
Jump to navigation Jump to search
en>Mikiemike
m →‎Yield Photon Flux: YPF function approx, table
 
en>Mikiemike
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
In [[computer science]] and [[mathematics]], the '''Josephus Problem''' (or '''Josephus permutation''') is a theoretical problem related to a certain [[counting-out game]].
Boat Contractor and Repairer Renaldo Bedell from Rosemere, spends time with interests for example relaxing, property developers in singapore and sketching. Have been recently visiting Keoladeo National Park.<br><br>Stop by my web-site - [http://pcrepairitkid.com/?option=com_k2&view=itemlist&task=user&id=71127 Pcrepairitkid.com]
 
There are people standing in a [[circle]] waiting to be executed. The counting out begins at some point in the circle and proceeds around the circle in a fixed direction. In each step, a certain number of people are skipped and the next person is executed. The elimination proceeds around the circle (which is becoming smaller and smaller as the executed people are removed), until only the last person remains, who is given freedom.
 
The task is to choose the place in the initial circle so that you are the last one remaining and so survive.
 
==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, the exit of which was blocked by [[Roman soldiers|Romans]]. They chose suicide over capture and decided that they would form a circle and start killing themselves using a step of three. Josephus states that by luck or possibly by the hand of God, he and another man remained the last and gave up to the Romans.
 
The reference comes from Book 3, Chapter 8, par 7 of Josephus' ''[[The Jewish War]]'' (writing of himself in the third person):
 
{{quotation|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.<ref name="Josephus18">[[Flavius Josephus]], [http://www.gutenberg.org/dirs/2/8/5/2850/2850-h/book3.htm#2HCH0008 Wars Of The Jews III. 8. 7.] (Translation by William Whiston).</ref>}}
 
==Solution==
In the following, <math>n</math> denotes the number of people in the initial circle, and <math>k</math> denotes the count for each step, that is, <math>k-1</math> people are skipped and the <math>k</math>-th is executed. The people in the circle are numbered from <math>1</math> to <math>n</math>.
 
===k=2===
We explicitly solve the problem when every 2nd person will be killed, i.e. <math>k=2</math>. (For the more general case <math>k\neq 2</math>, we outline a solution below.)
We express the solution recursively. Let <math>f(n)</math> denote the position of the survivor when there are initially <math>n</math> people (and <math>k=2</math>).
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 <math>x</math> during the second time around the circle was originally in position <math>2x - 1</math> (for every choice of <math>x</math>). Let <math>n=2j</math>. The person at <math>f(j)</math> who will now survive was originally in position <math>2f(j) - 1</math>. This gives us the recurrence
 
:<math>f(2j)=2f(j)-1\;.</math>
 
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 <math>x</math> was originally in position <math>2x+1</math>. This gives us the recurrence
 
:<math>f(2j+1)=2f(j)+1\;.</math>
 
When we tabulate the values of <math>n</math> and <math>f(n)</math> we see a pattern:
 
{|
|<math>n</math> || 1 || 2 || 3 || 4 || 5 || 6 || 7 || 8 || 9 || 10 || 11 || 12 || 13 || 14 || 15 || 16
|-
|<math>f(n)</math> || 1 || 1 || 3 || 1 || 3 || 5 || 7 || 1 || 3 || 5 || 7 || 9 || 11 || 13 || 15 || 1
|}
 
This suggests that <math>f(n)</math> is an increasing odd sequence that restarts with <math>f(n)=1</math> whenever the index ''n'' is a power of 2.
Therefore, if we choose ''m'' and ''l'' so that <math>n=2^m+l</math> and <math>0\leq l<2^m</math>, then <math>f(n)=2 \cdot l+1</math>.
It is clear that values in the table satisfy this equation. Or we can think that after <math>l</math> people are dead there are only <math>2^m</math> people and we go to the <math>2l+1</math>th person. He must be the survivor. So <math>f(n)=2l+1</math>. Below, we give a proof by induction.
 
'''Theorem:''' If <math>n=2^m+l</math> and <math>0\leq l<2^m</math>, then <math>f(n) = 2l+1</math>.
 
'''Proof:''' We use [[strong induction]] on <math>n</math>. The base case <math>n=1</math> is true.
We consider separately the cases when <math>n</math> is even and when <math>n</math> is odd.
 
If <math>n</math> is even, then choose <math>l_1</math> and <math>m_1</math> such that <math>n/2 = 2^{m_1}+l_1</math> and <math>0\leq l_1 < 2^{m_1}</math>. Note that <math>l_1 = l/2</math>.
We have <math>f(n) = 2f(n/2)-1=2((2l_1)+1) - 1=2l+1</math>, where the second equality follows from the induction hypothesis.
 
If <math>n</math> is odd, then choose <math>l_1</math> and <math>m_1</math> such that <math>(n-1)/2 = 2^{m_1}+l_1</math> and <math>0\leq l_1 < 2^{m_1}</math>. Note that <math>l_1 = (l-1)/2</math>.
We have <math>f(n) = 2f((n-1)/2)+1=2((2l_1)+1) + 1=2l+1</math>, where the second equality follows from the induction hypothesis. This completes the proof.
 
We can solve for <math>l</math> to get an explicit expression for <math>f(n)</math>:
 
:<math>f(n) = 2(n-2^{\lfloor log_2(n) \rfloor})+1</math>
 
The most elegant form of the answer involves the binary representation of size <math>n</math>: <math>f(n)</math> can be obtained by a one-bit left cyclic shift of <math>n</math> itself. If we represent <math>n</math> in binary as <math>n=1 b_1 b_2 b_3\dots b_m</math>, then the solution is given by <math>f(n)=b_1 b_2 b_3 \dots b_m 1</math>. The proof of this follows from the representation of <math>n</math> as <math>2^m+l</math> or from the above expression for <math>f(n)</math>.
 
'''Implementation:''' A simple python function can be:
<syntaxhighlight lang="python">
  def josephus_2( n ):
    from math import log
    return 2*(n - 2**(int(log(n,2))))+1</syntaxhighlight>
 
===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 <math>s</math> shifts from the first person is in position <math>((s-1)\bmod n)+1</math>, where n is the total number of persons. Let <math>f(n,k)</math> denote the position of the survivor. After the <math>k</math>-th person is killed, we're left with a circle of <math>n-1</math>, and we start the next count with the person whose number in the original problem was <math>(k\bmod n)+1</math>. The position of the survivor in the remaining circle would be <math>f(n-1,k)</math> if we start counting at <math>1</math>; shifting this to account for the fact that we're starting at <math>(k\bmod n)+1</math> yields the recurrence
 
: <math>f(n,k)=((f(n-1,k)+k-1) \bmod n)+1,\text{ with }f(1,k)=1\,,</math>
 
which takes the simpler form
 
: <math>g(n,k)=(g(n-1,k)+k) \bmod n,\text{ with }g(1,k)=0</math>
 
if we number the positions from <math>0</math> to <math>n-1</math> instead.
 
This approach has [[Big-O notation|running time]] <math>O(n)</math>, but for small <math>k</math> and large <math>n</math> there is another approach. The second approach also uses dynamic programming but has running time <math>O(k\log n)</math>. It is based on considering killing ''k''-th, 2''k''-th, ..., <math>(\lfloor n/k \rfloor k)</math>-th people as one step, then changing the numbering.
 
'''Implementation:''' A simple python function can be (but might be slow/fail for large n and small k):
<syntaxhighlight lang="python">
  def josephus(n, k):
    if n ==1:
      return 1
    else:
      return ((josephus(n-1,k)+k-1) % n)+1
</syntaxhighlight>
 
Alternatively a simple loop can also be run like:
<syntaxhighlight lang="python">
  def josephus(n, k):
    r = 0
    i = 1
    while i <= n:
      r = (r + k) % i;
      i+= 1
    return r+1
</syntaxhighlight>
 
A dynamic programming solution in Haskell:
<syntaxhighlight lang="haskell">
  josephus n k = josephus' [1..n] k where
      josephus' xs k
          | length xs == 1 = head xs
          | otherwise      = josephus' (killnext k xs) k where
          killnext k xs = take (length xs - 1) (drop k (cycle xs))
</syntaxhighlight>
 
A somewhat more elaborate version in Java:
<syntaxhighlight lang="java">
  int josephus(int n, int k) {
        return josephus(n, k, 1);
  }
  int josephus(int n, int k, int startingPoint) {
      if(n == 1)
          return 1;
      int newSp = (startingPoint + k - 2) % n + 1;
 
      int survivor = josephus(n - 1, k, newSp);
      if (survivor < newSp) {
          return survivor;
      } else
          return survivor + 1;
  }
</syntaxhighlight>
 
==Variants and generalizations==
According to ''[[Concrete Mathematics]]'', section 1.3, Josephus had an accomplice; the problem was then to find the places of the two last remaining survivors (whose conspiracy would ensure their survival).
 
===Extended Josephus problem===
Problem definition: There are ''n'' persons, numbered 1 to ''n'', around a circle.
We eliminate second of every two remaining persons until one person remains. Given the ''n'', determine the number of ''x''th person who is eliminated.<ref>Armin Shams-Baragh [http://www.cs.man.ac.uk/~shamsbaa/Josephus.pdf Formulating The Extended Josephus Problem].</ref>
 
==Notes==
{{reflist}}
 
==References==
* {{cite book |author=[[Thomas H. Cormen]], [[Charles E. Leiserson]], [[Ronald L. Rivest]], and [[Clifford Stein]] |title=[[Introduction to Algorithms]] |edition=Second Edition |publisher=MIT Press and McGraw-Hill |year=2001 |isbn=0-262-03293-7 |chapter=Chapter 14: Augmenting Data Structures |page=318}}
 
==External links==
* [http://www.cut-the-knot.org/recurrence/flavius.shtml Josephus Flavius game] (Java Applet) at [[cut-the-knot]] allowing selection of every n<sup>th</sup> out of 50 (maximum).
* [http://mathworld.wolfram.com/JosephusProblem.html Josephus Problem at the MathWorld encyclopedia]
* [http://www.maa.org/publications/periodicals/loci/resources/the-josephus-problem Josephus Problem at Shippensburg University]
 
[[Category:Combinatorics]]
[[Category:Permutations]]
[[Category:Mathematical problems]]
[[Category:Computational problems]]

Latest revision as of 21:39, 27 September 2014

Boat Contractor and Repairer Renaldo Bedell from Rosemere, spends time with interests for example relaxing, property developers in singapore and sketching. Have been recently visiting Keoladeo National Park.

Stop by my web-site - Pcrepairitkid.com