/* sample1 * * Start values: * bisection: 2.0 and 4.0 * secant: 2.0 and 4.0 * * Tolerance of .00001 */ float f( float x ) { return x*x*x - 10*x + 4; }