mathstodon.xyz is one of the many independent Mastodon servers you can use to participate in the fediverse.
A Mastodon instance for maths people. We have LaTeX rendering in the web interface!

Server stats:

3.2K
active users

The Animal and the Machine

@AndriusKulikauskas to the n

Here in simple Python:

# @taatm
# Fermat, Pythagorus and TAATM
# c^n * sin(π/(2(n-1)) = a^n + b ^n
n=5
a=3
b=4
c=5

import math

triangle = (math.sin(math.pi/(2*(n-1))))

h = (5**n) * triangle
others = (a**n)+(b**n)
test = h - others

print (h)
print (others)
print (test)