Subtraction of two polynomials (any representation).
static List<num> sub(List<num> f, List<num> g) { return add(f, neg(g)); }