--- title: "My bright idea!" authors: - resident_innovator created_at: 2017-01-01 00:00:00 updated_at: 2017-01-25 00:00:00 tags: - proofs - novel tldr: | In this post we prove that one plus one equals two. Various forms of evidence are provided. ---

Programmatic Evidence


In [1]:
1 + 1 == 2


Out[1]:
True

Graphical Evidence


In [5]:
%matplotlib  inline
import matplotlib.pyplot as plt
_ = plt.bar([1,2,3], [1,1,2], color=['r','r','b'])