polynomial plots
In [22]:
N = 1000
sum([plot(lambda x: x^i) for i in range(1,N)]).show()
In [23]:
binomial_coefficients(5)
Out[23]:
{(0, 5): 1, (1, 4): 5, (2, 3): 10, (3, 2): 10, (4, 1): 5, (5, 0): 1}
In [ ]: