Formulae

edit

This is one way to calculate Pi known as Leibniz's formula:

 

This is the chemical formula for photosynthesis:

 

Other stuff

edit

This is python:

def GCD(a, b):
    while a != b:
        if a > b:
            a -= b
        else:
            b -= a
    return a

This is the twinkle twinkle