Average Error: 29.6 → 0.1
Time: 10.3s
Precision: 64
Internal Precision: 128
\[\log \left(N + 1\right) - \log N\]
\[\begin{array}{l} \mathbf{if}\;N \le 14302.326937808648:\\ \;\;\;\;\log \left(\frac{1 + N}{N}\right)\\ \mathbf{else}:\\ \;\;\;\;(\left(\frac{1}{N \cdot N}\right) \cdot \left(\frac{\frac{1}{3}}{N} - \frac{1}{2}\right) + \left(\frac{1}{N}\right))_*\\ \end{array}\]

Error

Bits error versus N

Derivation

  1. Split input into 2 regimes
  2. if N < 14302.326937808648

    1. Initial program 0.1

      \[\log \left(N + 1\right) - \log N\]
    2. Simplified0.1

      \[\leadsto \color{blue}{\log_* (1 + N) - \log N}\]
    3. Using strategy rm
    4. Applied log1p-udef0.1

      \[\leadsto \color{blue}{\log \left(1 + N\right)} - \log N\]
    5. Applied diff-log0.1

      \[\leadsto \color{blue}{\log \left(\frac{1 + N}{N}\right)}\]

    if 14302.326937808648 < N

    1. Initial program 59.5

      \[\log \left(N + 1\right) - \log N\]
    2. Simplified59.5

      \[\leadsto \color{blue}{\log_* (1 + N) - \log N}\]
    3. Using strategy rm
    4. Applied log1p-udef59.5

      \[\leadsto \color{blue}{\log \left(1 + N\right)} - \log N\]
    5. Applied diff-log59.2

      \[\leadsto \color{blue}{\log \left(\frac{1 + N}{N}\right)}\]
    6. Taylor expanded around -inf 0.0

      \[\leadsto \color{blue}{\left(\frac{1}{3} \cdot \frac{1}{{N}^{3}} + \frac{1}{N}\right) - \frac{1}{2} \cdot \frac{1}{{N}^{2}}}\]
    7. Simplified0.0

      \[\leadsto \color{blue}{(\left(\frac{1}{N \cdot N}\right) \cdot \left(\frac{\frac{1}{3}}{N} - \frac{1}{2}\right) + \left(\frac{1}{N}\right))_*}\]
  3. Recombined 2 regimes into one program.
  4. Final simplification0.1

    \[\leadsto \begin{array}{l} \mathbf{if}\;N \le 14302.326937808648:\\ \;\;\;\;\log \left(\frac{1 + N}{N}\right)\\ \mathbf{else}:\\ \;\;\;\;(\left(\frac{1}{N \cdot N}\right) \cdot \left(\frac{\frac{1}{3}}{N} - \frac{1}{2}\right) + \left(\frac{1}{N}\right))_*\\ \end{array}\]

Reproduce

herbie shell --seed 2019005 +o rules:numerics
(FPCore (N)
  :name "2log (problem 3.3.6)"
  (- (log (+ N 1)) (log N)))

Details

Time bar (total: 9.5s)Debug log

sample138.0ms

Algorithm
intervals

simplify8.0ms

Counts
1 → 1
Calls

1 calls. Slowest were:

8.0ms
(- (log (+ N 1)) (log N))

prune12.0ms

Pruning

1 alts after pruning (1 fresh and 0 done)

Merged error: 30.1b

localize9.0ms

Local error

Found 1 expressions with local error:

2.7b
(- (log1p N) (log N))

rewrite4.0ms

Algorithm
rewrite-expression-head
Counts
1 → 29
Calls

1 calls. Slowest were:

4.0ms
(- (log1p N) (log N))

series107.0ms

Counts
1 → 3
Calls

1 calls. Slowest were:

107.0ms
(- (log1p N) (log N))

simplify758.0ms

Counts
28 → 32
Calls

28 calls. Slowest were:

191.0ms
(- (+ (* 1/3 (/ 1 (pow N 3))) (/ 1 N)) (* 1/2 (/ 1 (pow N 2))))
191.0ms
(- (+ (* 1/3 (/ 1 (pow N 3))) (/ 1 N)) (* 1/2 (/ 1 (pow N 2))))
73.0ms
(- N (+ (log N) (* 1/2 (pow N 2))))

prune569.0ms

Pruning

3 alts after pruning (3 fresh and 0 done)

Merged error: 0.1b

localize8.0ms

Local error

Found 2 expressions with local error:

2.9b
(log (/ (+ 1 N) N))
0.0b
(/ (+ 1 N) N)

rewrite4.0ms

Algorithm
rewrite-expression-head
Counts
2 → 33
Calls

