public class Ch15_1_b extends Ch15_1 { public double f(double x) // implement f, in this case f(x)=sqrt(x) { return Math.sqrt(x); } }