double f1 ( double x ) // // F1 is an example of a function that can be used with the bisection // or bracketing programs. // { double value; value = cos ( x ) - x; return value; }