Average Error: 30.1 → 0.2
Time: 18.6s
Precision: 64
Internal Precision: 1344
\[\sqrt{x + 1} - \sqrt{x}\]
\[\frac{1}{\sqrt{x + 1} + \sqrt{x}}\]

Error

Bits error versus x

Try it out

Your Program's Arguments

Results

Enter valid numbers for all inputs

Target

Original30.1
Target0.2
Herbie0.2
\[\frac{1}{\sqrt{x + 1} + \sqrt{x}}\]

Derivation

  1. Initial program 30.1

    \[\sqrt{x + 1} - \sqrt{x}\]
  2. Initial simplification30.1

    \[\leadsto \sqrt{1 + x} - \sqrt{x}\]
  3. Using strategy rm
  4. Applied flip--29.9

    \[\leadsto \color{blue}{\frac{\sqrt{1 + x} \cdot \sqrt{1 + x} - \sqrt{x} \cdot \sqrt{x}}{\sqrt{1 + x} + \sqrt{x}}}\]
  5. Using strategy rm
  6. Applied *-un-lft-identity29.9

    \[\leadsto \frac{\sqrt{1 + x} \cdot \sqrt{1 + x} - \sqrt{x} \cdot \sqrt{x}}{\sqrt{1 + x} + \color{blue}{1 \cdot \sqrt{x}}}\]
  7. Applied *-un-lft-identity29.9

    \[\leadsto \frac{\sqrt{1 + x} \cdot \sqrt{1 + x} - \sqrt{x} \cdot \sqrt{x}}{\color{blue}{1 \cdot \sqrt{1 + x}} + 1 \cdot \sqrt{x}}\]
  8. Applied distribute-lft-out29.9

    \[\leadsto \frac{\sqrt{1 + x} \cdot \sqrt{1 + x} - \sqrt{x} \cdot \sqrt{x}}{\color{blue}{1 \cdot \left(\sqrt{1 + x} + \sqrt{x}\right)}}\]
  9. Applied add-cube-cbrt29.9

    \[\leadsto \frac{\color{blue}{\left(\sqrt[3]{\sqrt{1 + x} \cdot \sqrt{1 + x} - \sqrt{x} \cdot \sqrt{x}} \cdot \sqrt[3]{\sqrt{1 + x} \cdot \sqrt{1 + x} - \sqrt{x} \cdot \sqrt{x}}\right) \cdot \sqrt[3]{\sqrt{1 + x} \cdot \sqrt{1 + x} - \sqrt{x} \cdot \sqrt{x}}}}{1 \cdot \left(\sqrt{1 + x} + \sqrt{x}\right)}\]
  10. Applied times-frac29.9

    \[\leadsto \color{blue}{\frac{\sqrt[3]{\sqrt{1 + x} \cdot \sqrt{1 + x} - \sqrt{x} \cdot \sqrt{x}} \cdot \sqrt[3]{\sqrt{1 + x} \cdot \sqrt{1 + x} - \sqrt{x} \cdot \sqrt{x}}}{1} \cdot \frac{\sqrt[3]{\sqrt{1 + x} \cdot \sqrt{1 + x} - \sqrt{x} \cdot \sqrt{x}}}{\sqrt{1 + x} + \sqrt{x}}}\]
  11. Simplified29.9

    \[\leadsto \color{blue}{1} \cdot \frac{\sqrt[3]{\sqrt{1 + x} \cdot \sqrt{1 + x} - \sqrt{x} \cdot \sqrt{x}}}{\sqrt{1 + x} + \sqrt{x}}\]
  12. Simplified0.2

    \[\leadsto 1 \cdot \color{blue}{\frac{1}{\sqrt{x + 1} + \sqrt{x}}}\]
  13. Final simplification0.2

    \[\leadsto \frac{1}{\sqrt{x + 1} + \sqrt{x}}\]

Runtime

Time bar (total: 18.6s)Debug logProfile

herbie shell --seed 2018248 +o rules:numerics
(FPCore (x)
  :name "2sqrt (example 3.1)"

  :herbie-target
  (/ 1 (+ (sqrt (+ x 1)) (sqrt x)))

  (- (sqrt (+ x 1)) (sqrt x)))