\Using Microsoft Visual Basic for Applications in Excel, create a computer program that calculates the zero(s) of the equation f(x)=e^(x)-10x=0 by using the inverse linear interpolation (regula falsi) method.
Additional Information if needed:
For each zero, choose your initial guess to be on either side so one initial guess is a positive f(x) and the other is a negative f(x). Stop the program when a successive iteration (cycle through the loop) changes the estimate of the zero by less than 0.0001% (1 part in a million). Report your initial guesses and the number of iterations it takes to find the zero.