Average Error: 14.3 → 0.4
Time: 3.2s
Precision: binary64
\[\frac{1}{x + 1} - \frac{1}{x}\]
\[\frac{-1}{x \cdot \left(x + 1\right)}\]
\frac{1}{x + 1} - \frac{1}{x}
\frac{-1}{x \cdot \left(x + 1\right)}
(FPCore (x) :precision binary64 (- (/ 1.0 (+ x 1.0)) (/ 1.0 x)))
(FPCore (x) :precision binary64 (/ -1.0 (* x (+ x 1.0))))
double code(double x) {
	return (1.0 / (x + 1.0)) - (1.0 / x);
}
double code(double x) {
	return -1.0 / (x * (x + 1.0));
}

Error

Bits error versus x

Try it out

Your Program's Arguments

Results

Enter valid numbers for all inputs

Derivation

  1. Initial program 14.3

    \[\frac{1}{x + 1} - \frac{1}{x}\]
  2. Using strategy rm
  3. Applied frac-sub_binary64_8713.8

    \[\leadsto \color{blue}{\frac{1 \cdot x - \left(x + 1\right) \cdot 1}{\left(x + 1\right) \cdot x}}\]
  4. Simplified0.4

    \[\leadsto \frac{\color{blue}{-1}}{\left(x + 1\right) \cdot x}\]
  5. Simplified0.4

    \[\leadsto \frac{-1}{\color{blue}{x \cdot \left(1 + x\right)}}\]
  6. Final simplification0.4

    \[\leadsto \frac{-1}{x \cdot \left(x + 1\right)}\]

Reproduce

herbie shell --seed 2020354 
(FPCore (x)
  :name "2frac (problem 3.3.1)"
  :precision binary64
  (- (/ 1.0 (+ x 1.0)) (/ 1.0 x)))