2 calls. Slowest were:

2.0ms
(/ (+ 1 N) N)
1.0ms
(log (/ (+ 1 N) N))

series68.0ms

Counts
2 → 6
Calls

2 calls. Slowest were:

49.0ms
(log (/ (+ 1 N) N))
19.0ms
(/ (+ 1 N) N)

simplify497.0ms

Counts
16 → 39
Calls

16 calls. Slowest were:

206.0ms
(- (+ (* 1/3 (/ 1 (pow N 3))) (/ 1 N)) (* 1/2 (/ 1 (pow N 2))))
156.0ms
(- (+ (* 1/3 (/ 1 (pow N 3))) (/ 1 N)) (* 1/2 (/ 1 (pow N 2))))
81.0ms
(- N (+ (log N) (* 1/2 (pow N 2))))

prune315.0ms

Pruning

4 alts after pruning (3 fresh and 1 done)

Merged error: 0.1b

localize17.0ms

Local error

Found 3 expressions with local error:

0.3b
(/ 1/3 N)
0.3b
(/ 1 (* N N))
0.1b
(fma (/ 1 (* N N)) (- (/ 1/3 N) 1/2) (/ 1 N))

rewrite2.0ms

Algorithm
rewrite-expression-head
Counts
3 → 39
Calls

3 calls. Slowest were:

1.0ms
(/ 1 (* N N))
0.0ms
(/ 1/3 N)
0.0ms
(fma (/ 1 (* N N)) (- (/ 1/3 N) 1/2) (/ 1 N))

series27.0ms

Counts
3 → 9
Calls

3 calls. Slowest were:

11.0ms
(fma (/ 1 (* N N)) (- (/ 1/3 N) 1/2) (/ 1 N))
8.0ms
(/ 1 (* N N))
8.0ms
(/ 1/3 N)

simplify513.0ms

Counts
11 → 48
Calls

11 calls. Slowest were:

181.0ms
(- (+ (* 1/3 (/ 1 (pow N 3))) (/ 1 N)) (* 1/2 (/ 1 (pow N 2))))
171.0ms
(- (+ (* 1/3 (/ 1 (pow N 3))) (/ 1 N)) (* 1/2 (/ 1 (pow N 2))))
144.0ms
(- (+ (/ 1 N) (* 1/3 (/ 1 (pow N 3)))) (* 1/2 (/ 1 (pow N 2))))

prune372.0ms

Pruning

5 alts after pruning (3 fresh and 2 done)

Merged error: 0.1b

localize12.0ms

Local error

Found 4 expressions with local error:

2.9b
(log (/ (+ 1 N) N))
2.9b
(log (/ (+ 1 N) N))
2.9b
(log (/ (+ 1 N) N))
0.3b
(cbrt (* (* (log (/ (+ 1 N) N)) (log (/ (+ 1 N) N))) (log (/ (+ 1 N) N))))

rewrite11.0ms

Algorithm
rewrite-expression-head
Counts
4 → 60
Calls

4 calls. Slowest were:

8.0ms
(cbrt (* (* (log (/ (+ 1 N) N)) (log (/ (+ 1 N) N))) (log (/ (+ 1 N) N))))
1.0ms
(log (/ (+ 1 N) N))
1.0ms
(log (/ (+ 1 N) N))

series216.0ms

Counts
4 → 12
Calls

4 calls. Slowest were:

55.0ms
(cbrt (* (* (log (/ (+ 1 N) N)) (log (/ (+ 1 N) N))) (log (/ (+ 1 N) N))))
55.0ms
(log (/ (+ 1 N) N))
54.0ms
(log (/ (+ 1 N) N))
52.0ms
(log (/ (+ 1 N) N))

simplify1.9s

Counts
32 → 72
Calls

32 calls. Slowest were:

217.0ms
(- (+ (* 1/3 (/ 1 (pow N 3))) (/ 1 N)) (* 1/2 (/ 1 (pow N 2))))
204.0ms
(- (+ (* 1/3 (/ 1 (pow N 3))) (/ 1 N)) (* 1/2 (/ 1 (pow N 2))))
197.0ms
(- (+ (* 1/3 (/ 1 (pow N 3))) (/ 1 N)) (* 1/2 (/ 1 (pow N 2))))

prune597.0ms

Pruning

5 alts after pruning (3 fresh and 2 done)

Merged error: 0.1b

regimes42.0ms

Accuracy

100% (0.0b remaining)

Error of 0.1b against oracle of 0.1b and baseline of 29.5b

bsearch29.0ms

end0.0ms

sample3.2s

Algorithm
intervals