Oct 14, 2011 #1 Z zorro Advanced Member level 4 Joined Sep 6, 2001 Messages 1,130 Helped 357 Reputation 712 Reaction score 298 Trophy points 1,363 Location Argentina Activity points 8,916 Hi friends, Suppose I have to evaluate a polynomial than can be expressed in long form as p(x) = an*xn + an-1*xn-1 + ... + a1*x + a0 If I'm not wrong, the nested Horner form: p(x) = (...((bn*x + bn-1)*x + ...)*x + ...)*x + b0 is numerically better (usually has less numerical error than the first form). Can somebody give a reference that justify this? In what conditions it is true? Best regards Z
Hi friends, Suppose I have to evaluate a polynomial than can be expressed in long form as p(x) = an*xn + an-1*xn-1 + ... + a1*x + a0 If I'm not wrong, the nested Horner form: p(x) = (...((bn*x + bn-1)*x + ...)*x + ...)*x + b0 is numerically better (usually has less numerical error than the first form). Can somebody give a reference that justify this? In what conditions it is true? Best regards Z