Neulich bin ich im Web auf eine Seite (Autor war ein Herr Arno Schwarz)
gestoßen, die sich mit den "Grenzen der Mathematik" beschäftigte. Dort
fand ich dann die Definition für wundersame Zahlen. Zusammenfassung
folgt.
Die Collatz-Funktion g: N -> N sieht folgendermaßen aus:
g(n) = n/2, falls n gerade und g(n) = 3n+1, falls n ungerade
Eine natürliche Zahl n heißt wundersam, wenn es eine natürliche Zahl k
gibt, so daß g^k(n) = 1 ist. Soll heißen, nach k-facher Hintereinander-
ausführung der durch die Collatz-Funktion beschriebenen Abbildung landet
man wieder bei der 1. Beispiel: 1 -> 4 -> 2 -> 1.
Weiterhin wurde erwähnt, daß die Annahme besteht, daß alle natürlichen
Zahlen wundersam sind.
---
Gibt es da mittlerweile einen Beweis oder ein Gegenbeispiel? Oder einen
Beweis dafür, daß die Annahme nicht beweisbar ist?
---
Daraufhin habe ich mir ein paar Gedanken über dieses Thema gemacht und
bin zu einigen Ergebnissen gekommen, die ich im folgenden vorstelle.
Ist n ungerade, so ist 3n+1 auf jeden Fall gerade. Zwangsweise folgt als
nächster Schritt die Halbierung.
Seien n, k, m aus N. Sei n die auf Wundersamkeit zu prüfende Zahl. Seien
die Zahlen von 1 bis (n-1) bereits als wundersam bekannt.
Ist n gerade, so wird es durch die Collatz-Funktion auf n/2 abgebildet,
dies ist aber n. V. bereits als wundersam bekannt, also ist auch n
wundersam.
Ist n ungerade in der Form n = 4m-3, m eine natürliche Zahl, so wird es
durch die Collatz-Funktion zunächst zu 3(4m-3)+1 = 12m-8. Dies ist wieder
gerade und wird im nächsten Schritt also zu 6m-4. Dies ist wieder gerade
und wird im nächsten Schritt zu 3m-2. 3m-2 ist aber < 4m-3 = n, solange
m > 1 ist. Im Falle m=1 gilt ohnehin 3m-2=1. Die Zahl n ist also n. V.
auf jeden Fall wundersam.
Für ungerade n der Form n = 4m-1 hingegen wird es schwierig. Nach dem
ersten Schritt haben wir 3(4m-1)+1 = 12m-2. Dies ist jedenfalls gerade
und wird zu 6m-1. Fallunterscheidung:
- Ist m ungerade, so ist 6m-1 wieder gerade und wird zu (6m-1)/2 = 3m-1/2,
was kleiner als n = 4m-1 ist für alle natürlichen m. Dann wäre die Zahl
n also wieder wundersam.
- Ist aber m gerade, so wird aus 6m-1 nun 3(6m-1)+1 = 18m-2. Dies ist
jedenfalls gerade und wird zu 9m-1. Da m gerade ist, ist 9m-1 ungerade
und wird zu 3(9m-1)+1 = 27m-2. Dies ist gerade, und der nächste Schritt
führt zu 13,5*m-1, was nun gerade oder ungerade sein kann.
Zu prüfen sind also nur die Zahlen n, die sich als 4m-1 darstellen lassen.
Ich habe nach diesen Überlegungen ein C-Programm geschrieben, das nur die
Zahlen 3, 7, 11, ... überprüft. Da die Rechnungen alle vergleichsweise
einfach sind, ist das Programm nach wenigen Stunden irgendwo bei einer
Zahl um 9.000.000.000 angelangt. Trotzdem würde mich ein Beweis weitaus
mehr interessieren. Meiner Meinung nach liegt die Schwierigkeit darin,
daß die Vorschrift n -> 3n+1 für ungerade n die Primfaktorzerlegung von
n massiv verändert.
Vielen Dank für Euer Interesse, soweit vorhanden. :)
--
Daniel.
Ist ein sehr beruehmtes Problem. Und sicher noch nichts davon gezeigt.
Zumindestens noch nichts veroeffentlicht
MfG
Michael
du hast folgendes Problem analysiert:
[n:=m
repeat
if n odd then n:=3*n+1
else n:=n/2;
until n=1;
]
>Gibt es da mittlerweile einen Beweis oder ein Gegenbeispiel? Oder
einen
>Beweis dafür, daß die Annahme nicht beweisbar ist?
Ich denke nicht.
>Daraufhin habe ich mir ein paar Gedanken über dieses Thema gemacht
und
>bin zu einigen Ergebnissen gekommen, die ich im folgenden vorstelle.
[Beweis für einige Fälle]
>Für ungerade n der Form n = 4m-1 hingegen wird es schwierig. Nach dem
>ersten Schritt haben wir 3(4m-1)+1 = 12m-2. Dies ist jedenfalls
gerade
>und wird zu 6m-1. Fallunterscheidung:
>
>- Ist m ungerade, so ist 6m-1 wieder gerade und wird zu (6m-1)/2 =
3m-1/2,
> was kleiner als n = 4m-1 ist für alle natürlichen m. Dann wäre die
Zahl
> n also wieder wundersam.
>- Ist aber m gerade, so wird aus 6m-1 nun 3(6m-1)+1 = 18m-2. Dies ist
> jedenfalls gerade und wird zu 9m-1. Da m gerade ist, ist 9m-1
ungerade
> und wird zu 3(9m-1)+1 = 27m-2. Dies ist gerade, und der nächste
Schritt
> führt zu 13,5*m-1, was nun gerade oder ungerade sein kann.
Dies ist jetzt noch nicht ganz durchdacht, aber lies trotzdem mal:
Du hast zuerst n dargestellt als 2m,
dann als 4m-3 (=4m+1)
nun müßte also folgen: 8m+1
dann 16m+1
etc...
Heißt also:
Deine Zahl 13,5*m-1 wird etwa zu 50% gerade sein und halbiert werden,
zu 50% aber weiter vergrößert werden.
Deshalb muß eine doppelt so starke Bedingung an n gestellt werden,
dann wieder, und nochmal verdoppelt ...
>Ich habe nach diesen Überlegungen ein C-Programm geschrieben
Scheinbar ist der Computer bei den Mathematik-Puristen nicht beliebt
;-)
(Jedenfalls als Beweismittel unbrauchbar)
Ich würde dennoch diesen Weg gehen.
(Ja ich bin Informatiker)
Es gibt eine Möglichkeit, die Korrektheit und Termination von
Programmen zu beweisen.
Für diese einfachen Überlegungen braucht man noch nicht mal einen
Computer,
man nehme sich eine fehlerlose Turingmaschine (unendlich Speicher,
aber hier: endliche Zeit)
tippe das Programm ein, und beweise, daß es terminiert.
Dabei werden Programmfehler, Rechenfehler, BlueScreens und andere GAUs
ausgeschlossen und der Beweis müßte allgemein anerkannt werden.
(Ich will ja nicht verhehlen, daß wir damit immer noch keinen Schritt
von deinen Ideen weitergekommen sind)
cu,
stw
---
Don't drink as root!
Hallo Daniel,
dieser Schluß ist falsch, denn 6m-1 ist immer ungerade, weil 6m gerade ist. Damit
bleibt nur der schwierige Teil Deiner Fallunterscheidung übrig.
Gruß Rainer
--
_____________________________________________________________
NewsGroups Suchen, lesen, schreiben mit http://netnews.web.de
Um die Aussage "Alle natuerlichen Zahlen sind wundersam" zu
falsifizieren, muss die Terminierung folgender Schleife S gezeigt
werden:
n:= 2;
while istWundersam(n) do
n := n + 1
wobei istWundersam eine boolsche Funktion ist, die true liefert,
falls n wundersam ist, sonst false.
Und da beginnen die Probleme ;-)
Angenommen istWundersam waere so implementiert, wie im letzten
Beitrag, dann haette man folgendes Paradoxon:
S terminiert genau dann wenn istWundersam(n) nicht terminiert.
Angenommen man koennte beweisen, dass S nicht terminiert. Dies
nuetzte gar nichts, denn entweder man hat eine nichtwundersame
Zahl gefunden oder die Schleife ueberprueft die naechste natuerliche
Zahl.
Da es keinen Algorithmus istEndlosschleife(Startwerte,Schleife)
gibt, der entscheidet, ob eine Schleife S fuer Startwerte ai
terminiert, kann man m.E. obige Aussage ueber partielle bzw.
totale Korrektheit von Algorithmen nicht beweisen.
Viele Gruesse,
Andreas
Hallo auch,
ich beschäftige mich seit Jahren immer mal wieder mit dem Problem, weil ich es
(auch) sehr faszinierend finde (bin auch primär Informatiker).
Ich untersuche das Problem in der Hinsicht, daß es reichen würde, wenn jede
Ausgangszahl n eine Zahl m mit m<n erreichen würde.
Dazu sehe ich mir gerne die 4 Zahlenklassen
12*n+1, 12*n+5, 12*n+7 und 12*n+11 an und wie diese ineinander übergehen (und
dabei wachsen (+7, +11) oder fallen (+1, +5)). Wenn jemand das genauer
interessiert, buddel ich meine Ergebnisse gerne mal aus.
Viele Grüße,
Burkart
Gut gekontert ;-)
Man kann sogar nachweisen, daß es keinen Algorithmus gibt, der auf einem
Computer ausgeführt wird, und überprüft, ob ein Programm terminiert:
Sei terminiert() dieser Algorithmus:
if terminiert(self)
then repeat until false;
else write('Hello World');
Wenn das Programm also terminiert, so wird die Endlosschleife
durchlaufen, dann terminiert das Programm also nicht. Widerspruch.
Wenn das Programm nicht terminiert, so wird "Hello World" ausgegeben
und das Programm terminiert.
Wieder Widerspruch.
Also kann die Methode terminiert() nicht auf diesem Computer ausgeführt
werden...
Aber mal was anderes:
Betrachten wir den Algorithmus nochmal:
repeat
if n odd then n:=3n+1
else n:=n/2;
until n=1;
Nachdem wir bei der 1 angekommen sind, haben wir häufig halbiert.
Hätten wir das unterlassen,
so wäre das Endergebnis 2^x
binär: 1000000 (x Nullen)
Also ist nur noch zu zeigen,
daß a_n= 3a_(n-1) +1
irgendwann zu einer Zweierpotenz wird.
Nun möchte ich nur noch zeigen, wohin meine Gedanken gehen:
3*n +1 kann binär so dargestellt werden:
n= 010110101010
2n= 0101101010100
1= 0000000000001
-----------------
ja, ist mir zu schwer
Sei nun a=2^x,
so muß der Schritt vorher sein: a= 3*n+1 -> n=(a-1)/3
binär so:
10000 -1
01111 /11
00101
Ich bin mir darüber im Klaren, daß dies nur ein Ansatz ist,
meine aber, daß dieser verfolgt werden sollte.
cu,
stw
---
If god had intended man to smoke, he would have set him on fire
Bloß ist gut. :)
Meine Zahlenklassen 12*n+7 und 12*n+11 sind Dein 4m-1, wobei
12*n+3 wegfällt, weil durch 3 teilbare n nie erreicht werden
können.
Du kannst ja mal versuchen, 12*n+7 und 12*n+11 zu untersuchen,
gerade letzte finde ich sehr interessant.
12*n+7 geht zu 12*n+11 (neben 12*n+5).
Zentral sind aber eigentlich 12*n+1 und 12*n+5, weil diese sich nach
einigermaßend erkennbarem Schema wiederholt erreichen.
Möchtest Du selber weiterforschen oder mehr Erkenntnisse?
Viele Grüße,
Burkart
Rainer Jahn <raine...@maschinenbau.tu-ilmenau.de> wrote:
>>- Ist m ungerade, so ist 6m-1 wieder gerade und wird zu
>> (6m-1)/2 = 3m-1/2,
> dieser Schluß ist falsch, denn 6m-1 ist immer ungerade, weil 6m gerade
> ist.
Hoppla! :) Da hast Du natürlich recht. Ich ziehe das zurück.
--
Daniel.
Burkart Venzke <venzke....@eae.com> wrote:
> dabei wachsen (+7, +11) oder fallen (+1, +5)). Wenn jemand das genauer
> interessiert, buddel ich meine Ergebnisse gerne mal aus.
Dann mal los, ich bin ganz Ohr (bzw. Auge).
--
Daniel.
Hallo Daniel,
hallo alle Collatz-(3x+1)-Problem-Fans,
die Collatz-Vermutung ist beweisen für alle Zahlen bis 2.7*10^16, s.
den
dritten Link (Wolfram) in nachstehender Liste.
Ich möchte ja kein Spielverderber sein, aber zu dem Collatz-Problem gibt
es sogar spezielle Kongresse (s. ersten Link) und Unmengen von Arbeiten;
die ersten 100 Referenzen von 1420 aus einer Google-Suche habe ich
spaßeshalber mal angefügt.
Trotzdem noch viel Spaß :-)
Hermann
.---------------------------------------------------------------------------
---------------------------------------
Google results 1-100 of about 1,420 for collatz problem. Search
took 0.73 seconds.
Category: Science > Math > Number Theory
International Conference on the Collatz Problem
...Conference on the Collatz Problem and Related Topics August 5-6,...
...3x+1 problem ( also known as the Syracuse algorithm, Collatz',...
www.math.grin.edu/~chamberl/conf.html - 6k - Cached - Similar pages
CSC-152 99F : Notes on Assignment 3: Recursion and Big-O
...number of articles on the Collatz problem. One at...
...Filled in answers up to the Collatz problem. Sunday, 11 October...
www.math.grin.edu/~rebelsky/Courses/CS152/99F/Assignments/notes.03.html -
46k - Cached - Similar pages
[ More results from www.math.grin.edu ]
Collatz Problem -- from Eric Weisstein's World of Mathematics
...Number Theory "> Sequences Collatz Problem A problem posed...
...be an integer. Then the Collatz problem asks if iterating (1)...
www.mathworld.wolfram.com/CollatzProblem.html - 36k - Cached - Similar
pages
C -- from Eric Weisstein's World of Mathematics
...Property Cauchy's Formula Collatz Problem Cotes Number...
...Calculus Circular Chessboard Constant Problem Calculus of
Variations...
www.mathworld.wolfram.com/ctop.html - 101k - Cached - Similar pages
[ More results from mathworld.wolfram.com ]
CABC - Collatz (3x+1) Problem
...camp...@mscs.dal.ca The Collatz (3x+1) Problem NEW! International...
...International Conference on the Collatz Problem and Related Topics...
www.ug.cs.dal.ca/~campbell/collatz.html - 9k - Cached - Similar pages
CABC - Collatz (3x+1) Problem History
...camp...@mscs.dal.ca Brief History of the Collatz (3x+1) Problem...
...unknown exactly how the Collatz problem came into existence. It is...
www.ug.cs.dal.ca/~campbell/collhist.html - 8k - Cached - Similar pages
[ More results from www.ug.cs.dal.ca ]
The Collatz Problem (3x+1)
...The Collatz Problem (3x+1) I was introduced to the Collatz...
...recently revived my interest in it. The problem deals with sequences
of...
www.pokey.itsc.uah.edu/~criswell/collatz.html - 29k - Cached - Similar pages
Collatz problem image
...Image From the Collatz Problem By Andrew Shapira February 15, 1998...
...eventually yield a 1. The ``Collatz problem'', also known as the...
www.cs.rpi.edu/~shapiraa/collatz.html - 6k - Cached - Similar pages
Collatz_Problem
...International Conference on the Collatz Problem - International...
...This conference is...... Collatz problem image - Image From the...
www.geometry.net/Theorems_and_Conjectures/Collatz_Problem.htm - 27k -
Cached -
Similar pages
Collatz Problem
...Previous: Does there exist a Collatz Problem Take any natural...
...Theory. Richard K Guy. Springer, Problem E16. Elementary Number
Theory....
www.cs.unb.ca/~alopez-o/math-faq/node61.html - 3k - Cached - Similar pages
Contents
...number that is perfect and odd? Collatz Problem Goldbach's...
...Mathematical Games The Monty Hall problem Master Mind Axiom of Choice
and...
www.cs.unb.ca/~alopez-o/math-faq/mathtext/node1.html - 10k - Cached -
Similar pages
[ More results from www.cs.unb.ca ]
Collatz Problem
... Collatz Problem A problem posed by L. Collatz in...
...be an Integer. Then the Collatz problem asks if iterating (1)...
www.neuronio.mat.uc.pt/crcmath/math/math/c/c433.htm - 31k - Cached - Similar
pages
Problem
...Curve Problem, Coin Problem, Collatz Problem, Condom...
... Problem An exercise whose solution is desired. See also Alhazen's...
www.neuronio.mat.uc.pt/crcmath/math/math/p/p658.htm - 28k - Cached -
Similar
pages
[ More results from neuronio.mat.uc.pt ]
www.math.niu.edu/~rusin/papers/known-math/98/collatz_mine
...Collatz "proof" (was Re: Collatz ("3n+1") Problem:...
...up trying to solve the 3n+1 Collatz problem and thought of how to...
12k - Cached - Similar pages
www.math.niu.edu/~rusin/papers/known-math/99/collatz_undec
...Myerson) Subject: Re: Is Collatz Conjecture (3N+1 Problem)...
...natural generalization of the Collatz problem, and showed that...
9k - Cached - Similar pages
[ More results from www.math.niu.edu ]
F. Conjectures (Math 413, Number Theory)
...Function Conjectures The Collatz Problem The Riemann Hypothesis...
...Guy, 1994, Sect B.37 The Collatz Problem Consider the function f (...
www.math.umbc.edu/~campbell/Math413Fall98/Conjectures.html - 10k - Cached -
Similar pages
Introduction
...Introduction The 3x + 1 problem, also known as the Collatz...
...years. The problem is traditionally credited to Lothar Collatz, at...
www.cecm.sfu.ca/organics/papers/lagarias/paper/html/node1.html - 12k -
Cached -
Similar pages
The 3x+1 problem and its generalizations
...Introduction) The 3x+1 problem, also known as the Collatz...
...3x+1 problem and its generalizations*** Jeff Lagarias AT Bell...
www.cecm.sfu.ca/organics/papers/lagarias/ - 4k - Cached - Similar pages
[ More results from www.cecm.sfu.ca ]
MathSource: The Collatz (3x + 1) Problem
.../Applications/Mathematics/0200-305 The Collatz (3x + 1) Problem...
...computes the iterates of the Collatz map: x -> x/2, if x is even; x ->...
www.mathsource.com/Content/Applications/Mathematics/0200-305 - 2k - Cached -
Similar pages
MathSource 2.2: The Collatz (3x + 1) Problem
.../Applications/Mathematics/0200-305 The Collatz (3x + 1) Problem...
...computes the iterates of the Collatz map: x -> x/2, if x is even;
x ->...
www.mathsource.com/Content22/Applications/Mathematics/0200-305 - 2k -
Cached
- Similar pages
[ More results from www.mathsource.com ]
Problem 1 — The Collatz Sequence
... Problem 1 — The Collatz Sequence An algorithm given by Lothar...
...integer on many computers. In this problem we want to determine the...
www.acm.inf.ethz.ch/ProblemSetArchive/B_US_NorthCen/1998/prob1.htm - 3k -
Cached
- Similar pages
Problem 1 — The Collatz Sequence
... Problem 1 — The Collatz Sequence An algorithm given by...
...integer on many computers. In this problem we want to determine the...
www.ug.cs.sunysb.edu/~sbcs/Week2/Problema.html - 3k - Cached - Similar pages
Mathematical Talks
...International Conference on the Collatz Problem and Related Topics...
...student papers related to the Collatz Problem (click to see the...
www.seawolf.uofs.edu/~monks/talks.html - 6k - Cached - Similar pages
CADcube (sm) - catalog: /Science/Math/Number_Theory/
...by Jeff Lagarias on the Collatz Problem. The 3x+1 problem -...
...Number Theory Seminars Seva Lev's problem page - A collection of
research...
www.cadfu.com/catalog/index.play/Science/Math/Number_Theory/ - Similar pages
Warm-up Problem 2
...Factorization Next: Postal Stamps Collatz Problem In this question...
...going to explore this open problem concerning a bizzare sequence of...
www.cdf.toronto.edu/~contest/oldwarmup/w2.html - 3k - Cached - Similar pages
Warm-up Problem 3
...Prev: Collatz Problem Postal Stamps In a hypothetical country...
...Trove of Mathematics. Prev: Collatz Problem...
www.cdf.toronto.edu/~contest/oldwarmup/w3.html - 4k - Cached - Similar
pages
[ More results from www.cdf.toronto.edu ]
Introduction to Artificial Intelligence Selmer Bringsjord
...A truly random function? Collatz' Problem as demo of loop form...
...file.) A "picture" of the Collatz Problem More on the...
www.rpi.edu/~brings/intai.html - 24k - Cached - Similar pages
sci.math FAQ: Unsolved Problems
...that is perfect and odd? * Collatz Problem * Goldbach's conjecture...
... Collatz Problem Take any natural number m > 0 . n : = m;...
www.faqs.org/faqs/sci-math-faq/unsolvedproblems/ - 9k - Cached - Similar
pages
Lab1
...kör Fortran90-program. "Collatz problem, the Syracuse...
...Hasse's algorithm, and Ulam's problem" (kärt barn har många namn) Vi...
www.math.chalmers.se/~thomas/KB/Laborationer/Lab1/ - 7k - Cached - Similar
pages
UWA Psychology Personal Pages: Mark R. Diamond
...was an investigation of the Collatz problem. Automorphic squares...
...representations, while the Collatz problem is still unsolved. For...
www.psy.uwa.edu.au/user/markd/ - 15k - Cached - Similar pages
PC World Malta Online
...IDG Network Article 8 - The Collatz Problem Take any positive...
www.bms.com.mt/archive/iss22/num08.htm - 11k - Cached - Similar pages
Numbers and Computers 9 - Mersenne Primes
...archive Article 8 - The Collatz Problem Join the theory-edge list...
...3, 5 and 7 respectively. Thus the problem of finding new perfect
numbers...
www.bms.com.mt/archive/iss23/num09.htm - 13k - Cached - Similar pages
[ More results from www.bms.com.mt ]
List of publications
...S.: “Some Results on the Collatz Problem”, Proceedings of...
...International Conference on the Collatz Problem and Related...
www.infoiasi.ro/~stefan/Lucrari.html - 9k - Cached - Similar pages
www.mirror.ac.uk/sites/mathsource.wri.com/pub/Mathematica2.2/NumberedItems/0
200-305-0011
...NumberTheory`Collatz` *) (*:Title: The Collatz problem,...
...3x+1 Problem *) (*:Author: Ilan Vardi *) (*:Keywords: Collatz...
5k - Cached - Similar pages
Maple | Application Center | Maple Code Library | Code: Collatz
...Performs number of iterations in Collatz's problem, i.e., the 3x+1...
...Details of Maple Codee Library Entry Collatz VIEW collatz Title...
www.maplesoft.com/cybermath/share/collatz.html - 15k - Cached - Similar
pages
Collatz.html
...number of iterations in Collatz's problem, i.e., the 3x+1...
...Michael Monagan, Text taken from Collatz.tex, Gaston H. Gonnet,...
www.maplesoft.com/cybermath/html/collatz.html - 19k - Cached - Similar
pages
[ More results from www.maplesoft.com ]
Math Forum: Ask Dr. Math - High School Level
...Goldbach's Conjecture or the Collatz Problem? Angstrom Numbers...
...a question about the Math Forum Problem of the Week. Why a Zero
Exponent...
www.forum.swarthmore.edu/dr.math/tocs/numberth.high.html - 63k - Cached -
Similar
pages
Math Forum: Ask Dr. Math - High School Level
...Goldbach's Conjecture or the Collatz Problem? History and...
...was equal to 3.14? Tower of Hanoi Problem [Holl, 1/3/1995] I gave
my...
forum.swarthmore.edu/dr.math/dr.math/tocs/history.high.html - 30k -
Cached -
Similar pages
[ More results from forum.swarthmore.edu ]
Prof. Dr. Manfred Kudlek
...Niculescu) Some Results on the Collatz Problem (Proceedings of...
...International Conference on the Collatz Problem and Related...
www.informatik.uni-hamburg.de/TGI/publikationen/biblio_kudlek_fra.html -
19k -
Cached - Similar pages
EMIS Conference Announcements
...and CIRM Luminy , France COLLATZ PROBLEM: - International...
...GEOMETRY: - Workshop on Hilbert's 10th problem, Relations to
Arithmetic...
www.math.unam.mx/EMIS/conf/by-subject.html - 15k - Cached - Similar pages
EMIS Conference Announcements
...International Conference on the Collatz Problem and Related Topics...
...3x+1 problem ( also known as the Syracuse algorithm, Collatz',...
www.math.unam.mx/EMIS/conf/long.html - 77k - Cached - Similar pages
[ More results from www.math.unam.mx ]
RE: (fractint) New galleries
...Margolis Subject: (fractint) Collatz Problem Date: 10 Feb 2000...
...00:24:15 -0600 Read about the Collatz Problem and how it was coded...
www.xmission.com/pub/lists/fractint/archive/fractint.200002 - 101k -
Cached -
Similar pages
EMIS Conference Announcements
...University of Fribourg, Switzerland COLLATZ PROBLEM: -...
...GEOMETRY: - Workshop on Hilbert's 10th problem, Relations to
Arithmetic...
ftp://ftp.gwdg.de/pub/EMIS/journals/EJC/conf/by-subject.html - 12k -
Cached - Similar
pages
Support Forum: Re: Solving with integer answers
...help for Fermat theorem or Collatz problem, but that will work for...
...help for Fermat theorem or Collatz problem, but that will work for...
www.library.wolfram.com/forum/student-support/archive/May2000/95834719715305
/ - 19k
- Cached - Similar pages
IRMA Strasbourg, Prépublications et thèses
...with $3x+d$ Extensions of Collatz Problem.. Résumé, Abstract :...
...oddlength. Mots-clé, Keywords : Collatz problem,iteration of...
http://www-irma.u-strasbg.fr/irma/publications/2000/resum2000.shtml - 47k -
Cached -
Similar pages
IRMA Strasbourg - Publication 2000
...with $3x+d$ Extensions of Collatz Problem.. Résumé, Abstract :...
...oddlength. Mots-clé, Keywords : Collatz problem,iteration of...
http://www-irma.u-strasbg.fr/irma/publications/2000/00018.shtml - 5k -
Cached -
Similar pages
[ More results from http://www-irma.u-strasbg.fr ]
Computationally-Rich Activities for the Construction of Math Knowledge -
from
...Kakutani's problem, Hasse's algorithm, and the Collatz...
...rich mathematical explorations and problem solving while providing a...
www.stager.org/articles/NECCmath98.html - 47k - Cached - Similar pages
15-129: Assignment 2
...that this problem is very similar to last week's Collatz...
...That's exactly the same problem as for the Collatz function. The...
www.cs.cmu.edu/afs/andrew/course/15/129/Homework/hw03/ - 13k - Cached -
Similar
pages
15-129: Assignment 2
...the Collatz function will ultimately produce 1. The problem...
...somewhat symptomatic of the Collatz problem: there clearly is some...
www.cs.cmu.edu/afs/andrew/course/15/129/Homework/hw02/ - 11k - Cached -
Similar pages
[ More results from www.cs.cmu.edu ]
logomath.html
...Kakutani's problem, Hasse's algorithm, or the Collatz...
...do mathematics become mathematical problem solvers learn to
communicate...
www.moon.pepperdine.edu/~gstager/logomath.html - 33k - Cached - Similar
pages
Internet Center for Mathematics Problems
...number that is perfect and odd? Collatz Problem Famous Problems in...
...we are missing. Table of Contents Problem Columns from Mathematics...
www.mathpropress.com/mathCenter.html - 17k - Cached - Similar pages
MathPro Classification Scheme
...powers - primes - remainders Collatz problem - insomniac numbers -...
...problems - rectangles Arbelos Butterfly problem Cake cutting Chain
of...
www.mathpropress.com/scheme.html - 42k - Cached - Similar pages
[ More results from www.mathpropress.com ]
More hailstones...
...referred to as the Syracuse problem, the Collatz problem or...
...asked for more information about the problem or simply why it is of...
www.pass.maths.org/issue2/news/hail.html - 31k - Cached - Similar pages
http://www-cs.engr.ccny.cuny.edu/~csmma/cs5722/h615
...Problem The 3x + 1 problem, also known as the Collatz...
...as linguistic. His paper on a problem of formal logic (1930) examines...
7k - Cached - Similar pages
Hotlist
...Problèmes Collatz Mathematical Interests The 3x+1 problem and its...
...The Hadamard maximum determinant problem Problèmes de mathématiques...
www.vinc17.org/bookmarks/browse.fr.html - 73k - Cached - Similar pages
Hotlist
...Problems Collatz Mathematical Interests The 3x+1 problem and its...
...The Hadamard maximum determinant problem Mathematical Problems (by...
www.ens-lyon.fr/~vlefevre/bookmarks/browse.en.html - 73k - Cached - Similar
pages
COMSC 1613 --- Programming I
...also known as the Syracuse problem, the Collatz problem,...
www.comsc.ucok.edu/~mccann/spring00/prog1/prog3.html - 6k - Cached - Similar
pages
Programming Projects for DHPC Course 7933
...7933 The 3x+1 (or Collatz or Syracuse) Problem Write a program to...
...numerically investigate the 3x+1 Problem: Take any positive integer m....
www.dhpc.adelaide.edu.au/education/CS7933/1998/coursework/collatz.html -
2k - Cached
- Similar pages
www.hrz.uni-oldenburg.de/software/maple/share/Das_Share-Verzeichnis/numtheor
/Collatz
...the 3n+1 conjecture # # (or Collatz problem, or Ulam's conjecture...
...Hasse's algorithm # or the Syracuse problem or .... ) # # Define for...
4k - Cached - Similar pages
DESCRIPTIONS OF AREAS/COURSES IN NUMBER THEORY, LECTURE NOTES
...Maple V worksheet on the Collatz problem Primitive roots and...
...Numbers Continued Fractions The 3x+1 Problem Artin's Primitive Roots...
www.math.uga.edu/~ntheory/N4.html - 26k - Cached - Similar pages
NUMBER THEORY CONFERENCES, NEW AND OLD
...International Conference on the Collatz Problem and Related...
...Geometry, Workshop on Hilbert's 10th problem, University of Gent,...
www.math.uga.edu/~ntheory/N3.html - 29k - Cached - Similar pages
[ More results from www.math.uga.edu ]
www.felix.unife.it/Root/d-Mathematics/d-Number-theory/b-3x+1
...Everett's result on the Collatz 3x+1 problem. Adv. Appl. Math. 8...
...QX+1 problem. Math. Comp. 49 (1995), ... L. Garner: On the Collatz...
6k - Cached - Similar pages
www.cs.ucla.edu/~klinger/col.html
...The Collatz problem, Also Known as The 3x+1 Problem Ilan...
...Known as The 3x+1 Problem Ilan Vardi The Collatz map is taken to...
4k - Cached - Similar pages
www.cs.ucla.edu/~klinger/pipaper.html
...comments stated: The Collatz problem, Also Known as The 3x+1...
...computing tradition. The long-unsolved problem of whether applying
the...
47k - Cached - Similar pages
[ More results from www.cs.ucla.edu ]
Mathematics Archives - Topics in Mathematics - Number Theory
... problem and its generalizations ADD. KEYWORDS: Article, Collatz...
Description: topics in number theory
Category: Science > Math > Number Theory
www.archives.math.utk.edu/topics/numberTheory.html - 40k - Cached - Similar
pages
math_8_A2
...generalizations The 3x+1 problem, also known as the Collatz...
...symbolic form. Resources The 3x+1 problem and its generalizations The...
www.farb.sandi.net/farb/main/standards/math/math_8_ps/math_8_A2r.html - 5k -
Cached
- Similar pages
Sloane's Database of Integer Sequences, Part 36
...sequences related to 3x+1 (or Collatz) problem %H A006577 Lagarias...
...Combinatorics, Cambridge, Vol. 2, 1999; see Problem 6.52. %e A052104...
www.research.att.com/~njas/sequences/eisBTfry00036.html - 101k - Cached -
Similar pages
Sloane's Database of Integer Sequences, Part 27
...sequences related to 3x+1 (or Collatz) problem %H A006370 Lagarias...
...117-122. %D A003415 E. J. Barbeau, Problem, Canad. Math. Congress
Notes,...
www.research.att.com/~njas/sequences/eisBTfry00027.html - 101k -
Cached -
Similar pages
[ More results from www.research.att.com ]
Problems ex Cameron's homepage
...that this problem is older: it is the "original Collatz...
...4x+1, and 3x-1 to 4x-1 for all x. Problem: Determine the cycle
structure...
www.maths.qmw.ac.uk/~pjc/oldprob.html - 29k - Cached - Similar pages
From the BBC
...own global address. " The Collatz problem; named after Lothar...
...source of the following easily stated problem Think of a number, if it
is...
www.thenumbershop.editthispage.com/2000/05/01 - 12k - Cached - Similar pages
Pike, and some Python
...finds data for use in the Collatz problem, an unsolved maths...
www.thenumbershop.editthispage.com/2000/04/30 - 11k - Cached - Similar
pages
[ More results from thenumbershop.editthispage.com ]
Unsolved Mathematics Problems
...1999 Conference on the Collatz Problem Proceedings (Eichstätt,...
...e) Lost in a Forest (a fascinating problem involving geometry and...
www.venus.mathsoft.com/asolve/ - 25k - Cached - Similar pages
FORKZ: Science/Math/Number Theory
...by Jeff Lagarias on the Collatz Problem. The 3x+1 problem -...
...prize for solving the Goldbach problem NFSNET - A project to factor...
www.forkz.com/Science/Math/Number_Theory/ - 23k - Cached - Similar pages
Search Category - Number Theory
...Jeff Lagarias on the Collatz Problem. The 3x+1 problem a...
...prize for solving the Goldbach problem NFSNET A project to factor
numbers...
www.search.netscape.com/Science/Math/Number_Theory - 24k - Cached - Similar
pages
Graduiertenkolleg Angewandte Algorithmische Mathematik
...It is also often called Collatz's problem, Ulam's problem,...
...binomial representation of the 3x+1 problem" Vortragender: Yuri...
www.mathematik.tu-muenchen.de/gkaam/veranstaltungen/matiyasevich0699.en.html
-
8k - Cached - Similar pages
Sharewire: Sharewire
...by Jeff Lagarias on the Collatz Problem. The 3x+1 problem -...
...Number Theory Seminars Seva Lev's problem page - A collection of
research...
www.sharewire.com/demo/sharewire.exe/global/web/-/Science/Math/Number_Theory
/ -
43k - Cached - Similar pages
Brightgate MetaSearch, http://www.brightgate.com
...by Jeff Lagarias on the Collatz Problem. The 3x+1 problem -...
...Number Theory Seminars Seva Lev's problem page - A collection of
research...
www.brightgate.com/directory/Science/Math/Number_Theory/ - 27k - Cached -
Similar pages
Links to other mathematical recreations, games and puzzles
...problem aka The 3x+1 problem, Collatz problem, the...
...generalizations aka The hailstone problem, Collatz problem,...
www.bruichladdich.dcs.st-and.ac.uk/mathrecsFolder/links.html - 24k -
Cached -
Similar pages
Mathematical Recreations Links Gleaned from the Web
...problem aka The 3x+1 problem, Collatz problem, the...
...generalizations aka The hailstone problem, Collatz problem,...
www.bruichladdich.dcs.st-and.ac.uk/mathrecsFolder/mathreclinks.html -
24k -
Cached - Similar pages
[ More results from bruichladdich.dcs.st-and.ac.uk ]
Topics in Algebra
...the 3n + 1 problem, and is also known as the Collatz...
...Algebra The Hailstone (3n + 1 ) Problem Functions Half-Life Algebra in...
www.math.twsu.edu/history/algebra.html - 30k - Cached - Similar pages
Kurs Algorithmenkonstruktion: Modul 3
...1989 [2] E.W. Weisstein. Collatz Problem....
...Aufgaben Die Module Collatz-Automat Automateneinbettung eines
Algorithmus...
www.marvin.sn.schule.de/~inftreff/modul3/lit3.htm - 3k - Cached - Similar
pages
MA 191 k Topics in Mathematical Chaos (second term 1994)
...systems in number theory (The Collatz problem, Encryption...
...N-body problems (The celestial N body problem, Vortex systems, Toda...
www.ma.utexas.edu/~knill/Teaching/ma191.html - 5k - Cached - Similar pages
Fråga Lund om matematik - frågor och svar september 1998
...mycket nyligen). Se artikeln Collatz problem (som problemet också...
...(självständigt) ganska avancerade "problem" likt algebra...
www.maths.lth.se/query/answers/q9809.html - 101k - Cached - Similar pages
Errata to the CRC Concise Encyclopedia of Mathematics
...to ``Gordan''. p. 277 OR Collatz Problem. Use notation a n instead...
...D. p. 31 PDG Alhazen's Billiard Problem. In Hogendijk reference,
change...
www.treasure-troves.com/buy/math/book/errata/errata.html - 101k - Cached -
Similar pages
www.cs.chalmers.se/~bond/F1PT/LAB1_F1_HT98.html
...UPPGIFT 1: ETT FÄRDIGT PROGRAM Collatz problem lyder: Låt N vara...
...här (det finns som filen ~fpt/ADA/collatz.adb ): with Text_IO,...
10k - Cached - Similar pages
Unit Description: 10cp Project
...Burton. The ``3x + 1'' or ``Collatz''problem To investigate...
...sin2x = 0 arises in a mechanical problem. Discuss solutions and/or...
www.maths.bris.ac.uk/~madhg/unitinfo/1997-8/projects/proj.htm - 71k -
Cached -
Similar pages
flotspes programmeerexperimenten in Visual Basic
...1.00.0003 Nutteloze programma's Collatz Problem (29kB) vul een...
...programmeerexperimenten in Visual Basic] [COLLATZ Module Dependency
List]...
www.users.pandora.be/joris.janssens/basic.html - 8k - Cached - Similar pages
Math Forum - Ask Dr. Math
...this problem (which also goes under the name "The Collatz...
....cs.dal.ca/~campbell/colllink.html Even though the Collatz problem...
www.askdrmath.com/dr.math/problems/jitsu2.19.98.html - 8k - Cached - Similar
pages
Practical Foundations of Mathematics
...cube, provability, PERs, Collatz' problem. Variables; many-sorted...
...no numbers actually occur in the problem. Park induction deduces...
www.dcs.qmw.ac.uk/~pt/Practical_Foundations/html/summary.html - 73k -
Cached -
Similar pages
www.world.std.com/FAQ/Science_and_Health/sci.math-faq/unsolvedproblems.txt
...that is perfect and odd? * Collatz Problem * Goldbach's conjecture...
...Theory. Richard K Guy. Springer, Problem E16....
8k - Cached - Similar pages
ftp://ftp.esat.net/mirrors/rtfm.mit.edu/pub/usenet/news.answers/sci-math-faq
/tableofcontents
...that is perfect and odd? + Collatz Problem + Goldbach's conjecture...
...Mathematical Games + The Monty Hall problem + Master Mind * Projective...
5k - Cached - Similar pages
Mathematical Sites on the Web
...p 2 /6) Cellular Automata Collatz problem (Jeff Lagarias) Entropy...
...Conjecture (Thomas Hales) Lehmer's problem (Michael Mossinghoff)
Mersenne...
www.mth.uea.ac.uk/~h720/headings/maths.html - 14k - Cached - Similar pages
The Music of Hailstones
...their ups and down), the Collatz Problem, or the 3n+1...
www.members.aol.com/s6sj7gt/hailmus.htm - 5k - Cached - Similar pages
www.dept-info.labri.u-bordeaux.fr/~vanicat/Enseignement/tp3.html
...decbin(35) ® [1,0,0,0,1,1]. (Collatz problem ou Syracuse...
8k - Cached - Similar pages
The Family Math Newsletter: Issue #3 (October 19, 1994)
...correct citation is the "Collatz problem." Contact Information How...
www.toc.lcs.mit.edu/~emjordan/newsletter/issue3.html - 12k - Cached -
Similar
pages
Software
...program. It finds data for the Collatz problem. Python, and its...
www.garyt.f9.co.uk/html/Software.htm - 4k - Cached - Similar pages
Professor Kenneth Monks
...various aspects of the Collatz problem and chaos theory. To...
www.academic.uofs.edu/department/math/Faculty/inf_monk.html - 5k - Cached -
Similar
pages
Mathematical Problems - Problem Solving - Mathematics Hots by Bruno
...generalizations The 3x+1 problem, also known as the Collatz...
...development Mathematical Problems - Problem Solving not a complete
list,...
www.abc.se/~m9847/matre/problem.html - 12k - Cached - Similar pages
Number theory files for David Eppstein
...Archimedes' Cattle Problem, Keith Calkins. The Collatz 3x+1...
Description: implemented algorithms by David Eppstein
Category: Science > Math > Number Theory > Software
www.ics.uci.edu/~eppstein/numth/ - 7k - Cached - Similar pages
On The 3x + 1 Problem
...3x + 1 problem, sometimes also referred to as the Collatz...
...the 3x+1 problem By Eric Roosendaal SUMMARY: The so-called 3x+1...
www.personal.computrain.nl/eric/wondrous - 27k - Cached - Similar pages
Result Page:
1
2
3
4
5
6
7
8
9
10
Next
©2000 Google
<Hallo zusammen!
<Hermann Kremer schrieb in Nachricht <8mpdch$jh5$1...@news.online.de>...
>
>Daniel Moelle schrieb in Nachricht <8mm6f3$hk$1...@evocator.prima.de>...
><Hallo zusammen!
><
><Neulich bin ich im Web auf eine Seite (Autor war ein Herr Arno Schwarz)
><gestoßen, die sich mit den "Grenzen der Mathematik" beschäftigte. Dort
><fand ich dann die Definition für wundersame Zahlen. Zusammenfassung
><folgt.
><
><Die Collatz-Funktion g: N -> N sieht folgendermaßen aus:
><
><g(n) = n/2, falls n gerade und g(n) = 3n+1, falls n ungerade
><
><Eine natürliche Zahl n heißt wundersam, wenn es eine natürliche Zahl k
><gibt, so daß g^k(n) = 1 ist. Soll heißen, nach k-facher Hintereinander-
><ausführung der durch die Collatz-Funktion beschriebenen Abbildung landet
><man wieder bei der 1. Beispiel: 1 -> 4 -> 2 -> 1.
><
><Weiterhin wurde erwähnt, daß die Annahme besteht, daß alle natürlichen
><Zahlen wundersam sind.
><
><---
><Gibt es da mittlerweile einen Beweis oder ein Gegenbeispiel? Oder einen
><Beweis dafür, daß die Annahme nicht beweisbar ist?
><---
Hallo Daniel,
hallo alle Collatz-(3x+1)-Problem-Fans,
die Collatz-Vermutung ist bewiesen für alle Zahlen bis 2.7*10^16, s.
den dritten Link (Wolfram) in nachstehender Liste.
Ich möchte ja kein Spielverderber sein, aber zu dem Collatz-Problem gibt
es sogar spezielle Kongresse (s. ersten Link) und Unmengen von Arbeiten;
die ersten 100 Referenzen von 1420 aus einer Google-Suche habe ich
spaßeshalber mal angefügt.
Trotzdem noch viel Spaß :-)
Hermann
Sorry, sorry, sorry,
beim Cut and Paste der Link-Liste ist leider ein
Mißgeschick passiert -- nachstehend die korrigierte
Link-Liste:
---------------------------------------------------------------------------
Google results 1-100 of about 1,420 for collatz problem. Search
took 0.73 seconds.
Category: Science > Math > Number Theory
International Conference on the Collatz Problem
...Conference on the Collatz Problem and Related Topics August 5-6,...
...3x+1 problem ( also known as the Syracuse algorithm, Collatz',...
www.math.grin.edu/~chamberl/conf.html - 6k - Cached - Similar pages
CSC-152 99F : Notes on Assignment 3: Recursion and Big-O
...number of articles on the Collatz problem. One at...
...Filled in answers up to the Collatz problem. Sunday, 11 October...
www.math.grin.edu/~rebelsky/Courses/CS152/99F/Assignments/notes.03.html -
46k - Cached - Similar pages
[ More results from www.math.grin.edu ]
Collatz Problem -- from Eric Weisstein's World of Mathematics
...Number Theory "> Sequences Collatz Problem A problem posed...
...be an integer. Then the Collatz problem asks if iterating (1)...
http://mathworld.wolfram.com/CollatzProblem.html - 36k - Cached - Similar
pages
C -- from Eric Weisstein's World of Mathematics
...Property Cauchy's Formula Collatz Problem Cotes Number...
...Calculus Circular Chessboard Constant Problem Calculus of
Variations...
http://mathworld.wolfram.com/ctop.html - 101k - Cached - Similar pages
[ More results from mathworld.wolfram.com ]
CABC - Collatz (3x+1) Problem
...camp...@mscs.dal.ca The Collatz (3x+1) Problem NEW! International...
...International Conference on the Collatz Problem and Related Topics...
www.ug.cs.dal.ca/~campbell/collatz.html - 9k - Cached - Similar pages
CABC - Collatz (3x+1) Problem History
...camp...@mscs.dal.ca Brief History of the Collatz (3x+1) Problem...
...unknown exactly how the Collatz problem came into existence. It is...
www.ug.cs.dal.ca/~campbell/collhist.html - 8k - Cached - Similar pages
[ More results from www.ug.cs.dal.ca ]
The Collatz Problem (3x+1)
...The Collatz Problem (3x+1) I was introduced to the Collatz...
...recently revived my interest in it. The problem deals with sequences
of...
http://pokey.itsc.uah.edu/~criswell/collatz.html - 29k - Cached - Similar
pages
http://neuronio.mat.uc.pt/crcmath/math/math/c/c433.htm - 31k - Cached -
Similar pages
Problem
...Curve Problem, Coin Problem, Collatz Problem, Condom...
... Problem An exercise whose solution is desired. See also Alhazen's...
http://neuronio.mat.uc.pt/crcmath/math/math/p/p658.htm - 28k - Cached -
http://seawolf.uofs.edu/~monks/talks.html - 6k - Cached - Similar pages
CADcube (sm) - catalog: /Science/Math/Number_Theory/
...by Jeff Lagarias on the Collatz Problem. The 3x+1 problem -...
...Number Theory Seminars Seva Lev's problem page - A collection of
research...
http://cadfu.com/catalog/index.play/Science/Math/Number_Theory/ - Similar
pages
[ More results from www.cdf.toronto.edu ]
[ More results from www.maplesoft.com ]
http://forum.swarthmore.edu/dr.math/tocs/numberth.high.html - 63k - Cached -
Similar
pages
Math Forum: Ask Dr. Math - High School Level
...Goldbach's Conjecture or the Collatz Problem? History and...
...was equal to 3.14? Tower of Hanoi Problem [Holl, 1/3/1995] I gave
my...
http://forum.swarthmore.edu/dr.math/dr.math/tocs/history.high.html -
http://library.wolfram.com/forum/student-support/archive/May2000/95834719715
305/ - 19k
http://moon.pepperdine.edu/~gstager/logomath.html - 33k - Cached - Similar
pages
Internet Center for Mathematics Problems
...number that is perfect and odd? Collatz Problem Famous Problems in...
...we are missing. Table of Contents Problem Columns from Mathematics...
www.mathpropress.com/mathCenter.html - 17k - Cached - Similar pages
MathPro Classification Scheme
...powers - primes - remainders Collatz problem - insomniac numbers -...
...problems - rectangles Arbelos Butterfly problem Cake cutting Chain
of...
www.mathpropress.com/scheme.html - 42k - Cached - Similar pages
[ More results from www.mathpropress.com ]
More hailstones...
...referred to as the Syracuse problem, the Collatz problem or...
...asked for more information about the problem or simply why it is of...
http://pass.maths.org/issue2/news/hail.html - 31k - Cached - Similar pages
http://www-cs.engr.ccny.cuny.edu/~csmma/cs5722/h615
...Problem The 3x + 1 problem, also known as the Collatz...
...as linguistic. His paper on a problem of formal logic (1930) examines...
7k - Cached - Similar pages
Hotlist
...Problèmes Collatz Mathematical Interests The 3x+1 problem and its...
...The Hadamard maximum determinant problem Problèmes de mathématiques...
www.vinc17.org/bookmarks/browse.fr.html - 73k - Cached - Similar pages
Hotlist
...Problems Collatz Mathematical Interests The 3x+1 problem and its...
...The Hadamard maximum determinant problem Mathematical Problems (by...
www.ens-lyon.fr/~vlefevre/bookmarks/browse.en.html - 73k - Cached - Similar
pages
COMSC 1613 --- Programming I
...also known as the Syracuse problem, the Collatz problem,...
www.comsc.ucok.edu/~mccann/spring00/prog1/prog3.html - 6k - Cached - Similar
pages
Programming Projects for DHPC Course 7933
...7933 The 3x+1 (or Collatz or Syracuse) Problem Write a program to...
...numerically investigate the 3x+1 Problem: Take any positive integer m....
http://dhpc.adelaide.edu.au/education/CS7933/1998/coursework/collatz.html -
2k - Cached
- Similar pages
www.hrz.uni-oldenburg.de/software/maple/share/Das_Share-Verzeichnis/numtheor
/Collatz
...the 3n+1 conjecture # # (or Collatz problem, or Ulam's conjecture...
...Hasse's algorithm # or the Syracuse problem or .... ) # # Define for...
4k - Cached - Similar pages
DESCRIPTIONS OF AREAS/COURSES IN NUMBER THEORY, LECTURE NOTES
...Maple V worksheet on the Collatz problem Primitive roots and...
...Numbers Continued Fractions The 3x+1 Problem Artin's Primitive Roots...
www.math.uga.edu/~ntheory/N4.html - 26k - Cached - Similar pages
NUMBER THEORY CONFERENCES, NEW AND OLD
...International Conference on the Collatz Problem and Related...
...Geometry, Workshop on Hilbert's 10th problem, University of Gent,...
www.math.uga.edu/~ntheory/N3.html - 29k - Cached - Similar pages
[ More results from www.math.uga.edu ]
http://felix.unife.it/Root/d-Mathematics/d-Number-theory/b-3x+1
...Everett's result on the Collatz 3x+1 problem. Adv. Appl. Math. 8...
...QX+1 problem. Math. Comp. 49 (1995), ... L. Garner: On the Collatz...
6k - Cached - Similar pages
www.cs.ucla.edu/~klinger/col.html
...The Collatz problem, Also Known as The 3x+1 Problem Ilan...
...Known as The 3x+1 Problem Ilan Vardi The Collatz map is taken to...
4k - Cached - Similar pages
www.cs.ucla.edu/~klinger/pipaper.html
...comments stated: The Collatz problem, Also Known as The 3x+1...
...computing tradition. The long-unsolved problem of whether applying
the...
47k - Cached - Similar pages
[ More results from www.cs.ucla.edu ]
Mathematics Archives - Topics in Mathematics - Number Theory
... problem and its generalizations ADD. KEYWORDS: Article, Collatz...
Description: topics in number theory
Category: Science > Math > Number Theory
http://archives.math.utk.edu/topics/numberTheory.html - 40k - Cached -
Similar pages
math_8_A2
...generalizations The 3x+1 problem, also known as the Collatz...
...symbolic form. Resources The 3x+1 problem and its generalizations The...
http://farb.sandi.net/farb/main/standards/math/math_8_ps/math_8_A2r.html -
5k - Cached
- Similar pages
Sloane's Database of Integer Sequences, Part 36
...sequences related to 3x+1 (or Collatz) problem %H A006577 Lagarias...
...Combinatorics, Cambridge, Vol. 2, 1999; see Problem 6.52. %e A052104...
www.research.att.com/~njas/sequences/eisBTfry00036.html - 101k - Cached -
Similar pages
Sloane's Database of Integer Sequences, Part 27
...sequences related to 3x+1 (or Collatz) problem %H A006370 Lagarias...
...117-122. %D A003415 E. J. Barbeau, Problem, Canad. Math. Congress
Notes,...
www.research.att.com/~njas/sequences/eisBTfry00027.html - 101k -
Cached -
Similar pages
[ More results from www.research.att.com ]
Problems ex Cameron's homepage
...that this problem is older: it is the "original Collatz...
...4x+1, and 3x-1 to 4x-1 for all x. Problem: Determine the cycle
structure...
www.maths.qmw.ac.uk/~pjc/oldprob.html - 29k - Cached - Similar pages
From the BBC
...own global address. " The Collatz problem; named after Lothar...
...source of the following easily stated problem Think of a number, if it
is...
http://thenumbershop.editthispage.com/2000/05/01 - 12k - Cached - Similar
pages
Pike, and some Python
...finds data for use in the Collatz problem, an unsolved maths...
http://thenumbershop.editthispage.com/2000/04/30 - 11k - Cached -
Similar pages
[ More results from thenumbershop.editthispage.com ]
Unsolved Mathematics Problems
...1999 Conference on the Collatz Problem Proceedings (Eichstätt,...
...e) Lost in a Forest (a fascinating problem involving geometry and...
http://venus.mathsoft.com/asolve/ - 25k - Cached - Similar pages
FORKZ: Science/Math/Number Theory
...by Jeff Lagarias on the Collatz Problem. The 3x+1 problem -...
...prize for solving the Goldbach problem NFSNET - A project to factor...
www.forkz.com/Science/Math/Number_Theory/ - 23k - Cached - Similar pages
Search Category - Number Theory
...Jeff Lagarias on the Collatz Problem. The 3x+1 problem a...
...prize for solving the Goldbach problem NFSNET A project to factor
numbers...
http://search.netscape.com/Science/Math/Number_Theory - 24k - Cached -
Similar pages
Graduiertenkolleg Angewandte Algorithmische Mathematik
...It is also often called Collatz's problem, Ulam's problem,...
...binomial representation of the 3x+1 problem" Vortragender: Yuri...
www.mathematik.tu-muenchen.de/gkaam/veranstaltungen/matiyasevich0699.en.html
-
8k - Cached - Similar pages
Sharewire: Sharewire
...by Jeff Lagarias on the Collatz Problem. The 3x+1 problem -...
...Number Theory Seminars Seva Lev's problem page - A collection of
research...
www.sharewire.com/demo/sharewire.exe/global/web/-/Science/Math/Number_Theory
/ -
43k - Cached - Similar pages
Brightgate MetaSearch, http://www.brightgate.com
...by Jeff Lagarias on the Collatz Problem. The 3x+1 problem -...
...Number Theory Seminars Seva Lev's problem page - A collection of
research...
www.brightgate.com/directory/Science/Math/Number_Theory/ - 27k - Cached -
Similar pages
Links to other mathematical recreations, games and puzzles
...problem aka The 3x+1 problem, Collatz problem, the...
...generalizations aka The hailstone problem, Collatz problem,...
http://bruichladdich.dcs.st-and.ac.uk/mathrecsFolder/links.html - 24k -
Cached -
Similar pages
Mathematical Recreations Links Gleaned from the Web
...problem aka The 3x+1 problem, Collatz problem, the...
...generalizations aka The hailstone problem, Collatz problem,...
http://bruichladdich.dcs.st-and.ac.uk/mathrecsFolder/mathreclinks.html -
24k -
Cached - Similar pages
[ More results from http://bruichladdich.dcs.st-and.ac.uk ]
Topics in Algebra
...the 3n + 1 problem, and is also known as the Collatz...
...Algebra The Hailstone (3n + 1 ) Problem Functions Half-Life Algebra in...
www.math.twsu.edu/history/algebra.html - 30k - Cached - Similar pages
Kurs Algorithmenkonstruktion: Modul 3
...1989 [2] E.W. Weisstein. Collatz Problem....
...Aufgaben Die Module Collatz-Automat Automateneinbettung eines
Algorithmus...
http://marvin.sn.schule.de/~inftreff/modul3/lit3.htm - 3k - Cached - Similar
pages
http://users.pandora.be/joris.janssens/basic.html - 8k - Cached - Similar
pages
Math Forum - Ask Dr. Math
...this problem (which also goes under the name "The Collatz...
....cs.dal.ca/~campbell/colllink.html Even though the Collatz problem...
www.askdrmath.com/dr.math/problems/jitsu2.19.98.html - 8k - Cached - Similar
pages
Practical Foundations of Mathematics
...cube, provability, PERs, Collatz' problem. Variables; many-sorted...
...no numbers actually occur in the problem. Park induction deduces...
www.dcs.qmw.ac.uk/~pt/Practical_Foundations/html/summary.html - 73k -
Cached -
Similar pages
http://world.std.com/FAQ/Science_and_Health/sci.math-faq/unsolvedproblems.tx
t
...that is perfect and odd? * Collatz Problem * Goldbach's conjecture...
...Theory. Richard K Guy. Springer, Problem E16....
8k - Cached - Similar pages
ftp://ftp.esat.net/mirrors/rtfm.mit.edu/pub/usenet/news.answers/sci-math-faq
/tableofcontents
...that is perfect and odd? + Collatz Problem + Goldbach's conjecture...
...Mathematical Games + The Monty Hall problem + Master Mind * Projective...
5k - Cached - Similar pages
Mathematical Sites on the Web
...p 2 /6) Cellular Automata Collatz problem (Jeff Lagarias) Entropy...
...Conjecture (Thomas Hales) Lehmer's problem (Michael Mossinghoff)
Mersenne...
www.mth.uea.ac.uk/~h720/headings/maths.html - 14k - Cached - Similar pages
The Music of Hailstones
...their ups and down), the Collatz Problem, or the 3n+1...
http://members.aol.com/s6sj7gt/hailmus.htm - 5k - Cached - Similar pages
http://dept-info.labri.u-bordeaux.fr/~vanicat/Enseignement/tp3.html
...decbin(35) ® [1,0,0,0,1,1]. (Collatz problem ou Syracuse...
8k - Cached - Similar pages
The Family Math Newsletter: Issue #3 (October 19, 1994)
...correct citation is the "Collatz problem." Contact Information How...
www.toc.lcs.mit.edu/~emjordan/newsletter/issue3.html - 12k - Cached -
Similar
pages
Software
...program. It finds data for the Collatz problem. Python, and its...
www.garyt.f9.co.uk/html/Software.htm - 4k - Cached - Similar pages
Professor Kenneth Monks
...various aspects of the Collatz problem and chaos theory. To...
http://academic.uofs.edu/department/math/Faculty/inf_monk.html - 5k -
Cached - Similar
pages
Mathematical Problems - Problem Solving - Mathematics Hots by Bruno
...generalizations The 3x+1 problem, also known as the Collatz...
...development Mathematical Problems - Problem Solving not a complete
list,...
www.abc.se/~m9847/matre/problem.html - 12k - Cached - Similar pages
Number theory files for David Eppstein
...Archimedes' Cattle Problem, Keith Calkins. The Collatz 3x+1...
Description: implemented algorithms by David Eppstein
Category: Science > Math > Number Theory > Software
www.ics.uci.edu/~eppstein/numth/ - 7k - Cached - Similar pages
On The 3x + 1 Problem
...3x + 1 problem, sometimes also referred to as the Collatz...
...the 3x+1 problem By Eric Roosendaal SUMMARY: The so-called 3x+1...
http://personal.computrain.nl/eric/wondrous - 27k - Cached - Similar pages
<Hallo zusammen!
Als Ergänzung - in
< http://www.cecm.sfu.ca/organics/papers/lagarias/paper/html/letter.html >
<
http://www.cecm.sfu.ca/organics/papers/lagarias/paper/html/lettersketch.html
>
sind Scans des Originalbriefs von Lothar Collatz, in dem er das Problem
bekannt macht, und eines handschriftlichen Diagramms ...
MfG
Hermann
--
Hier sind meine ungefähren Analysen.
Ein Schritt gehe immer zur nächsten ungeraden Zahl, z.B. 3-> (10->) 5 oder 7->
(22->) 11
Klasse 12*n+1:
1 -> 1 Klasse A
13 -> 5 Klasse C
25 -> 19 Klasse B
37 -> 7 Klasse E
49 -> 37 Klasse A
61 -> 23 Klasse D
73 -> 55 Klasse B
85 -> 1 Klasse X
97 -> 73 Klasse A
109 -> 41 Klasse C
121 -> 91 Klasse B
133 -> 25 Klasse F
145 -> 109 Klasse A
157 -> 59 Klasse D
169 -> 127 Klasse B
181 -> 17 Klasse G
Klasse E = 4*12*n+1 + 3*12:
37 -> 7
229 -> 43
... (+192 -> +36)
Klasse F = 16*12*n+1 + (3+8)*12:
133 -> 25
325 -> 61
... (+192 -> +36)
Klasse G1 = 32*12*n+1 + (7+8)*12:
181 -> 17
565 -> 53
... (+384 -> +36)
Klasse G2 = 32*12*n+1 + (23+8)*12:
373 -> 35
757 -> 71
... (+384 -> +36)
Klasse X1:
85 -> 1 Klasse A!
853 -> 5 Klasse C!
1621 -> 19 Klasse B!
2389 -> 7 Klasse E!
3157 -> 37 Klasse A!
3925 -> 23 Klasse D!
4693 -> 55 Klasse B!
5461 -> 1 Klasse X!
...
Klasse X2:
469 -> 11 Klasse H
1237 -> 29 Klasse I
2005 -> 47 Klasse H
2773 -> 65 Klasse I
3541 -> 83 Klasse H
4309 -> 101 Klasse I
5077 -> 119 Klasse H
5845 -> 137 Klasse I
Die Klasse 12*n+5 ist vergleichbar.
Die Klasse 12*n+7 ist einfach:
7 -> 11 Klasse H!
19 -> 29 Klasse I!
31 -> 47 Klasse H!
43 -> 65 Klasse I!
Die Klasse 12*n+11 ist ähnlich einfach, aber interessanter:
11 -> 17
23 -> 35 Klasse K
35 -> 53
47 -> 71 Klasse K
59 -> 89
71 -> 107 Klasse K
83 -> 125
95 -> 143 Klasse K
Die Klasse K ist wieder die Klasse 12*n+11 !
Genauer kann man (2^m)*12*n-12+11 m-mal in die Klasse K ableiten.
Beispiele:
11, 35, 59 gehen gleich nach 12*n+5
23, 71 gehen noch einmal nach 12*n+11
47 geht zweimal
Insgesamt:
Die Klassen 12*n+7 führt zu 12*n+5 und 12*n+11,
genauso wie 12*n+11 zu 12*n+5 und 12*n+11 führt.
Aus diesen läßt sich ableiten, wann sie zu 12*n+5 führt.
Dann bleiben noch die Klassen 12*n+1 und 12*n+5 übrig,
deren Verknüpfungen weiter analysiert werden müssen.
Zusatz1:
Rein statistisch wird mit jedem Schritt die Zahl übrigens kleiner (wie zu hoffen
ist).
Zusatz2:
Die umgekehrte Betrachtung, also von 1 aus alle Zahlen zu generieren zu
versuchen,
ist auch eine nette Idee. So kann man jedenfalls für _sehr viele_ Zahlen zeigen,
daß sie zu 1 zurückkehren.
Ich hoffe, Du kannar damit 'was anfangen...
Viele Grüße,
Burkart
Siehe bitte Antwort zu Marco.
Hi,
zu meiner "aktiven" Zeit waren auch alle von der Funktion f(x)=ax(1-x)
begeistert. (Periodenverdopplung, "Period 3 implies chaos,
Feigenbaum-Konstante, Fraktale, etc.)
Ähnlich wie bei der Collatzfunktion kann man diese Funktion leicht iterieren
und es gibt faszinierende Phänomene, die sich auch in "realen" dynamischen
Systemen wiederfinden.
Ich frag mich allerdings, was man - unter dem Gesichtspunkt der angewandten
Mathematik - mit der Collatz-Funktion anfangen kann. Sie scheint z.Z.
einfach ein Problem darzustellen, dem man sich auf keine Weise wirklich
nähern kann. Was "bringen" all die numerischen Versuche?
Gruß, Thomas
Ja, Verhulst, Julia, Mandelbrot, L-Systeme ...
>Ähnlich wie bei der Collatzfunktion kann man diese Funktion leicht
iterieren
>und es gibt faszinierende Phänomene, die sich auch in "realen" dynamischen
>Systemen wiederfinden.
>
>Ich frag mich allerdings, was man - unter dem Gesichtspunkt der angewandten
>Mathematik - mit der Collatz-Funktion anfangen kann. Sie scheint z.Z.
>einfach ein Problem darzustellen, dem man sich auf keine Weise wirklich
>nähern kann. Was "bringen" all die numerischen Versuche?
Hallo Thomas,
die bloßen Rechnereien bringen vermutlich genau so viel oder so wenig
für
die mathematische Lösung des Problems wie beim FLT, nämlich nichts (!?).
Das Collatz-Problem ist halt ein sehr elementar darstellbares Problem,
für das man wunderhübsche Grafiken erzeugen kann. Ich wollte mit meiner
Link-
Sammlung einfach nur darauf hinweisen, daß es nicht sehr "wundersam" ist.
Ich bin übrigens gespannt, wann hier wieder mal die Ackermann-Funktion
auftaucht.
Viele Grüße
Hermann
>Gruß, Thomas
>
>
>
> Das Collatz-Problem ist halt ein sehr elementar darstellbares Problem,
> für das man wunderhübsche Grafiken erzeugen kann.
Gibt's da irgendwo frei zugängliche Programme, die das tun?
Neulich bin ich im Web auf eine Seite gestoßen, auf der erklärt wurde,
wie man aus den Populationszahlen beim Game Of Life lustige Melodien
zaubern kann, die bei glücklicher Anfangskonfiguration sogar von
Menschen komponierten Melodien nicht unähnlich sehen. Man könnte dann
ja auch mal einen Collatz-Song generieren ("Und hier ist 'DJ Collatz'
mit der brandneuen Auskopplung 'g(n)' vom Album 'Numbers & nerds',
demnächst auch auf der 'MC Weierstraß Party Compilation' zu haben!").
Arrr...
--
Daniel.