home |
index |
units |
counting |
geometry |
algebra |
trigonometry |
calculus |
functions
analysis | sets & logic | number theory | recreational | misc | nomenclature & history | physics |
Final Answers
|
Related Links (Outside this Site)Volume of a Tetrahedron & Programming Languages by Prof. W. Kahan.Values of Physical Constants (CODATA: 1973, 1986, 1998, 2002, 2006, 2010, 2014...) Rounding errors by Peter Cameron (2012-08-03). Measurements of G. C. Rothleitner & S. Schlamminger (AIP, Nov. 2017). Online Arbitrary Precision Calculator by Mikko Tommila (bef. 2019-06-10). Wikipedia : Kahan summation algorithm | William M. Kahan (1933-) |
Floating-point numbers (14:24) by Kelsey Houston-Edwards (2017-07-21).
Well, if the value 0.0200 comes from rounding, it's actually between 0.01995 and 0.02005. So the result is between 1.047008 and 1.047249. Stating the result as 1.0471 gives the impression that the true value is between 1.04705 and 1.04715. This is slightly too precise (by a factor of 2) but that's not grossly misleading (so, it's OK in my book). The alternative would be to state the result as 1.047, which is too coarse (by a factor of 5). If you only rely on significant figures to express the precision of your results, you're always faced with a similar choice between two different levels of precision that differ from each other by a factor of 10. Just choose the lesser of two evils, knowing that you will occasionally have to misrepresent the precision of your result by a factor of 3 (or a bit more). Such unsatisfying limitations can't be circumvented within the "significant figures" scheme. When the precision of a result has to be stated more rigorously, it's best to give either its upper and lower bounds (at a 99% confidence level) or to indicate an estimate of the standard deviation (as a two-digit number between parentheses after the least significant digit, as discussed in the next article). In the second example, -log(0.001178) denotes some value between -log(0.0011785) = 2.92867 and -log(0.0011775) = 2.92904 That's best reported as 2.929 (which says "between 2.9285 and 2.9295"). Interestingly, logarithms are the quintessential example of a case where the number of significant figures in the result is not directly related to the number of significant figures of the input data. In the following pathological example, the input has only 3 significant figures but the result does have 9 significant figures: log ( 7.89 ´ 10 123456 ) = 123456.897 Use strict inequalities to indicate the rounded value is a true bound. Strict inequalities are easy: x < 1.5 and x < 3/2 are equivalent. When non-strict inequalities are used with rounded numbers, they acquire completely different meanings, similar to the meaning acquired by equalities in that case... What such an equality states is that a strict inequality is true for the tightest different bound expressible at the same level of precision. For example, x ≤ 1.5 means that x < 1.6. The former is more intuitive than the latter, as it gives the best acceptable value at the relevant precision. This is familiar to old-school engineers but others may struggle when confronted with this, especially in tables. Standard deviation expresses the uncertainty or precision of a result. In many cases, the above rules concerning significant digits are too coarse to convey a good indication of the claimed precision. Professionals state the accuracy of their figures by giving the uncertainty expressed in units of the last figure between parentheses (see examples). Technically, this uncertainty is expressed either as the relevant standard deviation or as 1/3 of the "firm" bounds you may have on either side of the mean (both definition are equivalent if we identify "firm bounds" with the 99.73% confidence level in a normal Gaussian distribution). Straight rounding errors are not at all "normally distributed" along a Gaussian curve. Instead, the error is uniformly distributed over an interval whose width is equal to one unit of the least significant digit retained. This entails a standard deviation of 1/Ö12 = 0.29 in terms of that unit. In our previous example of a product of three rounded value, what we have to determine is the standard deviation of the following random variable: ( 2.9 + 0.1 X ) ( 3.5 + 0.1 Y ) ( 10.0 + 0.1 Z) Where X, Y and Z are independent random variables, each uniformly distributed between -½ and +½. The average (mathematical expectation) of that random variable is 101.5 and its standard deviation is 1.3444711... (HINT: this involves averaging the square of the above inside a cube of unit volume). Thus, our product can be expressed with standardized precision as 101.50(134) or 101.5(13) The latter form is the more common one, since standardized precision is most often expressed with 2 significant digits (3 digits is an overkill). A close examination reveals that some authors round uncertainties upward systematically. This practice comes, presumably, from a dubious concern of never claiming too much precision. That misplaced modesty is unscientific. Uncertainty should be treated like any other quantity and be quoted at its alloted (2-digit) level of precision. It would be a mistake to give the above as 101.5(14).
Stating a nonzero number as a multiple of a power of 1000. Engineering notation is superficially similar to scientific notation, except that the exponent of 10 is restricted to a multiple of 3 (thus, the relevant power of 10 is actually a power of 1000). For this to be possible in all cases, the coefficient is allowed to go from 1 (included) to 1000 (excluded). Because there may be trailing zeros before the decimal point in engineering notation, the number of significant digits is not always clear. This is the main reason why the systematic use of the engineering notation is strongly discouraged in print, unless accuracy is stated with the above convention. By extension, we also call engineering notation any system resembling scientific notation where the absolute magnitude of the coefficient is not restricted to the 1-10 range (it could, occasionally, be more than 1000 or less than 1). List of results spanning several orders of magnitude are sometimes more readable this way, since we can merely compare coefficients as the order of magnitude (a power of 10) remains constant. Alternative approaches for robust solutions to quadratic equations. The quadratic formula was first published early in the ninth century AD (c. 810) by Al Kwarizmi. It's a mainstay of middle-school algebra, giving the two roots of the polynomial a x2 + b x + c when b2 - 4ac is positive:
WLG, we may consider only monic polynomials Up to a change of sign, their coefficients are just the symmetric functions of the roots m-u and m+u; namely the sum 2m (twice the mean m) and the product p: [ x - (m+u) ] × [ x - (m-u) ] = x2 - 2m x + m2-u2 = x2 - 2m x + p
|
||||||||||||||||||||||||