| # | Timestamp | Input | Target | Places/Sig | Mode | Rounded |
|---|
| Value | Target | Places/Sig | Mode | Load |
|---|
Nearest (Half Up):
Round(x, p) = sign(x) * floor(|x|·10^p + 0.5) / 10^p
Nearest (Half Even):
Let y = |x|·10^p. If frac(y) > 0.5: ceil(y).
If frac(y) < 0.5: floor(y). If tie (0.5): to even.
Nearest (Half Down):
As Half Up, but ties go to floor(y).
Toward +∞ (Ceil): Round(x, p) = ceil(x·10^p)/10^p
Toward −∞ (Floor): Round(x, p) = floor(x·10^p)/10^p
Toward 0 (Truncate): Round(x, p) = trunc(x·10^p)/10^p
Significant figures:
Use s = significant digits. Round using the chosen tie rule:
RoundSig(x, s) = m·10^e, where m has s digits.
| Value | Target | Places/Sig | Mode | Expected | Load |
|---|---|---|---|---|---|
2.5 | places | 0 | Nearest, ties up | 3 | |
2.5 | places | 0 | Nearest, ties even | 2 | |
2.5 | places | 0 | Nearest, ties down | 2 | |
-2.5 | places | 0 | Toward +∞ | -2 | |
-2.5 | places | 0 | Toward −∞ | -3 | |
1.995 | places | 2 | Nearest, ties up | 2 | |
1.995 | places | 2 | Nearest, ties even | 2 | |
1.995 | places | 2 | Nearest, ties down | 1.99 |
| Value | Sig figs | Mode | Result | Load |
|---|---|---|---|---|
0.0012345 | 2 | Nearest, ties even | 0.0012 | |
0.0012345 | 3 | Nearest, ties even | 0.00123 | |
12345 | 2 | Nearest, ties up | 12000 | |
-0.00098765 | 2 | Toward 0 | -0.00098 | |
999.5 | 3 | Nearest, ties even | 1000 |
In typical general chemistry practice, keep mole ratios to at least three decimal places while working. Decide on whole-number ratios at the end: round to the nearest integer only when a value is within ~0.10 of a whole number; otherwise multiply all ratios by a small factor (2, 3, 4, or 5) and then round.
| Recommended precision by step | |||
|---|---|---|---|
| Step | Keep this precision | When to round | Preset |
| Molar mass lookup | ≥ 4 significant figures | Never early; carry through | |
| Grams → moles | ≥ 3–4 significant figures | Carry; avoid interim rounding | |
| Divide by smallest moles | 3 decimal places | Only after ratio decision | |
| Empirical to molecular factor n | Nearest integer | Round final n to integer | |
| Mole ratio decimal residues guide | ||||
|---|---|---|---|---|
| Residual | Interpretation | Multiplier | Example ratio | Preset |
| 0.00–0.10 | Close to whole | ×1 (round) | 2.02 → 2 | |
| ≈0.25 | ~1/4 off whole | ×4 | 1.25 → 5 | |
| ≈0.33 | ~1/3 off whole | ×3 | 1.33 → 4 | |
| ≈0.50 | Half off whole | ×2 | 1.50 → 3 | |
| ≈0.67 | ~2/3 off whole | ×3 | 1.67 → 5 | |
| ≈0.75 | ~3/4 off whole | ×4 | 1.75 → 7 | |
| ≈0.20, 0.40, 0.60, 0.80 | Fifths off whole | ×5 | 1.20 → 6 | |
| 0.90–1.00 | Close to next whole | ×1 (round) | 1.91 → 2 | |
- Enter a number in Value (supports negatives and scientific notation).
- Choose Decimal places or Significant figures, then set the count.
- Select a Rounding mode to control tie behavior and direction.
- Optional: enable Trim trailing zeros or toggle scientific notation display.
- Click Calculate. The steps panel explains the decision process.
- Each run appears in the Results table. Use CSV or PDF export.