ファイル:Collatz-graph-50-no27.svg

ページのコンテンツが他言語でサポートされていません。

元のファイル(SVG ファイル、393 × 1,045 ピクセル、ファイルサイズ: 12キロバイト)

概要

解説
English: Directed graph showing the orbits of the odd numbers less than 50 (with the exceptions of 27, 31, 41, and 47, because they would make it too tall) under the Collatz map.

For a larger graph, see :Image:Collatz-graph-300.svg.

Created with Graphviz, with the help of this Python program:

 dotfile = file('collatz-graph.dot', 'w')
 
 limit = 50
 
 def f(n):
   while n % 2 == 0: # divide by 2 until it's odd
     n /= 2
   n = 3*n + 1
   while n % 2 == 0:
     n /= 2
   return n
 
 explored = set([1,27,31,41,47])
 
 dotfile.write('digraph {\n')
 
 for n in range(3, limit, 2): # odd numbers
   while n not in explored:
     dotfile.write(str(n) + ' -> ')
     explored.add(n)
     n = f(n)
   dotfile.write(str(n) + ';\n')
 
 dotfile.write('}\n')
日付 2007年6月10日 (当初のアップロード日)
原典 en.wikipedia からコモンズに Derlay によって CommonsHelper を用いて移動されました。
作者 英語版ウィキペディアKeenan Pepperさん

ライセンス

Public domain この著作物は、著作者である英語版ウィキペディアKeenan Pepperさんによって権利が放棄され、パブリックドメインとされました。これは全世界で適用されます。
一部の国では、これが法的に可能ではない場合があります。その場合は、次のように宣言します。
Keenan Pepperは、あらゆる人に対して、法により必要とされている条件を除き、如何なる条件も課すことなく、あらゆる目的のためにこの著作物を使用する権利を与えます。

元のアップロードログ

元のファイルページはこちら。以下の利用者は全てen.wikipediaに属します。
  • 2007-06-10 20:25 Keenan Pepper 393×1045× (12301 bytes) Directed graph showing the orbits of the odd numbers less than 50 (with the exceptions of 27, 31, 41, and 47, because they would make it too tall) under the [[:en:Collatz conjecture|Collatz map]]. Created with [[:en:Graphviz|Graphviz]], with the help of

キャプション

このファイルの内容を1行で記述してください

このファイルに描写されている項目

題材

10 6 2007

7827c7463cd0119cfabc6c5c5b2b3f01135d7e33

12,301 バイト

1,045 ピクセル

393 ピクセル

ファイルの履歴

過去の版のファイルを表示するには、その版の日時をクリックしてください。

日付と時刻サムネイル寸法利用者コメント
現在の版2010年5月25日 (火) 10:032010年5月25日 (火) 10:03時点における版のサムネイル393 × 1,045 (12キロバイト)Derlay{{Information |Description={{en|Directed graph showing the orbits of the odd numbers less than 50 (with the exceptions of 27, 31, 41, and 47, because they would make it too tall) under the Collatz map. For a larger graph, see [

以下のページがこのファイルを使用しています:

グローバルなファイル使用状況

以下に挙げる他のウィキがこの画像を使っています: