Determine machine epsilon through test
Machine epsilon is smallest value such that (1.0 + epsilon) is still distinguishable from 1.0 by the system
In CPython implementations this value can be found directly using
import sys
print(sys.float_info.epsilon)
However the micropython of Numworks does not have a sys module