Text used in this video:
==== Recall the regularity statement ====
==== Logical definitions and theorems ==== === Definitions ===
""" | |
Code used in the video | |
https://youtu.be/BiViLT6FCC4 | |
""" | |
import random | |
import numpy as np | |
class LinAlgLib: # Linear algebra'ish functions |
Text used in this video:
==== Recall the regularity statement ====
==== Logical definitions and theorems ==== === Definitions ===
Text used in the video
==== Regularity statement ====
https://en.wikipedia.org/wiki/Axiom_of_regularity
(Classically)
Text used in the video
==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ==== ====
Theorem:
More concretely:
If equality is governed by set-extensionality, then for any predicate
LETTER_FREQUENCIES = {'E' : 12.0, | |
'T' : 9.10, | |
'A' : 8.12, | |
'O' : 7.68, | |
'I' : 7.31, | |
'N' : 6.95, | |
'S' : 6.28, | |
'R' : 6.02, | |
'H' : 5.92, | |
'D' : 4.32, |
import time | |
import pyautogui # pip install pyautogui | |
# Warning: This script will control your cursor for its runtime | |
ID_WHERE_YOU_ARE_NOW = 13665 | |
ID_TARGET = 13800 | |
BUTTON_POSITION = (1400, 500) # Depends on your screen | |
SLEEP_TIME = 0.1 | |
DISTANCE = ID_TARGET - ID_WHERE_YOU_ARE_NOW + 1 |
""" | |
Code discussed in the video | |
https://youtu.be/s5ud06udqT0 | |
""" | |
from random import shuffle | |
NUM_GAME_SIMS: int = 1000 | |
PRINT_LOG: bool = NUM_GAME_SIMS == 1 |
""" | |
Script discussed in | |
https://youtu.be/s5ud06udqT0 | |
""" | |
import random | |
NUM_GAME_SIMS = 10 ** 7 |
import os | |
os.system("clear") | |
""" | |
Weak Königs lemma: | |
"Every infinite subtree of the full binary tree has an infinite path." | |
See | |
https://en.wikipedia.org/wiki/K%C5%91nig%27s_lemma | |
https://en.wikipedia.org/wiki/Reverse_mathematics#The_big_five_subsystems_of_second-order_arithmetic |
""" | |
Code discussed in: | |
https://youtu.be/Ox0tD58DTG0 | |
This video is mostly about understadning decidable vs. semi-decidable sets | |
and showing that they are not the same, i.e. there are undecidable but still semi-decidable. | |
We'll show how the Halting problem is of that type. It will be non-decidable by diagonalization | |
and we'll impement a general dovetailing_runing algorithm that makes it clear that it's semi-decidable. | |
""" |