show/hide this revision's text 2 Corrected as per Pyrolistical's comment

[Corrected, 2009-10-26]

Essentially, for N significant fractional digits:

• Multiply the number by 10N+1N
• Add 50.5
• Truncate the fraction digits (i.e., truncate the result into an integer)
• Divide by 10N+1N

For N significant integral (non-fractional) digits:

Divide the number by 10N
Add 0.5
Truncate the fraction digits (i.e., truncate the result into an integer)
Multiply by 10N

You can do this on any calculator, for example, that has an "INT" (integer truncation) operator.

show/hide this revision's text 1

Essentially, for N significant digits:

• Multiply the number by 10N+1
• Add 5
• Truncate the fraction digits (i.e., truncate the result into an integer)
• Divide by 10N+1

You can do this on any calculator, for example, that has an "INT" (integer truncation) operator.