Numerically most robust way to compute sum of products (standard deviation) in floating-point? - MathOverflow most recent 30 from http://mathoverflow.net 2013-06-19T16:35:52Z http://mathoverflow.net/feeds/question/70345 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://mathoverflow.net/questions/70345/numerically-most-robust-way-to-compute-sum-of-products-standard-deviation-in-fl Numerically most robust way to compute sum of products (standard deviation) in floating-point? Gabriel 2011-07-14T16:26:19Z 2011-09-28T11:51:46Z <p>I stumbled across a paper by Welford (1962), where he proclaims a method that should compute the standard deviation numerically more robust than the naive algorithms (<a href="http://www.jstor.org/stable/1266577" rel="nofollow">http://www.jstor.org/stable/1266577</a>). Here, "numerically robust" means that round-off errors are reduced.</p> <p>He gives a recurrence for the sum of squares <code>$S_n = \sum_{i=1}^n (x_i - \mu_n)^2 = S_{n-1} + \frac{n-1}{n} (x_n - \mu_{n-1})^2 $</code> , $\mu$ being, of course, the mean. That way, the standard deviation can be computed iteratively in a single pass.</p> <p>As far as I understand, he claims that his iterative recurrence formula is numerically more robust, because all terms in it are of the same order (provided the input data are all of the same order).</p> <p>This is what I don't understand. It seems to me that, as $n$ gets incremented, $S_n$ becomes larger and larger, so more and more significant digits from the second term are lost, aren't they?</p> <p>Googling a bit further, I have found a paper by Youngs &amp; Cramer, 1971, who looked at a number of methods, including Welford's, of computing the sum of products / standard deviation more robustly (<a href="http://www.jstor.org/stable/1267176" rel="nofollow">http://www.jstor.org/stable/1267176</a>).</p> <p>Conducting a number of experiments, they found that Welford's method does not provide any benefits. So that seems to confirm my doubts about Welford's method.</p> <p>Now, Youngs &amp; Cramer propose another method, which computes <code>$S_n = S_{n-1} + \frac{n-1}{n}(nx_n - s_n)^2 $</code>, where <code>$s_n = s_{n-1} + x_n$</code>.<br> Empirically, they found their method to be superior.</p> <p>Again, I don't understand why this should be the case: isn't there some catastrophic cancellation going on in <code>$(nx_n - s_n)$</code> ? Don't the terms <code>$S_n$</code> and the fraction differ in their magnitude more and more, so that more and more digits of the fraction term get rounded off?</p> <p>I would by most grateful if somebody could shed some light on these questions.<br> In addition, I'd like to know which is the best method (in terms of roundoff errors) to compute these sums. Surprisingly, I haven't found anything about this in Numerical Recipes (or I overlooked it).</p> <p>Thank you very much in advance. Gabriel.</p> http://mathoverflow.net/questions/70345/numerically-most-robust-way-to-compute-sum-of-products-standard-deviation-in-fl/70358#70358 Answer by Luna for Numerically most robust way to compute sum of products (standard deviation) in floating-point? Luna 2011-07-14T17:57:09Z 2011-07-15T15:23:33Z <p>For the variance (square of std), personally I would use this simple one:</p> <p>( n (sum x*x ) - (sum x)*(sum x) ) / (n*n) or: ( (sum x*x ) - (sum x)*(sum x) / n ) / n</p> <p>[ For the case of relatively small variance ("catastrophic cancellation") check also: <a href="http://www.daheiser.info/excel/notes/NOTE%20P.pdf" rel="nofollow">http://www.daheiser.info/excel/notes/NOTE%20P.pdf</a> ]</p> <p>Edit:</p> <p>A viki page also reports a nice discussion: <a href="http://en.wikipedia.org/wiki/Algorithms_for_calculating_variance#cite_note-1" rel="nofollow">http://en.wikipedia.org/wiki/Algorithms_for_calculating_variance#cite_note-1</a></p> <p>In particular, it mentions: A numerically stable algorithm is given below. It also computes the mean. This algorithm is due to Knuth,[1] who cites Welford.[2] [...] This algorithm is much less prone to loss of precision due to massive cancellation, but might not be as efficient because of the division operation inside the loop.</p> <p>About the 2-pass algo, it says: "This algorithm is often more numerically reliable than the naïve algorithm for large sets of data, although it can be worse if much of the data is very close to but not precisely equal to the mean and some are quite far away from it."</p> <p>I'd say that if the variance is not small (as often happens) and ease and speed of computation are a priority, the simpler version (closer to the definition) could still be considered.</p> http://mathoverflow.net/questions/70345/numerically-most-robust-way-to-compute-sum-of-products-standard-deviation-in-fl/76630#76630 Answer by Federico Poloni for Numerically most robust way to compute sum of products (standard deviation) in floating-point? Federico Poloni 2011-09-28T11:37:07Z 2011-09-28T11:51:46Z <p>I found a discussion of this exact problem in Higham, <em>Accuracy and stability of numerical algorithms</em>, Section 1.9.</p> <p>The author suggests an alternative algorithm and claims that it is numerically stable (in the mixed backward-forward sense); proofs for the precise accuracy bounds of the formulas are left as exercises.</p>