Fitxer original(fitxer SVG, nominalment 393 × 1.045 píxels, mida del fitxer: 12 Ko)

Descripció a Commons

Resum

Descripció
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')
Data 10 de juny de 2007 (original upload date)
Font Transferred from en.wikipedia to Commons by Derlay using CommonsHelper.
Autor Keenan Pepper de la Viquipèdia en anglès

Llicència

Public domain S'ha alliberat aquesta obra al domini públic pel seu autor Keenan Pepper de la Viquipèdia en anglès. Això s'aplica a tot el món.
En alguns països això pot no ser legalment possible, en tal cas:
Keenan Pepper concedeix a tothom el dret d'usar aquesta obra per a qualsevol propòsit, sense cap condició llevat d'aquelles requerides per la llei.

Registre original de càrregues

La pàgina de descripció original era aquí. Els noms d'usuari a continuació es refereixen a 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

Llegendes

Afegeix una explicació d'una línia del que representa aquest fitxer

Elements representats en aquest fitxer

representa l'entitat

1.045 píxel

393 píxel

Historial del fitxer

Cliqueu una data/hora per veure el fitxer tal com era aleshores.

Data/horaMiniaturaDimensionsUsuari/aComentari
actual12:03, 25 maig 2010Miniatura per a la versió del 12:03, 25 maig 2010393 × 1.045 (12 Ko)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 [

La pàgina següent utilitza aquest fitxer:

Ús global del fitxer

Utilització d'aquest fitxer en altres wikis: