aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBraxton Hall2022-10-25 04:25:26 +0000
committerGitHub2022-10-25 04:25:26 +0000
commitbd57417ffbfbb4c8cce53465835ddc9bdfa86dc9 (patch)
tree81fd97aa4604496d20c799a84cd5015216f0e059
parentdc1605d28833762797f19285cb673d2019b7a3bd (diff)
parentdafd8e9d44fa7e7648b70b305ed81cb6794df6dd (diff)
Merge pull request #35 from markusdemedeiros/main
you wanted this
-rw-r--r--entries/markusde/collatz/collatz.pdfbin0 -> 87475 bytes
-rw-r--r--entries/markusde/collatz/collatz.pngbin0 -> 27596 bytes
-rw-r--r--entries/markusde/collatz/collatz.tex21
-rw-r--r--people.json11
4 files changed, 32 insertions, 0 deletions
diff --git a/entries/markusde/collatz/collatz.pdf b/entries/markusde/collatz/collatz.pdf
new file mode 100644
index 0000000..efec35b
--- /dev/null
+++ b/entries/markusde/collatz/collatz.pdf
Binary files differ
diff --git a/entries/markusde/collatz/collatz.png b/entries/markusde/collatz/collatz.png
new file mode 100644
index 0000000..afc8d8f
--- /dev/null
+++ b/entries/markusde/collatz/collatz.png
Binary files differ
diff --git a/entries/markusde/collatz/collatz.tex b/entries/markusde/collatz/collatz.tex
new file mode 100644
index 0000000..8e18088
--- /dev/null
+++ b/entries/markusde/collatz/collatz.tex
@@ -0,0 +1,21 @@
+\documentclass[12pt]{article}
+\usepackage[landscape]{geometry}
+\usepackage{amsmath}
+\usepackage{amsfonts}
+\usepackage{amsthm}
+\renewcommand{\phi}{\varphi}
+\begin{document}
+
+\noindent The least fixed point of
+\begin{align*}
+ h & : (\mathbb{N}_\bot \to \mathbb{Z}_\bot) \to (\mathbb{N}_\bot \to \mathbb{Z}_\bot) \\
+ h(F)(n) & =
+ \begin{cases}
+ 1 & n = 1 \\
+ (\phi^{n/2} + (-\phi)^{-n/2})\, F_{n/2} & n \textrm{ is even} \\
+ \sqrt[3]{\frac{\phi^{3n+1}-\phi F_{3n+1}}{10} + \frac{\sqrt{25 \phi^{3n+1} - 25\phi F_{3n+1} - 20}}{50}} + \sqrt[3]{\frac{\phi^{3n+1}-\phi F_{3n+1}}{10} - \frac{\sqrt{25 \phi^{3n+1} - 25\phi F_{3n+1} - 20}}{50}} & \textrm{otherwise} \\
+ \end{cases}
+\end{align*}
+is the Fibonacci sequence if and only if the Collatz conjecture is true.
+
+\end{document}
diff --git a/people.json b/people.json
index 2eff422..112f116 100644
--- a/people.json
+++ b/people.json
@@ -329,5 +329,16 @@
"link": "./entries/dewert99/fib.rs"
}
]
+ },
+ {
+ "github": "markusdemedeiros",
+ "name": "Markus de Medeiros",
+ "title": "BSc Student, UBC",
+ "entries": [
+ {
+ "name": "collatz",
+ "link": "./entries/markusde/collatz/collatz.png"
+ }
+ ]
}
]