Write a computer code to compute the unit roundoff error (machine epsilon) on a given machine using double precision. You need to compute the smallest positive machine number epsilon such that 1 + epsilon != (does not equal) 1. (Hint: You can divide the number 1 by 2 repeatedly, each time the division is equivalent to adding a zero before the first nonzero digit.) The computer code has to be attached to your homework.