public class Ch15_1_a extends Ch15_1 // this implements the abstract method from Ch15_1 { public double f(double x) // implement f, in this case f(x)=x^2 { return x*x; } }