<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;"># name, date and purpose here
# 

import math

def f(x):
    return math.sqrt(1 - x*x)

def integrate( b, t, n=10 ):
    """ documentation should go here, but this is just lecture ..."""
    divisions = [b + j*(t-b)/n for j in range(n)]
    return [divisions]

# print( f( 0.5))
print( integrate(0,1))
print( integrate(0,1,5))


</pre></body></html>