public static Complex Polynomial(Complex z, Complex[] coeffs) { var c = coeffs.ToList(); c.Insert(0, z); return Polynomial(c.ToArray()); }