Skip to content

Instantly share code, notes, and snippets.

@akingdom
Last active May 3, 2024 13:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save akingdom/5f9f35bb94d8742eb08c1f82334c9e76 to your computer and use it in GitHub Desktop.
Save akingdom/5f9f35bb94d8742eb08c1f82334c9e76 to your computer and use it in GitHub Desktop.
A few maths (re)discoveries I've made

Some maths things I've found over the years.

By Andrew Kingdom. (I'll update the details when I have time.)

The four-colour theory states that any map can be coloured in using a maximum of four colours without using the same colour for neighbouring regions. This has been proven using a computer.

My discovery was a partial-geometric method (collapsing all combinations down to a single set of incomplete-shapes) to prove all combinations on paper, which I believe hadn't been done previously. This can also be done using a divided 2D toroidal (donut) shape series, but I'm not 100% sure it covers all possibilies.

Circa 2007

image

Cellular automaton based on a six-sided grid rather than John Conway's orthogonal grid. It occurred to me that Conway's rules were imbalanced and that a hexagonal structure was more natural and stable, which proved to be the case and the rules are much simpler.

(Published online in 2003.)

My discovery was essentially the same as Wilson's theorum, (p−1)!≡−1(mod p).

(Published in maths groups online circa 2000.)

These are numbers that perfectly fulfil the 'Pythagorus' formula a2 + b2 = c2.

Example: (3,4,5) meaning 3 x 3 + 4 x 4 = 5 x 5.

These were discovered by the ancient Egyptians, Babylonians and others.

My discovery was a simple set of formulas to generate all possible integer triples, loosely similar to the following: a=m2−n2, b=2mn, c=m2+n2

(Published in maths groups online circa 1988.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment