پرونده:Collatz-graph-50-no27.svg

پروندهٔ اصلی(پروندهٔ اس‌وی‌جی، با ابعاد ۳۹۳ × ۱٬۰۴۵ پیکسل، اندازهٔ پرونده: ۱۲ کیلوبایت)

خلاصه

توضیح
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')
تاریخ ‏۱۰ ژوئن ۲۰۰۷‏ (تاریخ اصلی بارگذاری)
منبع Transferred from en.wikipedia to Commons by Derlay using 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

عنوان

شرحی یک‌خطی از محتوای این فایل اضافه کنید

آیتم‌هایی که در این پرونده نمایش داده شده‌اند

توصیف‌ها

checksum انگلیسی

7827c7463cd0119cfabc6c5c5b2b3f01135d7e33

۱۲٬۳۰۱ بایت

۱٬۰۴۵ پیکسل

۳۹۳ پیکسل

تاریخچهٔ پرونده

روی تاریخ/زمان‌ها کلیک کنید تا نسخهٔ مربوط به آن هنگام را ببینید.

تاریخ/زمانبندانگشتیابعادکاربرتوضیح
کنونی‏۲۵ مهٔ ۲۰۱۰، ساعت ۱۰:۰۳تصویر بندانگشتی از نسخهٔ مورخ ‏۲۵ مهٔ ۲۰۱۰، ساعت ۱۰:۰۳۳۹۳ در ۱٬۰۴۵ (۱۲ کیلوبایت)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 [

صفحهٔ زیر از این تصویر استفاده می‌کند:

کاربرد سراسری پرونده

ویکی‌های دیگر زیر از این پرونده استفاده می‌کنند: