2cbrt (problem 3.3.4)

Percentage Accurate: 6.8% → 97.8%
Time: 4.0s
Alternatives: 11
Speedup: 1.9×

Specification

?
\[x > 1 \land x < 10^{+308}\]
\[\begin{array}{l} \\ \sqrt[3]{x + 1} - \sqrt[3]{x} \end{array} \]
(FPCore (x) :precision binary64 (- (cbrt (+ x 1.0)) (cbrt x)))
double code(double x) {
	return cbrt((x + 1.0)) - cbrt(x);
}
public static double code(double x) {
	return Math.cbrt((x + 1.0)) - Math.cbrt(x);
}
function code(x)
	return Float64(cbrt(Float64(x + 1.0)) - cbrt(x))
end
code[x_] := N[(N[Power[N[(x + 1.0), $MachinePrecision], 1/3], $MachinePrecision] - N[Power[x, 1/3], $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
\sqrt[3]{x + 1} - \sqrt[3]{x}
\end{array}

Local Percentage Accuracy vs ?

The average percentage accuracy by input value. Horizontal axis shows value of an input variable; the variable is choosen in the title. Vertical axis is accuracy; higher is better. Red represent the original program, while blue represents Herbie's suggestion. These can be toggled with buttons below the plot. The line is an average while dots represent individual samples.

Accuracy vs Speed?

Herbie found 11 alternatives:

AlternativeAccuracySpeedup
The accuracy (vertical axis) and speed (horizontal axis) of each alternatives. Up and to the right is better. The red square shows the initial program, and each blue circle shows an alternative.The line shows the best available speed-accuracy tradeoffs.

Initial Program: 6.8% accurate, 1.0× speedup?

\[\begin{array}{l} \\ \sqrt[3]{x + 1} - \sqrt[3]{x} \end{array} \]
(FPCore (x) :precision binary64 (- (cbrt (+ x 1.0)) (cbrt x)))
double code(double x) {
	return cbrt((x + 1.0)) - cbrt(x);
}
public static double code(double x) {
	return Math.cbrt((x + 1.0)) - Math.cbrt(x);
}
function code(x)
	return Float64(cbrt(Float64(x + 1.0)) - cbrt(x))
end
code[x_] := N[(N[Power[N[(x + 1.0), $MachinePrecision], 1/3], $MachinePrecision] - N[Power[x, 1/3], $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
\sqrt[3]{x + 1} - \sqrt[3]{x}
\end{array}

Alternative 1: 97.8% accurate, 0.6× speedup?

\[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;x \leq 2.55 \cdot 10^{+14}:\\ \;\;\;\;\mathsf{fma}\left({x}^{-1.6666666666666667}, -0.1111111111111111, \mathsf{fma}\left({x}^{-2.6666666666666665}, 0.06172839506172839, {x}^{-0.6666666666666666} \cdot 0.3333333333333333\right)\right)\\ \mathbf{else}:\\ \;\;\;\;\frac{\sqrt[3]{\frac{1}{x} \cdot 1}}{\sqrt[3]{x}} \cdot 0.3333333333333333\\ \end{array} \end{array} \]
(FPCore (x)
 :precision binary64
 (if (<= x 2.55e+14)
   (fma
    (pow x -1.6666666666666667)
    -0.1111111111111111
    (fma
     (pow x -2.6666666666666665)
     0.06172839506172839
     (* (pow x -0.6666666666666666) 0.3333333333333333)))
   (* (/ (cbrt (* (/ 1.0 x) 1.0)) (cbrt x)) 0.3333333333333333)))
double code(double x) {
	double tmp;
	if (x <= 2.55e+14) {
		tmp = fma(pow(x, -1.6666666666666667), -0.1111111111111111, fma(pow(x, -2.6666666666666665), 0.06172839506172839, (pow(x, -0.6666666666666666) * 0.3333333333333333)));
	} else {
		tmp = (cbrt(((1.0 / x) * 1.0)) / cbrt(x)) * 0.3333333333333333;
	}
	return tmp;
}
function code(x)
	tmp = 0.0
	if (x <= 2.55e+14)
		tmp = fma((x ^ -1.6666666666666667), -0.1111111111111111, fma((x ^ -2.6666666666666665), 0.06172839506172839, Float64((x ^ -0.6666666666666666) * 0.3333333333333333)));
	else
		tmp = Float64(Float64(cbrt(Float64(Float64(1.0 / x) * 1.0)) / cbrt(x)) * 0.3333333333333333);
	end
	return tmp
end
code[x_] := If[LessEqual[x, 2.55e+14], N[(N[Power[x, -1.6666666666666667], $MachinePrecision] * -0.1111111111111111 + N[(N[Power[x, -2.6666666666666665], $MachinePrecision] * 0.06172839506172839 + N[(N[Power[x, -0.6666666666666666], $MachinePrecision] * 0.3333333333333333), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(N[(N[Power[N[(N[(1.0 / x), $MachinePrecision] * 1.0), $MachinePrecision], 1/3], $MachinePrecision] / N[Power[x, 1/3], $MachinePrecision]), $MachinePrecision] * 0.3333333333333333), $MachinePrecision]]
\begin{array}{l}

\\
\begin{array}{l}
\mathbf{if}\;x \leq 2.55 \cdot 10^{+14}:\\
\;\;\;\;\mathsf{fma}\left({x}^{-1.6666666666666667}, -0.1111111111111111, \mathsf{fma}\left({x}^{-2.6666666666666665}, 0.06172839506172839, {x}^{-0.6666666666666666} \cdot 0.3333333333333333\right)\right)\\

\mathbf{else}:\\
\;\;\;\;\frac{\sqrt[3]{\frac{1}{x} \cdot 1}}{\sqrt[3]{x}} \cdot 0.3333333333333333\\


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if x < 2.55e14

    1. Initial program 58.9%

      \[\sqrt[3]{x + 1} - \sqrt[3]{x} \]
    2. Step-by-step derivation
      1. lift-+.f64N/A

        \[\leadsto \sqrt[3]{\color{blue}{x + 1}} - \sqrt[3]{x} \]
      2. lift-cbrt.f64N/A

        \[\leadsto \color{blue}{\sqrt[3]{x + 1}} - \sqrt[3]{x} \]
      3. pow1/3N/A

        \[\leadsto \color{blue}{{\left(x + 1\right)}^{\frac{1}{3}}} - \sqrt[3]{x} \]
      4. lower-pow.f64N/A

        \[\leadsto \color{blue}{{\left(x + 1\right)}^{\frac{1}{3}}} - \sqrt[3]{x} \]
      5. metadata-evalN/A

        \[\leadsto {\left(x + \color{blue}{1 \cdot 1}\right)}^{\frac{1}{3}} - \sqrt[3]{x} \]
      6. fp-cancel-sign-sub-invN/A

        \[\leadsto {\color{blue}{\left(x - \left(\mathsf{neg}\left(1\right)\right) \cdot 1\right)}}^{\frac{1}{3}} - \sqrt[3]{x} \]
      7. metadata-evalN/A

        \[\leadsto {\left(x - \color{blue}{-1} \cdot 1\right)}^{\frac{1}{3}} - \sqrt[3]{x} \]
      8. metadata-evalN/A

        \[\leadsto {\left(x - \color{blue}{-1}\right)}^{\frac{1}{3}} - \sqrt[3]{x} \]
      9. lower--.f6455.9

        \[\leadsto {\color{blue}{\left(x - -1\right)}}^{0.3333333333333333} - \sqrt[3]{x} \]
    3. Applied rewrites55.9%

      \[\leadsto \color{blue}{{\left(x - -1\right)}^{0.3333333333333333}} - \sqrt[3]{x} \]
    4. Taylor expanded in x around inf

      \[\leadsto \color{blue}{\frac{\frac{-1}{9} \cdot \sqrt[3]{x} + \left(\frac{5}{81} \cdot \sqrt[3]{\frac{1}{{x}^{2}}} + \frac{1}{3} \cdot \sqrt[3]{{x}^{4}}\right)}{{x}^{2}}} \]
    5. Step-by-step derivation
      1. pow-to-expN/A

        \[\leadsto \frac{\color{blue}{\frac{-1}{9} \cdot \sqrt[3]{x}} + \left(\frac{5}{81} \cdot \sqrt[3]{\frac{1}{{x}^{2}}} + \frac{1}{3} \cdot \sqrt[3]{{x}^{4}}\right)}{{x}^{2}} \]
      2. lower-/.f64N/A

        \[\leadsto \frac{\frac{-1}{9} \cdot \sqrt[3]{x} + \left(\frac{5}{81} \cdot \sqrt[3]{\frac{1}{{x}^{2}}} + \frac{1}{3} \cdot \sqrt[3]{{x}^{4}}\right)}{\color{blue}{{x}^{2}}} \]
    6. Applied rewrites84.5%

      \[\leadsto \color{blue}{\frac{\mathsf{fma}\left(-0.1111111111111111, \sqrt[3]{x}, \mathsf{fma}\left({x}^{1.3333333333333333}, 0.3333333333333333, {x}^{-0.6666666666666666} \cdot 0.06172839506172839\right)\right)}{x \cdot x}} \]
    7. Taylor expanded in x around inf

      \[\leadsto \frac{-1}{9} \cdot \sqrt[3]{\frac{1}{{x}^{5}}} + \color{blue}{\left(\frac{5}{81} \cdot \sqrt[3]{\frac{1}{{x}^{8}}} + \frac{1}{3} \cdot \sqrt[3]{\frac{1}{{x}^{2}}}\right)} \]
    8. Step-by-step derivation
      1. *-commutativeN/A

        \[\leadsto \sqrt[3]{\frac{1}{{x}^{5}}} \cdot \frac{-1}{9} + \left(\frac{5}{81} \cdot \sqrt[3]{\frac{1}{{x}^{8}}} + \color{blue}{\frac{1}{3}} \cdot \sqrt[3]{\frac{1}{{x}^{2}}}\right) \]
      2. lower-fma.f64N/A

        \[\leadsto \mathsf{fma}\left(\sqrt[3]{\frac{1}{{x}^{5}}}, \frac{-1}{9}, \frac{5}{81} \cdot \sqrt[3]{\frac{1}{{x}^{8}}} + \frac{1}{3} \cdot \sqrt[3]{\frac{1}{{x}^{2}}}\right) \]
      3. pow1/3N/A

        \[\leadsto \mathsf{fma}\left({\left(\frac{1}{{x}^{5}}\right)}^{\frac{1}{3}}, \frac{-1}{9}, \frac{5}{81} \cdot \sqrt[3]{\frac{1}{{x}^{8}}} + \frac{1}{3} \cdot \sqrt[3]{\frac{1}{{x}^{2}}}\right) \]
      4. pow-flipN/A

        \[\leadsto \mathsf{fma}\left({\left({x}^{\left(\mathsf{neg}\left(5\right)\right)}\right)}^{\frac{1}{3}}, \frac{-1}{9}, \frac{5}{81} \cdot \sqrt[3]{\frac{1}{{x}^{8}}} + \frac{1}{3} \cdot \sqrt[3]{\frac{1}{{x}^{2}}}\right) \]
      5. pow-powN/A

        \[\leadsto \mathsf{fma}\left({x}^{\left(\left(\mathsf{neg}\left(5\right)\right) \cdot \frac{1}{3}\right)}, \frac{-1}{9}, \frac{5}{81} \cdot \sqrt[3]{\frac{1}{{x}^{8}}} + \frac{1}{3} \cdot \sqrt[3]{\frac{1}{{x}^{2}}}\right) \]
      6. metadata-evalN/A

        \[\leadsto \mathsf{fma}\left({x}^{\left(-5 \cdot \frac{1}{3}\right)}, \frac{-1}{9}, \frac{5}{81} \cdot \sqrt[3]{\frac{1}{{x}^{8}}} + \frac{1}{3} \cdot \sqrt[3]{\frac{1}{{x}^{2}}}\right) \]
      7. metadata-evalN/A

        \[\leadsto \mathsf{fma}\left({x}^{\frac{-5}{3}}, \frac{-1}{9}, \frac{5}{81} \cdot \sqrt[3]{\frac{1}{{x}^{8}}} + \frac{1}{3} \cdot \sqrt[3]{\frac{1}{{x}^{2}}}\right) \]
      8. lift-pow.f64N/A

        \[\leadsto \mathsf{fma}\left({x}^{\frac{-5}{3}}, \frac{-1}{9}, \frac{5}{81} \cdot \sqrt[3]{\frac{1}{{x}^{8}}} + \frac{1}{3} \cdot \sqrt[3]{\frac{1}{{x}^{2}}}\right) \]
      9. *-commutativeN/A

        \[\leadsto \mathsf{fma}\left({x}^{\frac{-5}{3}}, \frac{-1}{9}, \sqrt[3]{\frac{1}{{x}^{8}}} \cdot \frac{5}{81} + \frac{1}{3} \cdot \sqrt[3]{\frac{1}{{x}^{2}}}\right) \]
      10. lower-fma.f64N/A

        \[\leadsto \mathsf{fma}\left({x}^{\frac{-5}{3}}, \frac{-1}{9}, \mathsf{fma}\left(\sqrt[3]{\frac{1}{{x}^{8}}}, \frac{5}{81}, \frac{1}{3} \cdot \sqrt[3]{\frac{1}{{x}^{2}}}\right)\right) \]
    9. Applied rewrites85.5%

      \[\leadsto \mathsf{fma}\left({x}^{-1.6666666666666667}, \color{blue}{-0.1111111111111111}, \mathsf{fma}\left({x}^{-2.6666666666666665}, 0.06172839506172839, {x}^{-0.6666666666666666} \cdot 0.3333333333333333\right)\right) \]

    if 2.55e14 < x

    1. Initial program 4.3%

      \[\sqrt[3]{x + 1} - \sqrt[3]{x} \]
    2. Taylor expanded in x around inf

      \[\leadsto \color{blue}{\frac{1}{3} \cdot \sqrt[3]{\frac{1}{{x}^{2}}}} \]
    3. Step-by-step derivation
      1. *-commutativeN/A

        \[\leadsto \sqrt[3]{\frac{1}{{x}^{2}}} \cdot \color{blue}{\frac{1}{3}} \]
      2. lower-*.f64N/A

        \[\leadsto \sqrt[3]{\frac{1}{{x}^{2}}} \cdot \color{blue}{\frac{1}{3}} \]
      3. pow1/3N/A

        \[\leadsto {\left(\frac{1}{{x}^{2}}\right)}^{\frac{1}{3}} \cdot \frac{1}{3} \]
      4. pow-flipN/A

        \[\leadsto {\left({x}^{\left(\mathsf{neg}\left(2\right)\right)}\right)}^{\frac{1}{3}} \cdot \frac{1}{3} \]
      5. pow-powN/A

        \[\leadsto {x}^{\left(\left(\mathsf{neg}\left(2\right)\right) \cdot \frac{1}{3}\right)} \cdot \frac{1}{3} \]
      6. metadata-evalN/A

        \[\leadsto {x}^{\left(-2 \cdot \frac{1}{3}\right)} \cdot \frac{1}{3} \]
      7. metadata-evalN/A

        \[\leadsto {x}^{\frac{-2}{3}} \cdot \frac{1}{3} \]
      8. metadata-evalN/A

        \[\leadsto {x}^{\left(\frac{1}{3} \cdot -2\right)} \cdot \frac{1}{3} \]
      9. metadata-evalN/A

        \[\leadsto {x}^{\left(\frac{1}{3} \cdot \left(\mathsf{neg}\left(2\right)\right)\right)} \cdot \frac{1}{3} \]
      10. lower-pow.f64N/A

        \[\leadsto {x}^{\left(\frac{1}{3} \cdot \left(\mathsf{neg}\left(2\right)\right)\right)} \cdot \frac{1}{3} \]
      11. metadata-evalN/A

        \[\leadsto {x}^{\left(\frac{1}{3} \cdot -2\right)} \cdot \frac{1}{3} \]
      12. metadata-eval90.3

        \[\leadsto {x}^{-0.6666666666666666} \cdot 0.3333333333333333 \]
    4. Applied rewrites90.3%

      \[\leadsto \color{blue}{{x}^{-0.6666666666666666} \cdot 0.3333333333333333} \]
    5. Step-by-step derivation
      1. lift-pow.f64N/A

        \[\leadsto {x}^{\frac{-2}{3}} \cdot \frac{1}{3} \]
      2. metadata-evalN/A

        \[\leadsto {x}^{\left(\frac{-1}{3} + \frac{-1}{3}\right)} \cdot \frac{1}{3} \]
      3. pow-prod-upN/A

        \[\leadsto \left({x}^{\frac{-1}{3}} \cdot {x}^{\frac{-1}{3}}\right) \cdot \frac{1}{3} \]
      4. pow-prod-downN/A

        \[\leadsto {\left(x \cdot x\right)}^{\frac{-1}{3}} \cdot \frac{1}{3} \]
      5. pow2N/A

        \[\leadsto {\left({x}^{2}\right)}^{\frac{-1}{3}} \cdot \frac{1}{3} \]
      6. lower-pow.f64N/A

        \[\leadsto {\left({x}^{2}\right)}^{\frac{-1}{3}} \cdot \frac{1}{3} \]
      7. pow2N/A

        \[\leadsto {\left(x \cdot x\right)}^{\frac{-1}{3}} \cdot \frac{1}{3} \]
      8. lift-*.f6445.7

        \[\leadsto {\left(x \cdot x\right)}^{-0.3333333333333333} \cdot 0.3333333333333333 \]
    6. Applied rewrites45.7%

      \[\leadsto {\left(x \cdot x\right)}^{-0.3333333333333333} \cdot 0.3333333333333333 \]
    7. Step-by-step derivation
      1. lift-*.f64N/A

        \[\leadsto {\left(x \cdot x\right)}^{\frac{-1}{3}} \cdot \frac{1}{3} \]
      2. lift-pow.f64N/A

        \[\leadsto {\left(x \cdot x\right)}^{\frac{-1}{3}} \cdot \frac{1}{3} \]
      3. pow2N/A

        \[\leadsto {\left({x}^{2}\right)}^{\frac{-1}{3}} \cdot \frac{1}{3} \]
      4. metadata-evalN/A

        \[\leadsto {\left({x}^{2}\right)}^{\left(-1 \cdot \frac{1}{3}\right)} \cdot \frac{1}{3} \]
      5. pow-powN/A

        \[\leadsto {\left({\left({x}^{2}\right)}^{-1}\right)}^{\frac{1}{3}} \cdot \frac{1}{3} \]
      6. inv-powN/A

        \[\leadsto {\left(\frac{1}{{x}^{2}}\right)}^{\frac{1}{3}} \cdot \frac{1}{3} \]
      7. pow1/3N/A

        \[\leadsto \sqrt[3]{\frac{1}{{x}^{2}}} \cdot \frac{1}{3} \]
      8. metadata-evalN/A

        \[\leadsto \sqrt[3]{\frac{1 \cdot 1}{{x}^{2}}} \cdot \frac{1}{3} \]
      9. pow2N/A

        \[\leadsto \sqrt[3]{\frac{1 \cdot 1}{x \cdot x}} \cdot \frac{1}{3} \]
      10. frac-timesN/A

        \[\leadsto \sqrt[3]{\frac{1}{x} \cdot \frac{1}{x}} \cdot \frac{1}{3} \]
      11. lift-/.f64N/A

        \[\leadsto \sqrt[3]{\frac{1}{x} \cdot \frac{1}{x}} \cdot \frac{1}{3} \]
      12. associate-*r/N/A

        \[\leadsto \sqrt[3]{\frac{\frac{1}{x} \cdot 1}{x}} \cdot \frac{1}{3} \]
      13. cbrt-divN/A

        \[\leadsto \frac{\sqrt[3]{\frac{1}{x} \cdot 1}}{\sqrt[3]{x}} \cdot \frac{1}{3} \]
      14. lower-/.f64N/A

        \[\leadsto \frac{\sqrt[3]{\frac{1}{x} \cdot 1}}{\sqrt[3]{x}} \cdot \frac{1}{3} \]
      15. lower-cbrt.f64N/A

        \[\leadsto \frac{\sqrt[3]{\frac{1}{x} \cdot 1}}{\sqrt[3]{x}} \cdot \frac{1}{3} \]
      16. lower-*.f64N/A

        \[\leadsto \frac{\sqrt[3]{\frac{1}{x} \cdot 1}}{\sqrt[3]{x}} \cdot \frac{1}{3} \]
      17. lift-cbrt.f6498.4

        \[\leadsto \frac{\sqrt[3]{\frac{1}{x} \cdot 1}}{\sqrt[3]{x}} \cdot 0.3333333333333333 \]
    8. Applied rewrites98.4%

      \[\leadsto \frac{\sqrt[3]{\frac{1}{x} \cdot 1}}{\sqrt[3]{x}} \cdot 0.3333333333333333 \]
  3. Recombined 2 regimes into one program.
  4. Add Preprocessing

Alternative 2: 97.6% accurate, 0.6× speedup?

\[\begin{array}{l} \\ \mathsf{fma}\left({x}^{-1.6666666666666667}, -0.1111111111111111, \frac{\sqrt[3]{\frac{1}{x}}}{\sqrt[3]{x}} \cdot 0.3333333333333333\right) \end{array} \]
(FPCore (x)
 :precision binary64
 (fma
  (pow x -1.6666666666666667)
  -0.1111111111111111
  (* (/ (cbrt (/ 1.0 x)) (cbrt x)) 0.3333333333333333)))
double code(double x) {
	return fma(pow(x, -1.6666666666666667), -0.1111111111111111, ((cbrt((1.0 / x)) / cbrt(x)) * 0.3333333333333333));
}
function code(x)
	return fma((x ^ -1.6666666666666667), -0.1111111111111111, Float64(Float64(cbrt(Float64(1.0 / x)) / cbrt(x)) * 0.3333333333333333))
end
code[x_] := N[(N[Power[x, -1.6666666666666667], $MachinePrecision] * -0.1111111111111111 + N[(N[(N[Power[N[(1.0 / x), $MachinePrecision], 1/3], $MachinePrecision] / N[Power[x, 1/3], $MachinePrecision]), $MachinePrecision] * 0.3333333333333333), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
\mathsf{fma}\left({x}^{-1.6666666666666667}, -0.1111111111111111, \frac{\sqrt[3]{\frac{1}{x}}}{\sqrt[3]{x}} \cdot 0.3333333333333333\right)
\end{array}
Derivation
  1. Initial program 6.8%

    \[\sqrt[3]{x + 1} - \sqrt[3]{x} \]
  2. Taylor expanded in x around inf

    \[\leadsto \color{blue}{\frac{\frac{-1}{9} \cdot \sqrt[3]{x} + \frac{1}{3} \cdot \sqrt[3]{{x}^{4}}}{{x}^{2}}} \]
  3. Step-by-step derivation
    1. lower-/.f64N/A

      \[\leadsto \frac{\frac{-1}{9} \cdot \sqrt[3]{x} + \frac{1}{3} \cdot \sqrt[3]{{x}^{4}}}{\color{blue}{{x}^{2}}} \]
    2. +-commutativeN/A

      \[\leadsto \frac{\frac{1}{3} \cdot \sqrt[3]{{x}^{4}} + \frac{-1}{9} \cdot \sqrt[3]{x}}{{\color{blue}{x}}^{2}} \]
    3. *-commutativeN/A

      \[\leadsto \frac{\sqrt[3]{{x}^{4}} \cdot \frac{1}{3} + \frac{-1}{9} \cdot \sqrt[3]{x}}{{x}^{2}} \]
    4. lower-fma.f64N/A

      \[\leadsto \frac{\mathsf{fma}\left(\sqrt[3]{{x}^{4}}, \frac{1}{3}, \frac{-1}{9} \cdot \sqrt[3]{x}\right)}{{\color{blue}{x}}^{2}} \]
    5. pow1/3N/A

      \[\leadsto \frac{\mathsf{fma}\left({\left({x}^{4}\right)}^{\frac{1}{3}}, \frac{1}{3}, \frac{-1}{9} \cdot \sqrt[3]{x}\right)}{{x}^{2}} \]
    6. pow-powN/A

      \[\leadsto \frac{\mathsf{fma}\left({x}^{\left(4 \cdot \frac{1}{3}\right)}, \frac{1}{3}, \frac{-1}{9} \cdot \sqrt[3]{x}\right)}{{x}^{2}} \]
    7. lower-pow.f64N/A

      \[\leadsto \frac{\mathsf{fma}\left({x}^{\left(4 \cdot \frac{1}{3}\right)}, \frac{1}{3}, \frac{-1}{9} \cdot \sqrt[3]{x}\right)}{{x}^{2}} \]
    8. metadata-evalN/A

      \[\leadsto \frac{\mathsf{fma}\left({x}^{\frac{4}{3}}, \frac{1}{3}, \frac{-1}{9} \cdot \sqrt[3]{x}\right)}{{x}^{2}} \]
    9. lower-*.f64N/A

      \[\leadsto \frac{\mathsf{fma}\left({x}^{\frac{4}{3}}, \frac{1}{3}, \frac{-1}{9} \cdot \sqrt[3]{x}\right)}{{x}^{2}} \]
    10. lift-cbrt.f64N/A

      \[\leadsto \frac{\mathsf{fma}\left({x}^{\frac{4}{3}}, \frac{1}{3}, \frac{-1}{9} \cdot \sqrt[3]{x}\right)}{{x}^{2}} \]
    11. unpow2N/A

      \[\leadsto \frac{\mathsf{fma}\left({x}^{\frac{4}{3}}, \frac{1}{3}, \frac{-1}{9} \cdot \sqrt[3]{x}\right)}{x \cdot \color{blue}{x}} \]
    12. lower-*.f6445.2

      \[\leadsto \frac{\mathsf{fma}\left({x}^{1.3333333333333333}, 0.3333333333333333, -0.1111111111111111 \cdot \sqrt[3]{x}\right)}{x \cdot \color{blue}{x}} \]
  4. Applied rewrites45.2%

    \[\leadsto \color{blue}{\frac{\mathsf{fma}\left({x}^{1.3333333333333333}, 0.3333333333333333, -0.1111111111111111 \cdot \sqrt[3]{x}\right)}{x \cdot x}} \]
  5. Taylor expanded in x around inf

    \[\leadsto \frac{-1}{9} \cdot \sqrt[3]{\frac{1}{{x}^{5}}} + \color{blue}{\frac{1}{3} \cdot \sqrt[3]{\frac{1}{{x}^{2}}}} \]
  6. Step-by-step derivation
    1. *-commutativeN/A

      \[\leadsto \sqrt[3]{\frac{1}{{x}^{5}}} \cdot \frac{-1}{9} + \frac{1}{3} \cdot \sqrt[3]{\color{blue}{\frac{1}{{x}^{2}}}} \]
    2. lower-fma.f64N/A

      \[\leadsto \mathsf{fma}\left(\sqrt[3]{\frac{1}{{x}^{5}}}, \frac{-1}{9}, \frac{1}{3} \cdot \sqrt[3]{\frac{1}{{x}^{2}}}\right) \]
    3. pow1/3N/A

      \[\leadsto \mathsf{fma}\left({\left(\frac{1}{{x}^{5}}\right)}^{\frac{1}{3}}, \frac{-1}{9}, \frac{1}{3} \cdot \sqrt[3]{\frac{1}{{x}^{2}}}\right) \]
    4. pow-flipN/A

      \[\leadsto \mathsf{fma}\left({\left({x}^{\left(\mathsf{neg}\left(5\right)\right)}\right)}^{\frac{1}{3}}, \frac{-1}{9}, \frac{1}{3} \cdot \sqrt[3]{\frac{1}{{x}^{2}}}\right) \]
    5. pow-powN/A

      \[\leadsto \mathsf{fma}\left({x}^{\left(\left(\mathsf{neg}\left(5\right)\right) \cdot \frac{1}{3}\right)}, \frac{-1}{9}, \frac{1}{3} \cdot \sqrt[3]{\frac{1}{{x}^{2}}}\right) \]
    6. metadata-evalN/A

      \[\leadsto \mathsf{fma}\left({x}^{\left(-5 \cdot \frac{1}{3}\right)}, \frac{-1}{9}, \frac{1}{3} \cdot \sqrt[3]{\frac{1}{{x}^{2}}}\right) \]
    7. metadata-evalN/A

      \[\leadsto \mathsf{fma}\left({x}^{\frac{-5}{3}}, \frac{-1}{9}, \frac{1}{3} \cdot \sqrt[3]{\frac{1}{{x}^{2}}}\right) \]
    8. metadata-evalN/A

      \[\leadsto \mathsf{fma}\left({x}^{\left(\frac{1}{3} \cdot -5\right)}, \frac{-1}{9}, \frac{1}{3} \cdot \sqrt[3]{\frac{1}{{x}^{2}}}\right) \]
    9. metadata-evalN/A

      \[\leadsto \mathsf{fma}\left({x}^{\left(\frac{1}{3} \cdot \left(\mathsf{neg}\left(5\right)\right)\right)}, \frac{-1}{9}, \frac{1}{3} \cdot \sqrt[3]{\frac{1}{{x}^{2}}}\right) \]
    10. lower-pow.f64N/A

      \[\leadsto \mathsf{fma}\left({x}^{\left(\frac{1}{3} \cdot \left(\mathsf{neg}\left(5\right)\right)\right)}, \frac{-1}{9}, \frac{1}{3} \cdot \sqrt[3]{\frac{1}{{x}^{2}}}\right) \]
    11. metadata-evalN/A

      \[\leadsto \mathsf{fma}\left({x}^{\left(\frac{1}{3} \cdot -5\right)}, \frac{-1}{9}, \frac{1}{3} \cdot \sqrt[3]{\frac{1}{{x}^{2}}}\right) \]
    12. metadata-evalN/A

      \[\leadsto \mathsf{fma}\left({x}^{\frac{-5}{3}}, \frac{-1}{9}, \frac{1}{3} \cdot \sqrt[3]{\frac{1}{{x}^{2}}}\right) \]
    13. pow1/3N/A

      \[\leadsto \mathsf{fma}\left({x}^{\frac{-5}{3}}, \frac{-1}{9}, \frac{1}{3} \cdot {\left(\frac{1}{{x}^{2}}\right)}^{\frac{1}{3}}\right) \]
    14. pow-flipN/A

      \[\leadsto \mathsf{fma}\left({x}^{\frac{-5}{3}}, \frac{-1}{9}, \frac{1}{3} \cdot {\left({x}^{\left(\mathsf{neg}\left(2\right)\right)}\right)}^{\frac{1}{3}}\right) \]
    15. pow-powN/A

      \[\leadsto \mathsf{fma}\left({x}^{\frac{-5}{3}}, \frac{-1}{9}, \frac{1}{3} \cdot {x}^{\left(\left(\mathsf{neg}\left(2\right)\right) \cdot \frac{1}{3}\right)}\right) \]
    16. metadata-evalN/A

      \[\leadsto \mathsf{fma}\left({x}^{\frac{-5}{3}}, \frac{-1}{9}, \frac{1}{3} \cdot {x}^{\left(-2 \cdot \frac{1}{3}\right)}\right) \]
    17. metadata-evalN/A

      \[\leadsto \mathsf{fma}\left({x}^{\frac{-5}{3}}, \frac{-1}{9}, \frac{1}{3} \cdot {x}^{\frac{-2}{3}}\right) \]
    18. lift-pow.f64N/A

      \[\leadsto \mathsf{fma}\left({x}^{\frac{-5}{3}}, \frac{-1}{9}, \frac{1}{3} \cdot {x}^{\frac{-2}{3}}\right) \]
    19. *-commutativeN/A

      \[\leadsto \mathsf{fma}\left({x}^{\frac{-5}{3}}, \frac{-1}{9}, {x}^{\frac{-2}{3}} \cdot \frac{1}{3}\right) \]
    20. lift-*.f6489.9

      \[\leadsto \mathsf{fma}\left({x}^{-1.6666666666666667}, -0.1111111111111111, {x}^{-0.6666666666666666} \cdot 0.3333333333333333\right) \]
  7. Applied rewrites89.9%

    \[\leadsto \mathsf{fma}\left({x}^{-1.6666666666666667}, \color{blue}{-0.1111111111111111}, {x}^{-0.6666666666666666} \cdot 0.3333333333333333\right) \]
  8. Step-by-step derivation
    1. lift-pow.f64N/A

      \[\leadsto \mathsf{fma}\left({x}^{\frac{-5}{3}}, \frac{-1}{9}, {x}^{\frac{-2}{3}} \cdot \frac{1}{3}\right) \]
    2. metadata-evalN/A

      \[\leadsto \mathsf{fma}\left({x}^{\frac{-5}{3}}, \frac{-1}{9}, {x}^{\left(\frac{-1}{3} + \frac{-1}{3}\right)} \cdot \frac{1}{3}\right) \]
    3. pow-prod-upN/A

      \[\leadsto \mathsf{fma}\left({x}^{\frac{-5}{3}}, \frac{-1}{9}, \left({x}^{\frac{-1}{3}} \cdot {x}^{\frac{-1}{3}}\right) \cdot \frac{1}{3}\right) \]
    4. pow-prod-downN/A

      \[\leadsto \mathsf{fma}\left({x}^{\frac{-5}{3}}, \frac{-1}{9}, {\left(x \cdot x\right)}^{\frac{-1}{3}} \cdot \frac{1}{3}\right) \]
    5. metadata-evalN/A

      \[\leadsto \mathsf{fma}\left({x}^{\frac{-5}{3}}, \frac{-1}{9}, {\left(x \cdot x\right)}^{\left(-1 \cdot \frac{1}{3}\right)} \cdot \frac{1}{3}\right) \]
    6. pow-powN/A

      \[\leadsto \mathsf{fma}\left({x}^{\frac{-5}{3}}, \frac{-1}{9}, {\left({\left(x \cdot x\right)}^{-1}\right)}^{\frac{1}{3}} \cdot \frac{1}{3}\right) \]
    7. inv-powN/A

      \[\leadsto \mathsf{fma}\left({x}^{\frac{-5}{3}}, \frac{-1}{9}, {\left(\frac{1}{x \cdot x}\right)}^{\frac{1}{3}} \cdot \frac{1}{3}\right) \]
    8. pow1/3N/A

      \[\leadsto \mathsf{fma}\left({x}^{\frac{-5}{3}}, \frac{-1}{9}, \sqrt[3]{\frac{1}{x \cdot x}} \cdot \frac{1}{3}\right) \]
    9. associate-/r*N/A

      \[\leadsto \mathsf{fma}\left({x}^{\frac{-5}{3}}, \frac{-1}{9}, \sqrt[3]{\frac{\frac{1}{x}}{x}} \cdot \frac{1}{3}\right) \]
    10. cbrt-divN/A

      \[\leadsto \mathsf{fma}\left({x}^{\frac{-5}{3}}, \frac{-1}{9}, \frac{\sqrt[3]{\frac{1}{x}}}{\sqrt[3]{x}} \cdot \frac{1}{3}\right) \]
    11. lower-/.f64N/A

      \[\leadsto \mathsf{fma}\left({x}^{\frac{-5}{3}}, \frac{-1}{9}, \frac{\sqrt[3]{\frac{1}{x}}}{\sqrt[3]{x}} \cdot \frac{1}{3}\right) \]
    12. lower-cbrt.f64N/A

      \[\leadsto \mathsf{fma}\left({x}^{\frac{-5}{3}}, \frac{-1}{9}, \frac{\sqrt[3]{\frac{1}{x}}}{\sqrt[3]{x}} \cdot \frac{1}{3}\right) \]
    13. lower-/.f64N/A

      \[\leadsto \mathsf{fma}\left({x}^{\frac{-5}{3}}, \frac{-1}{9}, \frac{\sqrt[3]{\frac{1}{x}}}{\sqrt[3]{x}} \cdot \frac{1}{3}\right) \]
    14. lift-cbrt.f6497.6

      \[\leadsto \mathsf{fma}\left({x}^{-1.6666666666666667}, -0.1111111111111111, \frac{\sqrt[3]{\frac{1}{x}}}{\sqrt[3]{x}} \cdot 0.3333333333333333\right) \]
  9. Applied rewrites97.6%

    \[\leadsto \mathsf{fma}\left({x}^{-1.6666666666666667}, -0.1111111111111111, \frac{\sqrt[3]{\frac{1}{x}}}{\sqrt[3]{x}} \cdot 0.3333333333333333\right) \]
  10. Add Preprocessing

Alternative 3: 96.7% accurate, 0.8× speedup?

\[\begin{array}{l} \\ \frac{\sqrt[3]{\frac{1}{x} \cdot 1}}{\sqrt[3]{x}} \cdot 0.3333333333333333 \end{array} \]
(FPCore (x)
 :precision binary64
 (* (/ (cbrt (* (/ 1.0 x) 1.0)) (cbrt x)) 0.3333333333333333))
double code(double x) {
	return (cbrt(((1.0 / x) * 1.0)) / cbrt(x)) * 0.3333333333333333;
}
public static double code(double x) {
	return (Math.cbrt(((1.0 / x) * 1.0)) / Math.cbrt(x)) * 0.3333333333333333;
}
function code(x)
	return Float64(Float64(cbrt(Float64(Float64(1.0 / x) * 1.0)) / cbrt(x)) * 0.3333333333333333)
end
code[x_] := N[(N[(N[Power[N[(N[(1.0 / x), $MachinePrecision] * 1.0), $MachinePrecision], 1/3], $MachinePrecision] / N[Power[x, 1/3], $MachinePrecision]), $MachinePrecision] * 0.3333333333333333), $MachinePrecision]
\begin{array}{l}

\\
\frac{\sqrt[3]{\frac{1}{x} \cdot 1}}{\sqrt[3]{x}} \cdot 0.3333333333333333
\end{array}
Derivation
  1. Initial program 6.8%

    \[\sqrt[3]{x + 1} - \sqrt[3]{x} \]
  2. Taylor expanded in x around inf

    \[\leadsto \color{blue}{\frac{1}{3} \cdot \sqrt[3]{\frac{1}{{x}^{2}}}} \]
  3. Step-by-step derivation
    1. *-commutativeN/A

      \[\leadsto \sqrt[3]{\frac{1}{{x}^{2}}} \cdot \color{blue}{\frac{1}{3}} \]
    2. lower-*.f64N/A

      \[\leadsto \sqrt[3]{\frac{1}{{x}^{2}}} \cdot \color{blue}{\frac{1}{3}} \]
    3. pow1/3N/A

      \[\leadsto {\left(\frac{1}{{x}^{2}}\right)}^{\frac{1}{3}} \cdot \frac{1}{3} \]
    4. pow-flipN/A

      \[\leadsto {\left({x}^{\left(\mathsf{neg}\left(2\right)\right)}\right)}^{\frac{1}{3}} \cdot \frac{1}{3} \]
    5. pow-powN/A

      \[\leadsto {x}^{\left(\left(\mathsf{neg}\left(2\right)\right) \cdot \frac{1}{3}\right)} \cdot \frac{1}{3} \]
    6. metadata-evalN/A

      \[\leadsto {x}^{\left(-2 \cdot \frac{1}{3}\right)} \cdot \frac{1}{3} \]
    7. metadata-evalN/A

      \[\leadsto {x}^{\frac{-2}{3}} \cdot \frac{1}{3} \]
    8. metadata-evalN/A

      \[\leadsto {x}^{\left(\frac{1}{3} \cdot -2\right)} \cdot \frac{1}{3} \]
    9. metadata-evalN/A

      \[\leadsto {x}^{\left(\frac{1}{3} \cdot \left(\mathsf{neg}\left(2\right)\right)\right)} \cdot \frac{1}{3} \]
    10. lower-pow.f64N/A

      \[\leadsto {x}^{\left(\frac{1}{3} \cdot \left(\mathsf{neg}\left(2\right)\right)\right)} \cdot \frac{1}{3} \]
    11. metadata-evalN/A

      \[\leadsto {x}^{\left(\frac{1}{3} \cdot -2\right)} \cdot \frac{1}{3} \]
    12. metadata-eval89.0

      \[\leadsto {x}^{-0.6666666666666666} \cdot 0.3333333333333333 \]
  4. Applied rewrites89.0%

    \[\leadsto \color{blue}{{x}^{-0.6666666666666666} \cdot 0.3333333333333333} \]
  5. Step-by-step derivation
    1. lift-pow.f64N/A

      \[\leadsto {x}^{\frac{-2}{3}} \cdot \frac{1}{3} \]
    2. metadata-evalN/A

      \[\leadsto {x}^{\left(\frac{-1}{3} + \frac{-1}{3}\right)} \cdot \frac{1}{3} \]
    3. pow-prod-upN/A

      \[\leadsto \left({x}^{\frac{-1}{3}} \cdot {x}^{\frac{-1}{3}}\right) \cdot \frac{1}{3} \]
    4. pow-prod-downN/A

      \[\leadsto {\left(x \cdot x\right)}^{\frac{-1}{3}} \cdot \frac{1}{3} \]
    5. pow2N/A

      \[\leadsto {\left({x}^{2}\right)}^{\frac{-1}{3}} \cdot \frac{1}{3} \]
    6. lower-pow.f64N/A

      \[\leadsto {\left({x}^{2}\right)}^{\frac{-1}{3}} \cdot \frac{1}{3} \]
    7. pow2N/A

      \[\leadsto {\left(x \cdot x\right)}^{\frac{-1}{3}} \cdot \frac{1}{3} \]
    8. lift-*.f6446.4

      \[\leadsto {\left(x \cdot x\right)}^{-0.3333333333333333} \cdot 0.3333333333333333 \]
  6. Applied rewrites46.4%

    \[\leadsto {\left(x \cdot x\right)}^{-0.3333333333333333} \cdot 0.3333333333333333 \]
  7. Step-by-step derivation
    1. lift-*.f64N/A

      \[\leadsto {\left(x \cdot x\right)}^{\frac{-1}{3}} \cdot \frac{1}{3} \]
    2. lift-pow.f64N/A

      \[\leadsto {\left(x \cdot x\right)}^{\frac{-1}{3}} \cdot \frac{1}{3} \]
    3. pow2N/A

      \[\leadsto {\left({x}^{2}\right)}^{\frac{-1}{3}} \cdot \frac{1}{3} \]
    4. metadata-evalN/A

      \[\leadsto {\left({x}^{2}\right)}^{\left(-1 \cdot \frac{1}{3}\right)} \cdot \frac{1}{3} \]
    5. pow-powN/A

      \[\leadsto {\left({\left({x}^{2}\right)}^{-1}\right)}^{\frac{1}{3}} \cdot \frac{1}{3} \]
    6. inv-powN/A

      \[\leadsto {\left(\frac{1}{{x}^{2}}\right)}^{\frac{1}{3}} \cdot \frac{1}{3} \]
    7. pow1/3N/A

      \[\leadsto \sqrt[3]{\frac{1}{{x}^{2}}} \cdot \frac{1}{3} \]
    8. metadata-evalN/A

      \[\leadsto \sqrt[3]{\frac{1 \cdot 1}{{x}^{2}}} \cdot \frac{1}{3} \]
    9. pow2N/A

      \[\leadsto \sqrt[3]{\frac{1 \cdot 1}{x \cdot x}} \cdot \frac{1}{3} \]
    10. frac-timesN/A

      \[\leadsto \sqrt[3]{\frac{1}{x} \cdot \frac{1}{x}} \cdot \frac{1}{3} \]
    11. lift-/.f64N/A

      \[\leadsto \sqrt[3]{\frac{1}{x} \cdot \frac{1}{x}} \cdot \frac{1}{3} \]
    12. associate-*r/N/A

      \[\leadsto \sqrt[3]{\frac{\frac{1}{x} \cdot 1}{x}} \cdot \frac{1}{3} \]
    13. cbrt-divN/A

      \[\leadsto \frac{\sqrt[3]{\frac{1}{x} \cdot 1}}{\sqrt[3]{x}} \cdot \frac{1}{3} \]
    14. lower-/.f64N/A

      \[\leadsto \frac{\sqrt[3]{\frac{1}{x} \cdot 1}}{\sqrt[3]{x}} \cdot \frac{1}{3} \]
    15. lower-cbrt.f64N/A

      \[\leadsto \frac{\sqrt[3]{\frac{1}{x} \cdot 1}}{\sqrt[3]{x}} \cdot \frac{1}{3} \]
    16. lower-*.f64N/A

      \[\leadsto \frac{\sqrt[3]{\frac{1}{x} \cdot 1}}{\sqrt[3]{x}} \cdot \frac{1}{3} \]
    17. lift-cbrt.f6496.7

      \[\leadsto \frac{\sqrt[3]{\frac{1}{x} \cdot 1}}{\sqrt[3]{x}} \cdot 0.3333333333333333 \]
  8. Applied rewrites96.7%

    \[\leadsto \frac{\sqrt[3]{\frac{1}{x} \cdot 1}}{\sqrt[3]{x}} \cdot 0.3333333333333333 \]
  9. Add Preprocessing

Alternative 4: 96.3% accurate, 0.8× speedup?

\[\begin{array}{l} \\ \begin{array}{l} t_0 := \sqrt[3]{\frac{-1}{x}}\\ \left(t\_0 \cdot t\_0\right) \cdot 0.3333333333333333 \end{array} \end{array} \]
(FPCore (x)
 :precision binary64
 (let* ((t_0 (cbrt (/ -1.0 x)))) (* (* t_0 t_0) 0.3333333333333333)))
double code(double x) {
	double t_0 = cbrt((-1.0 / x));
	return (t_0 * t_0) * 0.3333333333333333;
}
public static double code(double x) {
	double t_0 = Math.cbrt((-1.0 / x));
	return (t_0 * t_0) * 0.3333333333333333;
}
function code(x)
	t_0 = cbrt(Float64(-1.0 / x))
	return Float64(Float64(t_0 * t_0) * 0.3333333333333333)
end
code[x_] := Block[{t$95$0 = N[Power[N[(-1.0 / x), $MachinePrecision], 1/3], $MachinePrecision]}, N[(N[(t$95$0 * t$95$0), $MachinePrecision] * 0.3333333333333333), $MachinePrecision]]
\begin{array}{l}

\\
\begin{array}{l}
t_0 := \sqrt[3]{\frac{-1}{x}}\\
\left(t\_0 \cdot t\_0\right) \cdot 0.3333333333333333
\end{array}
\end{array}
Derivation
  1. Initial program 6.8%

    \[\sqrt[3]{x + 1} - \sqrt[3]{x} \]
  2. Taylor expanded in x around inf

    \[\leadsto \color{blue}{\frac{1}{3} \cdot \sqrt[3]{\frac{1}{{x}^{2}}}} \]
  3. Step-by-step derivation
    1. *-commutativeN/A

      \[\leadsto \sqrt[3]{\frac{1}{{x}^{2}}} \cdot \color{blue}{\frac{1}{3}} \]
    2. lower-*.f64N/A

      \[\leadsto \sqrt[3]{\frac{1}{{x}^{2}}} \cdot \color{blue}{\frac{1}{3}} \]
    3. pow1/3N/A

      \[\leadsto {\left(\frac{1}{{x}^{2}}\right)}^{\frac{1}{3}} \cdot \frac{1}{3} \]
    4. pow-flipN/A

      \[\leadsto {\left({x}^{\left(\mathsf{neg}\left(2\right)\right)}\right)}^{\frac{1}{3}} \cdot \frac{1}{3} \]
    5. pow-powN/A

      \[\leadsto {x}^{\left(\left(\mathsf{neg}\left(2\right)\right) \cdot \frac{1}{3}\right)} \cdot \frac{1}{3} \]
    6. metadata-evalN/A

      \[\leadsto {x}^{\left(-2 \cdot \frac{1}{3}\right)} \cdot \frac{1}{3} \]
    7. metadata-evalN/A

      \[\leadsto {x}^{\frac{-2}{3}} \cdot \frac{1}{3} \]
    8. metadata-evalN/A

      \[\leadsto {x}^{\left(\frac{1}{3} \cdot -2\right)} \cdot \frac{1}{3} \]
    9. metadata-evalN/A

      \[\leadsto {x}^{\left(\frac{1}{3} \cdot \left(\mathsf{neg}\left(2\right)\right)\right)} \cdot \frac{1}{3} \]
    10. lower-pow.f64N/A

      \[\leadsto {x}^{\left(\frac{1}{3} \cdot \left(\mathsf{neg}\left(2\right)\right)\right)} \cdot \frac{1}{3} \]
    11. metadata-evalN/A

      \[\leadsto {x}^{\left(\frac{1}{3} \cdot -2\right)} \cdot \frac{1}{3} \]
    12. metadata-eval89.0

      \[\leadsto {x}^{-0.6666666666666666} \cdot 0.3333333333333333 \]
  4. Applied rewrites89.0%

    \[\leadsto \color{blue}{{x}^{-0.6666666666666666} \cdot 0.3333333333333333} \]
  5. Step-by-step derivation
    1. lift-pow.f64N/A

      \[\leadsto {x}^{\frac{-2}{3}} \cdot \frac{1}{3} \]
    2. metadata-evalN/A

      \[\leadsto {x}^{\left(\frac{-1}{3} + \frac{-1}{3}\right)} \cdot \frac{1}{3} \]
    3. pow-prod-upN/A

      \[\leadsto \left({x}^{\frac{-1}{3}} \cdot {x}^{\frac{-1}{3}}\right) \cdot \frac{1}{3} \]
    4. pow-prod-downN/A

      \[\leadsto {\left(x \cdot x\right)}^{\frac{-1}{3}} \cdot \frac{1}{3} \]
    5. pow2N/A

      \[\leadsto {\left({x}^{2}\right)}^{\frac{-1}{3}} \cdot \frac{1}{3} \]
    6. lower-pow.f64N/A

      \[\leadsto {\left({x}^{2}\right)}^{\frac{-1}{3}} \cdot \frac{1}{3} \]
    7. pow2N/A

      \[\leadsto {\left(x \cdot x\right)}^{\frac{-1}{3}} \cdot \frac{1}{3} \]
    8. lift-*.f6446.4

      \[\leadsto {\left(x \cdot x\right)}^{-0.3333333333333333} \cdot 0.3333333333333333 \]
  6. Applied rewrites46.4%

    \[\leadsto {\left(x \cdot x\right)}^{-0.3333333333333333} \cdot 0.3333333333333333 \]
  7. Step-by-step derivation
    1. lift-*.f64N/A

      \[\leadsto {\left(x \cdot x\right)}^{\frac{-1}{3}} \cdot \frac{1}{3} \]
    2. lift-pow.f64N/A

      \[\leadsto {\left(x \cdot x\right)}^{\frac{-1}{3}} \cdot \frac{1}{3} \]
    3. pow2N/A

      \[\leadsto {\left({x}^{2}\right)}^{\frac{-1}{3}} \cdot \frac{1}{3} \]
    4. metadata-evalN/A

      \[\leadsto {\left({x}^{2}\right)}^{\left(-1 \cdot \frac{1}{3}\right)} \cdot \frac{1}{3} \]
    5. pow-powN/A

      \[\leadsto {\left({\left({x}^{2}\right)}^{-1}\right)}^{\frac{1}{3}} \cdot \frac{1}{3} \]
    6. inv-powN/A

      \[\leadsto {\left(\frac{1}{{x}^{2}}\right)}^{\frac{1}{3}} \cdot \frac{1}{3} \]
    7. pow1/3N/A

      \[\leadsto \sqrt[3]{\frac{1}{{x}^{2}}} \cdot \frac{1}{3} \]
    8. metadata-evalN/A

      \[\leadsto \sqrt[3]{\frac{1 \cdot 1}{{x}^{2}}} \cdot \frac{1}{3} \]
    9. pow2N/A

      \[\leadsto \sqrt[3]{\frac{1 \cdot 1}{x \cdot x}} \cdot \frac{1}{3} \]
    10. frac-timesN/A

      \[\leadsto \sqrt[3]{\frac{1}{x} \cdot \frac{1}{x}} \cdot \frac{1}{3} \]
    11. lift-/.f64N/A

      \[\leadsto \sqrt[3]{\frac{1}{x} \cdot \frac{1}{x}} \cdot \frac{1}{3} \]
    12. lift-/.f64N/A

      \[\leadsto \sqrt[3]{\frac{1}{x} \cdot \frac{1}{x}} \cdot \frac{1}{3} \]
    13. sqr-neg-revN/A

      \[\leadsto \sqrt[3]{\left(\mathsf{neg}\left(\frac{1}{x}\right)\right) \cdot \left(\mathsf{neg}\left(\frac{1}{x}\right)\right)} \cdot \frac{1}{3} \]
    14. cbrt-prodN/A

      \[\leadsto \left(\sqrt[3]{\mathsf{neg}\left(\frac{1}{x}\right)} \cdot \sqrt[3]{\mathsf{neg}\left(\frac{1}{x}\right)}\right) \cdot \frac{1}{3} \]
    15. lower-*.f64N/A

      \[\leadsto \left(\sqrt[3]{\mathsf{neg}\left(\frac{1}{x}\right)} \cdot \sqrt[3]{\mathsf{neg}\left(\frac{1}{x}\right)}\right) \cdot \frac{1}{3} \]
    16. lift-/.f64N/A

      \[\leadsto \left(\sqrt[3]{\mathsf{neg}\left(\frac{1}{x}\right)} \cdot \sqrt[3]{\mathsf{neg}\left(\frac{1}{x}\right)}\right) \cdot \frac{1}{3} \]
    17. distribute-neg-fracN/A

      \[\leadsto \left(\sqrt[3]{\frac{\mathsf{neg}\left(1\right)}{x}} \cdot \sqrt[3]{\mathsf{neg}\left(\frac{1}{x}\right)}\right) \cdot \frac{1}{3} \]
    18. metadata-evalN/A

      \[\leadsto \left(\sqrt[3]{\frac{-1}{x}} \cdot \sqrt[3]{\mathsf{neg}\left(\frac{1}{x}\right)}\right) \cdot \frac{1}{3} \]
    19. lower-cbrt.f64N/A

      \[\leadsto \left(\sqrt[3]{\frac{-1}{x}} \cdot \sqrt[3]{\mathsf{neg}\left(\frac{1}{x}\right)}\right) \cdot \frac{1}{3} \]
    20. lower-/.f64N/A

      \[\leadsto \left(\sqrt[3]{\frac{-1}{x}} \cdot \sqrt[3]{\mathsf{neg}\left(\frac{1}{x}\right)}\right) \cdot \frac{1}{3} \]
    21. lift-/.f64N/A

      \[\leadsto \left(\sqrt[3]{\frac{-1}{x}} \cdot \sqrt[3]{\mathsf{neg}\left(\frac{1}{x}\right)}\right) \cdot \frac{1}{3} \]
    22. distribute-neg-fracN/A

      \[\leadsto \left(\sqrt[3]{\frac{-1}{x}} \cdot \sqrt[3]{\frac{\mathsf{neg}\left(1\right)}{x}}\right) \cdot \frac{1}{3} \]
    23. metadata-evalN/A

      \[\leadsto \left(\sqrt[3]{\frac{-1}{x}} \cdot \sqrt[3]{\frac{-1}{x}}\right) \cdot \frac{1}{3} \]
    24. lower-cbrt.f64N/A

      \[\leadsto \left(\sqrt[3]{\frac{-1}{x}} \cdot \sqrt[3]{\frac{-1}{x}}\right) \cdot \frac{1}{3} \]
    25. lower-/.f6496.3

      \[\leadsto \left(\sqrt[3]{\frac{-1}{x}} \cdot \sqrt[3]{\frac{-1}{x}}\right) \cdot 0.3333333333333333 \]
  8. Applied rewrites96.3%

    \[\leadsto \left(\sqrt[3]{\frac{-1}{x}} \cdot \sqrt[3]{\frac{-1}{x}}\right) \cdot 0.3333333333333333 \]
  9. Add Preprocessing

Alternative 5: 92.5% accurate, 0.9× speedup?

\[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;x \leq 1.35 \cdot 10^{+154}:\\ \;\;\;\;\frac{-1}{\sqrt[3]{-x \cdot x}} \cdot 0.3333333333333333\\ \mathbf{else}:\\ \;\;\;\;{\left(e^{\log x}\right)}^{-0.6666666666666666} \cdot 0.3333333333333333\\ \end{array} \end{array} \]
(FPCore (x)
 :precision binary64
 (if (<= x 1.35e+154)
   (* (/ -1.0 (cbrt (- (* x x)))) 0.3333333333333333)
   (* (pow (exp (log x)) -0.6666666666666666) 0.3333333333333333)))
double code(double x) {
	double tmp;
	if (x <= 1.35e+154) {
		tmp = (-1.0 / cbrt(-(x * x))) * 0.3333333333333333;
	} else {
		tmp = pow(exp(log(x)), -0.6666666666666666) * 0.3333333333333333;
	}
	return tmp;
}
public static double code(double x) {
	double tmp;
	if (x <= 1.35e+154) {
		tmp = (-1.0 / Math.cbrt(-(x * x))) * 0.3333333333333333;
	} else {
		tmp = Math.pow(Math.exp(Math.log(x)), -0.6666666666666666) * 0.3333333333333333;
	}
	return tmp;
}
function code(x)
	tmp = 0.0
	if (x <= 1.35e+154)
		tmp = Float64(Float64(-1.0 / cbrt(Float64(-Float64(x * x)))) * 0.3333333333333333);
	else
		tmp = Float64((exp(log(x)) ^ -0.6666666666666666) * 0.3333333333333333);
	end
	return tmp
end
code[x_] := If[LessEqual[x, 1.35e+154], N[(N[(-1.0 / N[Power[(-N[(x * x), $MachinePrecision]), 1/3], $MachinePrecision]), $MachinePrecision] * 0.3333333333333333), $MachinePrecision], N[(N[Power[N[Exp[N[Log[x], $MachinePrecision]], $MachinePrecision], -0.6666666666666666], $MachinePrecision] * 0.3333333333333333), $MachinePrecision]]
\begin{array}{l}

\\
\begin{array}{l}
\mathbf{if}\;x \leq 1.35 \cdot 10^{+154}:\\
\;\;\;\;\frac{-1}{\sqrt[3]{-x \cdot x}} \cdot 0.3333333333333333\\

\mathbf{else}:\\
\;\;\;\;{\left(e^{\log x}\right)}^{-0.6666666666666666} \cdot 0.3333333333333333\\


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if x < 1.35000000000000003e154

    1. Initial program 8.9%

      \[\sqrt[3]{x + 1} - \sqrt[3]{x} \]
    2. Taylor expanded in x around inf

      \[\leadsto \color{blue}{\frac{1}{3} \cdot \sqrt[3]{\frac{1}{{x}^{2}}}} \]
    3. Step-by-step derivation
      1. *-commutativeN/A

        \[\leadsto \sqrt[3]{\frac{1}{{x}^{2}}} \cdot \color{blue}{\frac{1}{3}} \]
      2. lower-*.f64N/A

        \[\leadsto \sqrt[3]{\frac{1}{{x}^{2}}} \cdot \color{blue}{\frac{1}{3}} \]
      3. pow1/3N/A

        \[\leadsto {\left(\frac{1}{{x}^{2}}\right)}^{\frac{1}{3}} \cdot \frac{1}{3} \]
      4. pow-flipN/A

        \[\leadsto {\left({x}^{\left(\mathsf{neg}\left(2\right)\right)}\right)}^{\frac{1}{3}} \cdot \frac{1}{3} \]
      5. pow-powN/A

        \[\leadsto {x}^{\left(\left(\mathsf{neg}\left(2\right)\right) \cdot \frac{1}{3}\right)} \cdot \frac{1}{3} \]
      6. metadata-evalN/A

        \[\leadsto {x}^{\left(-2 \cdot \frac{1}{3}\right)} \cdot \frac{1}{3} \]
      7. metadata-evalN/A

        \[\leadsto {x}^{\frac{-2}{3}} \cdot \frac{1}{3} \]
      8. metadata-evalN/A

        \[\leadsto {x}^{\left(\frac{1}{3} \cdot -2\right)} \cdot \frac{1}{3} \]
      9. metadata-evalN/A

        \[\leadsto {x}^{\left(\frac{1}{3} \cdot \left(\mathsf{neg}\left(2\right)\right)\right)} \cdot \frac{1}{3} \]
      10. lower-pow.f64N/A

        \[\leadsto {x}^{\left(\frac{1}{3} \cdot \left(\mathsf{neg}\left(2\right)\right)\right)} \cdot \frac{1}{3} \]
      11. metadata-evalN/A

        \[\leadsto {x}^{\left(\frac{1}{3} \cdot -2\right)} \cdot \frac{1}{3} \]
      12. metadata-eval88.8

        \[\leadsto {x}^{-0.6666666666666666} \cdot 0.3333333333333333 \]
    4. Applied rewrites88.8%

      \[\leadsto \color{blue}{{x}^{-0.6666666666666666} \cdot 0.3333333333333333} \]
    5. Step-by-step derivation
      1. lift-pow.f64N/A

        \[\leadsto {x}^{\frac{-2}{3}} \cdot \frac{1}{3} \]
      2. metadata-evalN/A

        \[\leadsto {x}^{\left(-2 \cdot \frac{1}{3}\right)} \cdot \frac{1}{3} \]
      3. metadata-evalN/A

        \[\leadsto {x}^{\left(\left(\mathsf{neg}\left(2\right)\right) \cdot \frac{1}{3}\right)} \cdot \frac{1}{3} \]
      4. pow-powN/A

        \[\leadsto {\left({x}^{\left(\mathsf{neg}\left(2\right)\right)}\right)}^{\frac{1}{3}} \cdot \frac{1}{3} \]
      5. pow-flipN/A

        \[\leadsto {\left(\frac{1}{{x}^{2}}\right)}^{\frac{1}{3}} \cdot \frac{1}{3} \]
      6. pow1/3N/A

        \[\leadsto \sqrt[3]{\frac{1}{{x}^{2}}} \cdot \frac{1}{3} \]
      7. frac-2negN/A

        \[\leadsto \sqrt[3]{\frac{\mathsf{neg}\left(1\right)}{\mathsf{neg}\left({x}^{2}\right)}} \cdot \frac{1}{3} \]
      8. metadata-evalN/A

        \[\leadsto \sqrt[3]{\frac{-1}{\mathsf{neg}\left({x}^{2}\right)}} \cdot \frac{1}{3} \]
      9. cbrt-divN/A

        \[\leadsto \frac{\sqrt[3]{-1}}{\sqrt[3]{\mathsf{neg}\left({x}^{2}\right)}} \cdot \frac{1}{3} \]
      10. metadata-evalN/A

        \[\leadsto \frac{\sqrt[3]{{-1}^{3}}}{\sqrt[3]{\mathsf{neg}\left({x}^{2}\right)}} \cdot \frac{1}{3} \]
      11. rem-cbrt-cubeN/A

        \[\leadsto \frac{-1}{\sqrt[3]{\mathsf{neg}\left({x}^{2}\right)}} \cdot \frac{1}{3} \]
      12. lower-/.f64N/A

        \[\leadsto \frac{-1}{\sqrt[3]{\mathsf{neg}\left({x}^{2}\right)}} \cdot \frac{1}{3} \]
      13. lower-cbrt.f64N/A

        \[\leadsto \frac{-1}{\sqrt[3]{\mathsf{neg}\left({x}^{2}\right)}} \cdot \frac{1}{3} \]
      14. lower-neg.f64N/A

        \[\leadsto \frac{-1}{\sqrt[3]{-{x}^{2}}} \cdot \frac{1}{3} \]
      15. pow2N/A

        \[\leadsto \frac{-1}{\sqrt[3]{-x \cdot x}} \cdot \frac{1}{3} \]
      16. lift-*.f6495.3

        \[\leadsto \frac{-1}{\sqrt[3]{-x \cdot x}} \cdot 0.3333333333333333 \]
    6. Applied rewrites95.3%

      \[\leadsto \frac{-1}{\sqrt[3]{-x \cdot x}} \cdot 0.3333333333333333 \]

    if 1.35000000000000003e154 < x

    1. Initial program 4.7%

      \[\sqrt[3]{x + 1} - \sqrt[3]{x} \]
    2. Taylor expanded in x around inf

      \[\leadsto \color{blue}{\frac{1}{3} \cdot \sqrt[3]{\frac{1}{{x}^{2}}}} \]
    3. Step-by-step derivation
      1. *-commutativeN/A

        \[\leadsto \sqrt[3]{\frac{1}{{x}^{2}}} \cdot \color{blue}{\frac{1}{3}} \]
      2. lower-*.f64N/A

        \[\leadsto \sqrt[3]{\frac{1}{{x}^{2}}} \cdot \color{blue}{\frac{1}{3}} \]
      3. pow1/3N/A

        \[\leadsto {\left(\frac{1}{{x}^{2}}\right)}^{\frac{1}{3}} \cdot \frac{1}{3} \]
      4. pow-flipN/A

        \[\leadsto {\left({x}^{\left(\mathsf{neg}\left(2\right)\right)}\right)}^{\frac{1}{3}} \cdot \frac{1}{3} \]
      5. pow-powN/A

        \[\leadsto {x}^{\left(\left(\mathsf{neg}\left(2\right)\right) \cdot \frac{1}{3}\right)} \cdot \frac{1}{3} \]
      6. metadata-evalN/A

        \[\leadsto {x}^{\left(-2 \cdot \frac{1}{3}\right)} \cdot \frac{1}{3} \]
      7. metadata-evalN/A

        \[\leadsto {x}^{\frac{-2}{3}} \cdot \frac{1}{3} \]
      8. metadata-evalN/A

        \[\leadsto {x}^{\left(\frac{1}{3} \cdot -2\right)} \cdot \frac{1}{3} \]
      9. metadata-evalN/A

        \[\leadsto {x}^{\left(\frac{1}{3} \cdot \left(\mathsf{neg}\left(2\right)\right)\right)} \cdot \frac{1}{3} \]
      10. lower-pow.f64N/A

        \[\leadsto {x}^{\left(\frac{1}{3} \cdot \left(\mathsf{neg}\left(2\right)\right)\right)} \cdot \frac{1}{3} \]
      11. metadata-evalN/A

        \[\leadsto {x}^{\left(\frac{1}{3} \cdot -2\right)} \cdot \frac{1}{3} \]
      12. metadata-eval89.1

        \[\leadsto {x}^{-0.6666666666666666} \cdot 0.3333333333333333 \]
    4. Applied rewrites89.1%

      \[\leadsto \color{blue}{{x}^{-0.6666666666666666} \cdot 0.3333333333333333} \]
    5. Step-by-step derivation
      1. lift-pow.f64N/A

        \[\leadsto {x}^{\frac{-2}{3}} \cdot \frac{1}{3} \]
      2. metadata-evalN/A

        \[\leadsto {x}^{\left(\frac{-1}{3} + \frac{-1}{3}\right)} \cdot \frac{1}{3} \]
      3. pow-prod-upN/A

        \[\leadsto \left({x}^{\frac{-1}{3}} \cdot {x}^{\frac{-1}{3}}\right) \cdot \frac{1}{3} \]
      4. pow-prod-downN/A

        \[\leadsto {\left(x \cdot x\right)}^{\frac{-1}{3}} \cdot \frac{1}{3} \]
      5. pow2N/A

        \[\leadsto {\left({x}^{2}\right)}^{\frac{-1}{3}} \cdot \frac{1}{3} \]
      6. lower-pow.f64N/A

        \[\leadsto {\left({x}^{2}\right)}^{\frac{-1}{3}} \cdot \frac{1}{3} \]
      7. pow2N/A

        \[\leadsto {\left(x \cdot x\right)}^{\frac{-1}{3}} \cdot \frac{1}{3} \]
      8. lift-*.f644.7

        \[\leadsto {\left(x \cdot x\right)}^{-0.3333333333333333} \cdot 0.3333333333333333 \]
    6. Applied rewrites4.7%

      \[\leadsto {\left(x \cdot x\right)}^{-0.3333333333333333} \cdot 0.3333333333333333 \]
    7. Step-by-step derivation
      1. lift-*.f64N/A

        \[\leadsto {\left(x \cdot x\right)}^{\frac{-1}{3}} \cdot \frac{1}{3} \]
      2. lift-pow.f64N/A

        \[\leadsto {\left(x \cdot x\right)}^{\frac{-1}{3}} \cdot \frac{1}{3} \]
      3. unpow-prod-downN/A

        \[\leadsto \left({x}^{\frac{-1}{3}} \cdot {x}^{\frac{-1}{3}}\right) \cdot \frac{1}{3} \]
      4. pow-prod-upN/A

        \[\leadsto {x}^{\left(\frac{-1}{3} + \frac{-1}{3}\right)} \cdot \frac{1}{3} \]
      5. metadata-evalN/A

        \[\leadsto {x}^{\frac{-2}{3}} \cdot \frac{1}{3} \]
      6. pow-to-expN/A

        \[\leadsto e^{\log x \cdot \frac{-2}{3}} \cdot \frac{1}{3} \]
      7. exp-prodN/A

        \[\leadsto {\left(e^{\log x}\right)}^{\frac{-2}{3}} \cdot \frac{1}{3} \]
      8. lower-pow.f64N/A

        \[\leadsto {\left(e^{\log x}\right)}^{\frac{-2}{3}} \cdot \frac{1}{3} \]
      9. lower-exp.f64N/A

        \[\leadsto {\left(e^{\log x}\right)}^{\frac{-2}{3}} \cdot \frac{1}{3} \]
      10. lower-log.f6489.8

        \[\leadsto {\left(e^{\log x}\right)}^{-0.6666666666666666} \cdot 0.3333333333333333 \]
    8. Applied rewrites89.8%

      \[\leadsto {\left(e^{\log x}\right)}^{-0.6666666666666666} \cdot 0.3333333333333333 \]
  3. Recombined 2 regimes into one program.
  4. Add Preprocessing

Alternative 6: 92.4% accurate, 1.2× speedup?

\[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;x \leq 1.35 \cdot 10^{+154}:\\ \;\;\;\;\frac{-1}{\sqrt[3]{-x \cdot x}} \cdot 0.3333333333333333\\ \mathbf{else}:\\ \;\;\;\;e^{\log x \cdot -0.6666666666666666} \cdot 0.3333333333333333\\ \end{array} \end{array} \]
(FPCore (x)
 :precision binary64
 (if (<= x 1.35e+154)
   (* (/ -1.0 (cbrt (- (* x x)))) 0.3333333333333333)
   (* (exp (* (log x) -0.6666666666666666)) 0.3333333333333333)))
double code(double x) {
	double tmp;
	if (x <= 1.35e+154) {
		tmp = (-1.0 / cbrt(-(x * x))) * 0.3333333333333333;
	} else {
		tmp = exp((log(x) * -0.6666666666666666)) * 0.3333333333333333;
	}
	return tmp;
}
public static double code(double x) {
	double tmp;
	if (x <= 1.35e+154) {
		tmp = (-1.0 / Math.cbrt(-(x * x))) * 0.3333333333333333;
	} else {
		tmp = Math.exp((Math.log(x) * -0.6666666666666666)) * 0.3333333333333333;
	}
	return tmp;
}
function code(x)
	tmp = 0.0
	if (x <= 1.35e+154)
		tmp = Float64(Float64(-1.0 / cbrt(Float64(-Float64(x * x)))) * 0.3333333333333333);
	else
		tmp = Float64(exp(Float64(log(x) * -0.6666666666666666)) * 0.3333333333333333);
	end
	return tmp
end
code[x_] := If[LessEqual[x, 1.35e+154], N[(N[(-1.0 / N[Power[(-N[(x * x), $MachinePrecision]), 1/3], $MachinePrecision]), $MachinePrecision] * 0.3333333333333333), $MachinePrecision], N[(N[Exp[N[(N[Log[x], $MachinePrecision] * -0.6666666666666666), $MachinePrecision]], $MachinePrecision] * 0.3333333333333333), $MachinePrecision]]
\begin{array}{l}

\\
\begin{array}{l}
\mathbf{if}\;x \leq 1.35 \cdot 10^{+154}:\\
\;\;\;\;\frac{-1}{\sqrt[3]{-x \cdot x}} \cdot 0.3333333333333333\\

\mathbf{else}:\\
\;\;\;\;e^{\log x \cdot -0.6666666666666666} \cdot 0.3333333333333333\\


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if x < 1.35000000000000003e154

    1. Initial program 8.9%

      \[\sqrt[3]{x + 1} - \sqrt[3]{x} \]
    2. Taylor expanded in x around inf

      \[\leadsto \color{blue}{\frac{1}{3} \cdot \sqrt[3]{\frac{1}{{x}^{2}}}} \]
    3. Step-by-step derivation
      1. *-commutativeN/A

        \[\leadsto \sqrt[3]{\frac{1}{{x}^{2}}} \cdot \color{blue}{\frac{1}{3}} \]
      2. lower-*.f64N/A

        \[\leadsto \sqrt[3]{\frac{1}{{x}^{2}}} \cdot \color{blue}{\frac{1}{3}} \]
      3. pow1/3N/A

        \[\leadsto {\left(\frac{1}{{x}^{2}}\right)}^{\frac{1}{3}} \cdot \frac{1}{3} \]
      4. pow-flipN/A

        \[\leadsto {\left({x}^{\left(\mathsf{neg}\left(2\right)\right)}\right)}^{\frac{1}{3}} \cdot \frac{1}{3} \]
      5. pow-powN/A

        \[\leadsto {x}^{\left(\left(\mathsf{neg}\left(2\right)\right) \cdot \frac{1}{3}\right)} \cdot \frac{1}{3} \]
      6. metadata-evalN/A

        \[\leadsto {x}^{\left(-2 \cdot \frac{1}{3}\right)} \cdot \frac{1}{3} \]
      7. metadata-evalN/A

        \[\leadsto {x}^{\frac{-2}{3}} \cdot \frac{1}{3} \]
      8. metadata-evalN/A

        \[\leadsto {x}^{\left(\frac{1}{3} \cdot -2\right)} \cdot \frac{1}{3} \]
      9. metadata-evalN/A

        \[\leadsto {x}^{\left(\frac{1}{3} \cdot \left(\mathsf{neg}\left(2\right)\right)\right)} \cdot \frac{1}{3} \]
      10. lower-pow.f64N/A

        \[\leadsto {x}^{\left(\frac{1}{3} \cdot \left(\mathsf{neg}\left(2\right)\right)\right)} \cdot \frac{1}{3} \]
      11. metadata-evalN/A

        \[\leadsto {x}^{\left(\frac{1}{3} \cdot -2\right)} \cdot \frac{1}{3} \]
      12. metadata-eval88.8

        \[\leadsto {x}^{-0.6666666666666666} \cdot 0.3333333333333333 \]
    4. Applied rewrites88.8%

      \[\leadsto \color{blue}{{x}^{-0.6666666666666666} \cdot 0.3333333333333333} \]
    5. Step-by-step derivation
      1. lift-pow.f64N/A

        \[\leadsto {x}^{\frac{-2}{3}} \cdot \frac{1}{3} \]
      2. metadata-evalN/A

        \[\leadsto {x}^{\left(-2 \cdot \frac{1}{3}\right)} \cdot \frac{1}{3} \]
      3. metadata-evalN/A

        \[\leadsto {x}^{\left(\left(\mathsf{neg}\left(2\right)\right) \cdot \frac{1}{3}\right)} \cdot \frac{1}{3} \]
      4. pow-powN/A

        \[\leadsto {\left({x}^{\left(\mathsf{neg}\left(2\right)\right)}\right)}^{\frac{1}{3}} \cdot \frac{1}{3} \]
      5. pow-flipN/A

        \[\leadsto {\left(\frac{1}{{x}^{2}}\right)}^{\frac{1}{3}} \cdot \frac{1}{3} \]
      6. pow1/3N/A

        \[\leadsto \sqrt[3]{\frac{1}{{x}^{2}}} \cdot \frac{1}{3} \]
      7. frac-2negN/A

        \[\leadsto \sqrt[3]{\frac{\mathsf{neg}\left(1\right)}{\mathsf{neg}\left({x}^{2}\right)}} \cdot \frac{1}{3} \]
      8. metadata-evalN/A

        \[\leadsto \sqrt[3]{\frac{-1}{\mathsf{neg}\left({x}^{2}\right)}} \cdot \frac{1}{3} \]
      9. cbrt-divN/A

        \[\leadsto \frac{\sqrt[3]{-1}}{\sqrt[3]{\mathsf{neg}\left({x}^{2}\right)}} \cdot \frac{1}{3} \]
      10. metadata-evalN/A

        \[\leadsto \frac{\sqrt[3]{{-1}^{3}}}{\sqrt[3]{\mathsf{neg}\left({x}^{2}\right)}} \cdot \frac{1}{3} \]
      11. rem-cbrt-cubeN/A

        \[\leadsto \frac{-1}{\sqrt[3]{\mathsf{neg}\left({x}^{2}\right)}} \cdot \frac{1}{3} \]
      12. lower-/.f64N/A

        \[\leadsto \frac{-1}{\sqrt[3]{\mathsf{neg}\left({x}^{2}\right)}} \cdot \frac{1}{3} \]
      13. lower-cbrt.f64N/A

        \[\leadsto \frac{-1}{\sqrt[3]{\mathsf{neg}\left({x}^{2}\right)}} \cdot \frac{1}{3} \]
      14. lower-neg.f64N/A

        \[\leadsto \frac{-1}{\sqrt[3]{-{x}^{2}}} \cdot \frac{1}{3} \]
      15. pow2N/A

        \[\leadsto \frac{-1}{\sqrt[3]{-x \cdot x}} \cdot \frac{1}{3} \]
      16. lift-*.f6495.3

        \[\leadsto \frac{-1}{\sqrt[3]{-x \cdot x}} \cdot 0.3333333333333333 \]
    6. Applied rewrites95.3%

      \[\leadsto \frac{-1}{\sqrt[3]{-x \cdot x}} \cdot 0.3333333333333333 \]

    if 1.35000000000000003e154 < x

    1. Initial program 4.7%

      \[\sqrt[3]{x + 1} - \sqrt[3]{x} \]
    2. Taylor expanded in x around inf

      \[\leadsto \color{blue}{\frac{1}{3} \cdot \sqrt[3]{\frac{1}{{x}^{2}}}} \]
    3. Step-by-step derivation
      1. *-commutativeN/A

        \[\leadsto \sqrt[3]{\frac{1}{{x}^{2}}} \cdot \color{blue}{\frac{1}{3}} \]
      2. lower-*.f64N/A

        \[\leadsto \sqrt[3]{\frac{1}{{x}^{2}}} \cdot \color{blue}{\frac{1}{3}} \]
      3. pow1/3N/A

        \[\leadsto {\left(\frac{1}{{x}^{2}}\right)}^{\frac{1}{3}} \cdot \frac{1}{3} \]
      4. pow-flipN/A

        \[\leadsto {\left({x}^{\left(\mathsf{neg}\left(2\right)\right)}\right)}^{\frac{1}{3}} \cdot \frac{1}{3} \]
      5. pow-powN/A

        \[\leadsto {x}^{\left(\left(\mathsf{neg}\left(2\right)\right) \cdot \frac{1}{3}\right)} \cdot \frac{1}{3} \]
      6. metadata-evalN/A

        \[\leadsto {x}^{\left(-2 \cdot \frac{1}{3}\right)} \cdot \frac{1}{3} \]
      7. metadata-evalN/A

        \[\leadsto {x}^{\frac{-2}{3}} \cdot \frac{1}{3} \]
      8. metadata-evalN/A

        \[\leadsto {x}^{\left(\frac{1}{3} \cdot -2\right)} \cdot \frac{1}{3} \]
      9. metadata-evalN/A

        \[\leadsto {x}^{\left(\frac{1}{3} \cdot \left(\mathsf{neg}\left(2\right)\right)\right)} \cdot \frac{1}{3} \]
      10. lower-pow.f64N/A

        \[\leadsto {x}^{\left(\frac{1}{3} \cdot \left(\mathsf{neg}\left(2\right)\right)\right)} \cdot \frac{1}{3} \]
      11. metadata-evalN/A

        \[\leadsto {x}^{\left(\frac{1}{3} \cdot -2\right)} \cdot \frac{1}{3} \]
      12. metadata-eval89.1

        \[\leadsto {x}^{-0.6666666666666666} \cdot 0.3333333333333333 \]
    4. Applied rewrites89.1%

      \[\leadsto \color{blue}{{x}^{-0.6666666666666666} \cdot 0.3333333333333333} \]
    5. Step-by-step derivation
      1. lift-pow.f64N/A

        \[\leadsto {x}^{\frac{-2}{3}} \cdot \frac{1}{3} \]
      2. pow-to-expN/A

        \[\leadsto e^{\log x \cdot \frac{-2}{3}} \cdot \frac{1}{3} \]
      3. lower-exp.f64N/A

        \[\leadsto e^{\log x \cdot \frac{-2}{3}} \cdot \frac{1}{3} \]
      4. lower-*.f64N/A

        \[\leadsto e^{\log x \cdot \frac{-2}{3}} \cdot \frac{1}{3} \]
      5. lower-log.f6489.5

        \[\leadsto e^{\log x \cdot -0.6666666666666666} \cdot 0.3333333333333333 \]
    6. Applied rewrites89.5%

      \[\leadsto e^{\log x \cdot -0.6666666666666666} \cdot 0.3333333333333333 \]
  3. Recombined 2 regimes into one program.
  4. Add Preprocessing

Alternative 7: 92.3% accurate, 1.2× speedup?

\[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;x \leq 3.35 \cdot 10^{+155}:\\ \;\;\;\;\sqrt[3]{\frac{\frac{1}{x}}{x}} \cdot 0.3333333333333333\\ \mathbf{else}:\\ \;\;\;\;e^{\log x \cdot -0.6666666666666666} \cdot 0.3333333333333333\\ \end{array} \end{array} \]
(FPCore (x)
 :precision binary64
 (if (<= x 3.35e+155)
   (* (cbrt (/ (/ 1.0 x) x)) 0.3333333333333333)
   (* (exp (* (log x) -0.6666666666666666)) 0.3333333333333333)))
double code(double x) {
	double tmp;
	if (x <= 3.35e+155) {
		tmp = cbrt(((1.0 / x) / x)) * 0.3333333333333333;
	} else {
		tmp = exp((log(x) * -0.6666666666666666)) * 0.3333333333333333;
	}
	return tmp;
}
public static double code(double x) {
	double tmp;
	if (x <= 3.35e+155) {
		tmp = Math.cbrt(((1.0 / x) / x)) * 0.3333333333333333;
	} else {
		tmp = Math.exp((Math.log(x) * -0.6666666666666666)) * 0.3333333333333333;
	}
	return tmp;
}
function code(x)
	tmp = 0.0
	if (x <= 3.35e+155)
		tmp = Float64(cbrt(Float64(Float64(1.0 / x) / x)) * 0.3333333333333333);
	else
		tmp = Float64(exp(Float64(log(x) * -0.6666666666666666)) * 0.3333333333333333);
	end
	return tmp
end
code[x_] := If[LessEqual[x, 3.35e+155], N[(N[Power[N[(N[(1.0 / x), $MachinePrecision] / x), $MachinePrecision], 1/3], $MachinePrecision] * 0.3333333333333333), $MachinePrecision], N[(N[Exp[N[(N[Log[x], $MachinePrecision] * -0.6666666666666666), $MachinePrecision]], $MachinePrecision] * 0.3333333333333333), $MachinePrecision]]
\begin{array}{l}

\\
\begin{array}{l}
\mathbf{if}\;x \leq 3.35 \cdot 10^{+155}:\\
\;\;\;\;\sqrt[3]{\frac{\frac{1}{x}}{x}} \cdot 0.3333333333333333\\

\mathbf{else}:\\
\;\;\;\;e^{\log x \cdot -0.6666666666666666} \cdot 0.3333333333333333\\


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if x < 3.35e155

    1. Initial program 8.8%

      \[\sqrt[3]{x + 1} - \sqrt[3]{x} \]
    2. Taylor expanded in x around inf

      \[\leadsto \color{blue}{\frac{1}{3} \cdot \sqrt[3]{\frac{1}{{x}^{2}}}} \]
    3. Step-by-step derivation
      1. *-commutativeN/A

        \[\leadsto \sqrt[3]{\frac{1}{{x}^{2}}} \cdot \color{blue}{\frac{1}{3}} \]
      2. lower-*.f64N/A

        \[\leadsto \sqrt[3]{\frac{1}{{x}^{2}}} \cdot \color{blue}{\frac{1}{3}} \]
      3. pow1/3N/A

        \[\leadsto {\left(\frac{1}{{x}^{2}}\right)}^{\frac{1}{3}} \cdot \frac{1}{3} \]
      4. pow-flipN/A

        \[\leadsto {\left({x}^{\left(\mathsf{neg}\left(2\right)\right)}\right)}^{\frac{1}{3}} \cdot \frac{1}{3} \]
      5. pow-powN/A

        \[\leadsto {x}^{\left(\left(\mathsf{neg}\left(2\right)\right) \cdot \frac{1}{3}\right)} \cdot \frac{1}{3} \]
      6. metadata-evalN/A

        \[\leadsto {x}^{\left(-2 \cdot \frac{1}{3}\right)} \cdot \frac{1}{3} \]
      7. metadata-evalN/A

        \[\leadsto {x}^{\frac{-2}{3}} \cdot \frac{1}{3} \]
      8. metadata-evalN/A

        \[\leadsto {x}^{\left(\frac{1}{3} \cdot -2\right)} \cdot \frac{1}{3} \]
      9. metadata-evalN/A

        \[\leadsto {x}^{\left(\frac{1}{3} \cdot \left(\mathsf{neg}\left(2\right)\right)\right)} \cdot \frac{1}{3} \]
      10. lower-pow.f64N/A

        \[\leadsto {x}^{\left(\frac{1}{3} \cdot \left(\mathsf{neg}\left(2\right)\right)\right)} \cdot \frac{1}{3} \]
      11. metadata-evalN/A

        \[\leadsto {x}^{\left(\frac{1}{3} \cdot -2\right)} \cdot \frac{1}{3} \]
      12. metadata-eval88.8

        \[\leadsto {x}^{-0.6666666666666666} \cdot 0.3333333333333333 \]
    4. Applied rewrites88.8%

      \[\leadsto \color{blue}{{x}^{-0.6666666666666666} \cdot 0.3333333333333333} \]
    5. Step-by-step derivation
      1. lift-pow.f64N/A

        \[\leadsto {x}^{\frac{-2}{3}} \cdot \frac{1}{3} \]
      2. metadata-evalN/A

        \[\leadsto {x}^{\left(-2 \cdot \frac{1}{3}\right)} \cdot \frac{1}{3} \]
      3. metadata-evalN/A

        \[\leadsto {x}^{\left(\left(\mathsf{neg}\left(2\right)\right) \cdot \frac{1}{3}\right)} \cdot \frac{1}{3} \]
      4. pow-powN/A

        \[\leadsto {\left({x}^{\left(\mathsf{neg}\left(2\right)\right)}\right)}^{\frac{1}{3}} \cdot \frac{1}{3} \]
      5. pow-flipN/A

        \[\leadsto {\left(\frac{1}{{x}^{2}}\right)}^{\frac{1}{3}} \cdot \frac{1}{3} \]
      6. metadata-evalN/A

        \[\leadsto {\left(\frac{1 \cdot 1}{{x}^{2}}\right)}^{\frac{1}{3}} \cdot \frac{1}{3} \]
      7. pow2N/A

        \[\leadsto {\left(\frac{1 \cdot 1}{x \cdot x}\right)}^{\frac{1}{3}} \cdot \frac{1}{3} \]
      8. frac-timesN/A

        \[\leadsto {\left(\frac{1}{x} \cdot \frac{1}{x}\right)}^{\frac{1}{3}} \cdot \frac{1}{3} \]
      9. pow1/3N/A

        \[\leadsto \sqrt[3]{\frac{1}{x} \cdot \frac{1}{x}} \cdot \frac{1}{3} \]
      10. lower-cbrt.f64N/A

        \[\leadsto \sqrt[3]{\frac{1}{x} \cdot \frac{1}{x}} \cdot \frac{1}{3} \]
      11. frac-timesN/A

        \[\leadsto \sqrt[3]{\frac{1 \cdot 1}{x \cdot x}} \cdot \frac{1}{3} \]
      12. metadata-evalN/A

        \[\leadsto \sqrt[3]{\frac{1}{x \cdot x}} \cdot \frac{1}{3} \]
      13. pow2N/A

        \[\leadsto \sqrt[3]{\frac{1}{{x}^{2}}} \cdot \frac{1}{3} \]
      14. lower-/.f64N/A

        \[\leadsto \sqrt[3]{\frac{1}{{x}^{2}}} \cdot \frac{1}{3} \]
      15. pow2N/A

        \[\leadsto \sqrt[3]{\frac{1}{x \cdot x}} \cdot \frac{1}{3} \]
      16. lift-*.f6494.3

        \[\leadsto \sqrt[3]{\frac{1}{x \cdot x}} \cdot 0.3333333333333333 \]
    6. Applied rewrites94.3%

      \[\leadsto \sqrt[3]{\frac{1}{x \cdot x}} \cdot 0.3333333333333333 \]
    7. Step-by-step derivation
      1. lift-*.f64N/A

        \[\leadsto \sqrt[3]{\frac{1}{x \cdot x}} \cdot \frac{1}{3} \]
      2. lift-/.f64N/A

        \[\leadsto \sqrt[3]{\frac{1}{x \cdot x}} \cdot \frac{1}{3} \]
      3. associate-/r*N/A

        \[\leadsto \sqrt[3]{\frac{\frac{1}{x}}{x}} \cdot \frac{1}{3} \]
      4. lower-/.f64N/A

        \[\leadsto \sqrt[3]{\frac{\frac{1}{x}}{x}} \cdot \frac{1}{3} \]
      5. lower-/.f6495.1

        \[\leadsto \sqrt[3]{\frac{\frac{1}{x}}{x}} \cdot 0.3333333333333333 \]
    8. Applied rewrites95.1%

      \[\leadsto \sqrt[3]{\frac{\frac{1}{x}}{x}} \cdot 0.3333333333333333 \]

    if 3.35e155 < x

    1. Initial program 4.7%

      \[\sqrt[3]{x + 1} - \sqrt[3]{x} \]
    2. Taylor expanded in x around inf

      \[\leadsto \color{blue}{\frac{1}{3} \cdot \sqrt[3]{\frac{1}{{x}^{2}}}} \]
    3. Step-by-step derivation
      1. *-commutativeN/A

        \[\leadsto \sqrt[3]{\frac{1}{{x}^{2}}} \cdot \color{blue}{\frac{1}{3}} \]
      2. lower-*.f64N/A

        \[\leadsto \sqrt[3]{\frac{1}{{x}^{2}}} \cdot \color{blue}{\frac{1}{3}} \]
      3. pow1/3N/A

        \[\leadsto {\left(\frac{1}{{x}^{2}}\right)}^{\frac{1}{3}} \cdot \frac{1}{3} \]
      4. pow-flipN/A

        \[\leadsto {\left({x}^{\left(\mathsf{neg}\left(2\right)\right)}\right)}^{\frac{1}{3}} \cdot \frac{1}{3} \]
      5. pow-powN/A

        \[\leadsto {x}^{\left(\left(\mathsf{neg}\left(2\right)\right) \cdot \frac{1}{3}\right)} \cdot \frac{1}{3} \]
      6. metadata-evalN/A

        \[\leadsto {x}^{\left(-2 \cdot \frac{1}{3}\right)} \cdot \frac{1}{3} \]
      7. metadata-evalN/A

        \[\leadsto {x}^{\frac{-2}{3}} \cdot \frac{1}{3} \]
      8. metadata-evalN/A

        \[\leadsto {x}^{\left(\frac{1}{3} \cdot -2\right)} \cdot \frac{1}{3} \]
      9. metadata-evalN/A

        \[\leadsto {x}^{\left(\frac{1}{3} \cdot \left(\mathsf{neg}\left(2\right)\right)\right)} \cdot \frac{1}{3} \]
      10. lower-pow.f64N/A

        \[\leadsto {x}^{\left(\frac{1}{3} \cdot \left(\mathsf{neg}\left(2\right)\right)\right)} \cdot \frac{1}{3} \]
      11. metadata-evalN/A

        \[\leadsto {x}^{\left(\frac{1}{3} \cdot -2\right)} \cdot \frac{1}{3} \]
      12. metadata-eval89.1

        \[\leadsto {x}^{-0.6666666666666666} \cdot 0.3333333333333333 \]
    4. Applied rewrites89.1%

      \[\leadsto \color{blue}{{x}^{-0.6666666666666666} \cdot 0.3333333333333333} \]
    5. Step-by-step derivation
      1. lift-pow.f64N/A

        \[\leadsto {x}^{\frac{-2}{3}} \cdot \frac{1}{3} \]
      2. pow-to-expN/A

        \[\leadsto e^{\log x \cdot \frac{-2}{3}} \cdot \frac{1}{3} \]
      3. lower-exp.f64N/A

        \[\leadsto e^{\log x \cdot \frac{-2}{3}} \cdot \frac{1}{3} \]
      4. lower-*.f64N/A

        \[\leadsto e^{\log x \cdot \frac{-2}{3}} \cdot \frac{1}{3} \]
      5. lower-log.f6489.4

        \[\leadsto e^{\log x \cdot -0.6666666666666666} \cdot 0.3333333333333333 \]
    6. Applied rewrites89.4%

      \[\leadsto e^{\log x \cdot -0.6666666666666666} \cdot 0.3333333333333333 \]
  3. Recombined 2 regimes into one program.
  4. Add Preprocessing

Alternative 8: 92.3% accurate, 1.3× speedup?

\[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;x \leq 1.35 \cdot 10^{+154}:\\ \;\;\;\;\sqrt[3]{\frac{1}{x \cdot x}} \cdot 0.3333333333333333\\ \mathbf{else}:\\ \;\;\;\;e^{\log x \cdot -0.6666666666666666} \cdot 0.3333333333333333\\ \end{array} \end{array} \]
(FPCore (x)
 :precision binary64
 (if (<= x 1.35e+154)
   (* (cbrt (/ 1.0 (* x x))) 0.3333333333333333)
   (* (exp (* (log x) -0.6666666666666666)) 0.3333333333333333)))
double code(double x) {
	double tmp;
	if (x <= 1.35e+154) {
		tmp = cbrt((1.0 / (x * x))) * 0.3333333333333333;
	} else {
		tmp = exp((log(x) * -0.6666666666666666)) * 0.3333333333333333;
	}
	return tmp;
}
public static double code(double x) {
	double tmp;
	if (x <= 1.35e+154) {
		tmp = Math.cbrt((1.0 / (x * x))) * 0.3333333333333333;
	} else {
		tmp = Math.exp((Math.log(x) * -0.6666666666666666)) * 0.3333333333333333;
	}
	return tmp;
}
function code(x)
	tmp = 0.0
	if (x <= 1.35e+154)
		tmp = Float64(cbrt(Float64(1.0 / Float64(x * x))) * 0.3333333333333333);
	else
		tmp = Float64(exp(Float64(log(x) * -0.6666666666666666)) * 0.3333333333333333);
	end
	return tmp
end
code[x_] := If[LessEqual[x, 1.35e+154], N[(N[Power[N[(1.0 / N[(x * x), $MachinePrecision]), $MachinePrecision], 1/3], $MachinePrecision] * 0.3333333333333333), $MachinePrecision], N[(N[Exp[N[(N[Log[x], $MachinePrecision] * -0.6666666666666666), $MachinePrecision]], $MachinePrecision] * 0.3333333333333333), $MachinePrecision]]
\begin{array}{l}

\\
\begin{array}{l}
\mathbf{if}\;x \leq 1.35 \cdot 10^{+154}:\\
\;\;\;\;\sqrt[3]{\frac{1}{x \cdot x}} \cdot 0.3333333333333333\\

\mathbf{else}:\\
\;\;\;\;e^{\log x \cdot -0.6666666666666666} \cdot 0.3333333333333333\\


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if x < 1.35000000000000003e154

    1. Initial program 8.9%

      \[\sqrt[3]{x + 1} - \sqrt[3]{x} \]
    2. Taylor expanded in x around inf

      \[\leadsto \color{blue}{\frac{1}{3} \cdot \sqrt[3]{\frac{1}{{x}^{2}}}} \]
    3. Step-by-step derivation
      1. *-commutativeN/A

        \[\leadsto \sqrt[3]{\frac{1}{{x}^{2}}} \cdot \color{blue}{\frac{1}{3}} \]
      2. lower-*.f64N/A

        \[\leadsto \sqrt[3]{\frac{1}{{x}^{2}}} \cdot \color{blue}{\frac{1}{3}} \]
      3. pow1/3N/A

        \[\leadsto {\left(\frac{1}{{x}^{2}}\right)}^{\frac{1}{3}} \cdot \frac{1}{3} \]
      4. pow-flipN/A

        \[\leadsto {\left({x}^{\left(\mathsf{neg}\left(2\right)\right)}\right)}^{\frac{1}{3}} \cdot \frac{1}{3} \]
      5. pow-powN/A

        \[\leadsto {x}^{\left(\left(\mathsf{neg}\left(2\right)\right) \cdot \frac{1}{3}\right)} \cdot \frac{1}{3} \]
      6. metadata-evalN/A

        \[\leadsto {x}^{\left(-2 \cdot \frac{1}{3}\right)} \cdot \frac{1}{3} \]
      7. metadata-evalN/A

        \[\leadsto {x}^{\frac{-2}{3}} \cdot \frac{1}{3} \]
      8. metadata-evalN/A

        \[\leadsto {x}^{\left(\frac{1}{3} \cdot -2\right)} \cdot \frac{1}{3} \]
      9. metadata-evalN/A

        \[\leadsto {x}^{\left(\frac{1}{3} \cdot \left(\mathsf{neg}\left(2\right)\right)\right)} \cdot \frac{1}{3} \]
      10. lower-pow.f64N/A

        \[\leadsto {x}^{\left(\frac{1}{3} \cdot \left(\mathsf{neg}\left(2\right)\right)\right)} \cdot \frac{1}{3} \]
      11. metadata-evalN/A

        \[\leadsto {x}^{\left(\frac{1}{3} \cdot -2\right)} \cdot \frac{1}{3} \]
      12. metadata-eval88.8

        \[\leadsto {x}^{-0.6666666666666666} \cdot 0.3333333333333333 \]
    4. Applied rewrites88.8%

      \[\leadsto \color{blue}{{x}^{-0.6666666666666666} \cdot 0.3333333333333333} \]
    5. Step-by-step derivation
      1. lift-pow.f64N/A

        \[\leadsto {x}^{\frac{-2}{3}} \cdot \frac{1}{3} \]
      2. metadata-evalN/A

        \[\leadsto {x}^{\left(-2 \cdot \frac{1}{3}\right)} \cdot \frac{1}{3} \]
      3. metadata-evalN/A

        \[\leadsto {x}^{\left(\left(\mathsf{neg}\left(2\right)\right) \cdot \frac{1}{3}\right)} \cdot \frac{1}{3} \]
      4. pow-powN/A

        \[\leadsto {\left({x}^{\left(\mathsf{neg}\left(2\right)\right)}\right)}^{\frac{1}{3}} \cdot \frac{1}{3} \]
      5. pow-flipN/A

        \[\leadsto {\left(\frac{1}{{x}^{2}}\right)}^{\frac{1}{3}} \cdot \frac{1}{3} \]
      6. metadata-evalN/A

        \[\leadsto {\left(\frac{1 \cdot 1}{{x}^{2}}\right)}^{\frac{1}{3}} \cdot \frac{1}{3} \]
      7. pow2N/A

        \[\leadsto {\left(\frac{1 \cdot 1}{x \cdot x}\right)}^{\frac{1}{3}} \cdot \frac{1}{3} \]
      8. frac-timesN/A

        \[\leadsto {\left(\frac{1}{x} \cdot \frac{1}{x}\right)}^{\frac{1}{3}} \cdot \frac{1}{3} \]
      9. pow1/3N/A

        \[\leadsto \sqrt[3]{\frac{1}{x} \cdot \frac{1}{x}} \cdot \frac{1}{3} \]
      10. lower-cbrt.f64N/A

        \[\leadsto \sqrt[3]{\frac{1}{x} \cdot \frac{1}{x}} \cdot \frac{1}{3} \]
      11. frac-timesN/A

        \[\leadsto \sqrt[3]{\frac{1 \cdot 1}{x \cdot x}} \cdot \frac{1}{3} \]
      12. metadata-evalN/A

        \[\leadsto \sqrt[3]{\frac{1}{x \cdot x}} \cdot \frac{1}{3} \]
      13. pow2N/A

        \[\leadsto \sqrt[3]{\frac{1}{{x}^{2}}} \cdot \frac{1}{3} \]
      14. lower-/.f64N/A

        \[\leadsto \sqrt[3]{\frac{1}{{x}^{2}}} \cdot \frac{1}{3} \]
      15. pow2N/A

        \[\leadsto \sqrt[3]{\frac{1}{x \cdot x}} \cdot \frac{1}{3} \]
      16. lift-*.f6495.1

        \[\leadsto \sqrt[3]{\frac{1}{x \cdot x}} \cdot 0.3333333333333333 \]
    6. Applied rewrites95.1%

      \[\leadsto \sqrt[3]{\frac{1}{x \cdot x}} \cdot 0.3333333333333333 \]

    if 1.35000000000000003e154 < x

    1. Initial program 4.7%

      \[\sqrt[3]{x + 1} - \sqrt[3]{x} \]
    2. Taylor expanded in x around inf

      \[\leadsto \color{blue}{\frac{1}{3} \cdot \sqrt[3]{\frac{1}{{x}^{2}}}} \]
    3. Step-by-step derivation
      1. *-commutativeN/A

        \[\leadsto \sqrt[3]{\frac{1}{{x}^{2}}} \cdot \color{blue}{\frac{1}{3}} \]
      2. lower-*.f64N/A

        \[\leadsto \sqrt[3]{\frac{1}{{x}^{2}}} \cdot \color{blue}{\frac{1}{3}} \]
      3. pow1/3N/A

        \[\leadsto {\left(\frac{1}{{x}^{2}}\right)}^{\frac{1}{3}} \cdot \frac{1}{3} \]
      4. pow-flipN/A

        \[\leadsto {\left({x}^{\left(\mathsf{neg}\left(2\right)\right)}\right)}^{\frac{1}{3}} \cdot \frac{1}{3} \]
      5. pow-powN/A

        \[\leadsto {x}^{\left(\left(\mathsf{neg}\left(2\right)\right) \cdot \frac{1}{3}\right)} \cdot \frac{1}{3} \]
      6. metadata-evalN/A

        \[\leadsto {x}^{\left(-2 \cdot \frac{1}{3}\right)} \cdot \frac{1}{3} \]
      7. metadata-evalN/A

        \[\leadsto {x}^{\frac{-2}{3}} \cdot \frac{1}{3} \]
      8. metadata-evalN/A

        \[\leadsto {x}^{\left(\frac{1}{3} \cdot -2\right)} \cdot \frac{1}{3} \]
      9. metadata-evalN/A

        \[\leadsto {x}^{\left(\frac{1}{3} \cdot \left(\mathsf{neg}\left(2\right)\right)\right)} \cdot \frac{1}{3} \]
      10. lower-pow.f64N/A

        \[\leadsto {x}^{\left(\frac{1}{3} \cdot \left(\mathsf{neg}\left(2\right)\right)\right)} \cdot \frac{1}{3} \]
      11. metadata-evalN/A

        \[\leadsto {x}^{\left(\frac{1}{3} \cdot -2\right)} \cdot \frac{1}{3} \]
      12. metadata-eval89.1

        \[\leadsto {x}^{-0.6666666666666666} \cdot 0.3333333333333333 \]
    4. Applied rewrites89.1%

      \[\leadsto \color{blue}{{x}^{-0.6666666666666666} \cdot 0.3333333333333333} \]
    5. Step-by-step derivation
      1. lift-pow.f64N/A

        \[\leadsto {x}^{\frac{-2}{3}} \cdot \frac{1}{3} \]
      2. pow-to-expN/A

        \[\leadsto e^{\log x \cdot \frac{-2}{3}} \cdot \frac{1}{3} \]
      3. lower-exp.f64N/A

        \[\leadsto e^{\log x \cdot \frac{-2}{3}} \cdot \frac{1}{3} \]
      4. lower-*.f64N/A

        \[\leadsto e^{\log x \cdot \frac{-2}{3}} \cdot \frac{1}{3} \]
      5. lower-log.f6489.5

        \[\leadsto e^{\log x \cdot -0.6666666666666666} \cdot 0.3333333333333333 \]
    6. Applied rewrites89.5%

      \[\leadsto e^{\log x \cdot -0.6666666666666666} \cdot 0.3333333333333333 \]
  3. Recombined 2 regimes into one program.
  4. Add Preprocessing

Alternative 9: 89.2% accurate, 1.6× speedup?

\[\begin{array}{l} \\ e^{\log x \cdot -0.6666666666666666} \cdot 0.3333333333333333 \end{array} \]
(FPCore (x)
 :precision binary64
 (* (exp (* (log x) -0.6666666666666666)) 0.3333333333333333))
double code(double x) {
	return exp((log(x) * -0.6666666666666666)) * 0.3333333333333333;
}
module fmin_fmax_functions
    implicit none
    private
    public fmax
    public fmin

    interface fmax
        module procedure fmax88
        module procedure fmax44
        module procedure fmax84
        module procedure fmax48
    end interface
    interface fmin
        module procedure fmin88
        module procedure fmin44
        module procedure fmin84
        module procedure fmin48
    end interface
contains
    real(8) function fmax88(x, y) result (res)
        real(8), intent (in) :: x
        real(8), intent (in) :: y
        res = merge(y, merge(x, max(x, y), y /= y), x /= x)
    end function
    real(4) function fmax44(x, y) result (res)
        real(4), intent (in) :: x
        real(4), intent (in) :: y
        res = merge(y, merge(x, max(x, y), y /= y), x /= x)
    end function
    real(8) function fmax84(x, y) result(res)
        real(8), intent (in) :: x
        real(4), intent (in) :: y
        res = merge(dble(y), merge(x, max(x, dble(y)), y /= y), x /= x)
    end function
    real(8) function fmax48(x, y) result(res)
        real(4), intent (in) :: x
        real(8), intent (in) :: y
        res = merge(y, merge(dble(x), max(dble(x), y), y /= y), x /= x)
    end function
    real(8) function fmin88(x, y) result (res)
        real(8), intent (in) :: x
        real(8), intent (in) :: y
        res = merge(y, merge(x, min(x, y), y /= y), x /= x)
    end function
    real(4) function fmin44(x, y) result (res)
        real(4), intent (in) :: x
        real(4), intent (in) :: y
        res = merge(y, merge(x, min(x, y), y /= y), x /= x)
    end function
    real(8) function fmin84(x, y) result(res)
        real(8), intent (in) :: x
        real(4), intent (in) :: y
        res = merge(dble(y), merge(x, min(x, dble(y)), y /= y), x /= x)
    end function
    real(8) function fmin48(x, y) result(res)
        real(4), intent (in) :: x
        real(8), intent (in) :: y
        res = merge(y, merge(dble(x), min(dble(x), y), y /= y), x /= x)
    end function
end module

real(8) function code(x)
use fmin_fmax_functions
    real(8), intent (in) :: x
    code = exp((log(x) * (-0.6666666666666666d0))) * 0.3333333333333333d0
end function
public static double code(double x) {
	return Math.exp((Math.log(x) * -0.6666666666666666)) * 0.3333333333333333;
}
def code(x):
	return math.exp((math.log(x) * -0.6666666666666666)) * 0.3333333333333333
function code(x)
	return Float64(exp(Float64(log(x) * -0.6666666666666666)) * 0.3333333333333333)
end
function tmp = code(x)
	tmp = exp((log(x) * -0.6666666666666666)) * 0.3333333333333333;
end
code[x_] := N[(N[Exp[N[(N[Log[x], $MachinePrecision] * -0.6666666666666666), $MachinePrecision]], $MachinePrecision] * 0.3333333333333333), $MachinePrecision]
\begin{array}{l}

\\
e^{\log x \cdot -0.6666666666666666} \cdot 0.3333333333333333
\end{array}
Derivation
  1. Initial program 6.8%

    \[\sqrt[3]{x + 1} - \sqrt[3]{x} \]
  2. Taylor expanded in x around inf

    \[\leadsto \color{blue}{\frac{1}{3} \cdot \sqrt[3]{\frac{1}{{x}^{2}}}} \]
  3. Step-by-step derivation
    1. *-commutativeN/A

      \[\leadsto \sqrt[3]{\frac{1}{{x}^{2}}} \cdot \color{blue}{\frac{1}{3}} \]
    2. lower-*.f64N/A

      \[\leadsto \sqrt[3]{\frac{1}{{x}^{2}}} \cdot \color{blue}{\frac{1}{3}} \]
    3. pow1/3N/A

      \[\leadsto {\left(\frac{1}{{x}^{2}}\right)}^{\frac{1}{3}} \cdot \frac{1}{3} \]
    4. pow-flipN/A

      \[\leadsto {\left({x}^{\left(\mathsf{neg}\left(2\right)\right)}\right)}^{\frac{1}{3}} \cdot \frac{1}{3} \]
    5. pow-powN/A

      \[\leadsto {x}^{\left(\left(\mathsf{neg}\left(2\right)\right) \cdot \frac{1}{3}\right)} \cdot \frac{1}{3} \]
    6. metadata-evalN/A

      \[\leadsto {x}^{\left(-2 \cdot \frac{1}{3}\right)} \cdot \frac{1}{3} \]
    7. metadata-evalN/A

      \[\leadsto {x}^{\frac{-2}{3}} \cdot \frac{1}{3} \]
    8. metadata-evalN/A

      \[\leadsto {x}^{\left(\frac{1}{3} \cdot -2\right)} \cdot \frac{1}{3} \]
    9. metadata-evalN/A

      \[\leadsto {x}^{\left(\frac{1}{3} \cdot \left(\mathsf{neg}\left(2\right)\right)\right)} \cdot \frac{1}{3} \]
    10. lower-pow.f64N/A

      \[\leadsto {x}^{\left(\frac{1}{3} \cdot \left(\mathsf{neg}\left(2\right)\right)\right)} \cdot \frac{1}{3} \]
    11. metadata-evalN/A

      \[\leadsto {x}^{\left(\frac{1}{3} \cdot -2\right)} \cdot \frac{1}{3} \]
    12. metadata-eval89.0

      \[\leadsto {x}^{-0.6666666666666666} \cdot 0.3333333333333333 \]
  4. Applied rewrites89.0%

    \[\leadsto \color{blue}{{x}^{-0.6666666666666666} \cdot 0.3333333333333333} \]
  5. Step-by-step derivation
    1. lift-pow.f64N/A

      \[\leadsto {x}^{\frac{-2}{3}} \cdot \frac{1}{3} \]
    2. pow-to-expN/A

      \[\leadsto e^{\log x \cdot \frac{-2}{3}} \cdot \frac{1}{3} \]
    3. lower-exp.f64N/A

      \[\leadsto e^{\log x \cdot \frac{-2}{3}} \cdot \frac{1}{3} \]
    4. lower-*.f64N/A

      \[\leadsto e^{\log x \cdot \frac{-2}{3}} \cdot \frac{1}{3} \]
    5. lower-log.f6489.2

      \[\leadsto e^{\log x \cdot -0.6666666666666666} \cdot 0.3333333333333333 \]
  6. Applied rewrites89.2%

    \[\leadsto e^{\log x \cdot -0.6666666666666666} \cdot 0.3333333333333333 \]
  7. Add Preprocessing

Alternative 10: 89.0% accurate, 1.9× speedup?

\[\begin{array}{l} \\ {x}^{-0.6666666666666666} \cdot 0.3333333333333333 \end{array} \]
(FPCore (x)
 :precision binary64
 (* (pow x -0.6666666666666666) 0.3333333333333333))
double code(double x) {
	return pow(x, -0.6666666666666666) * 0.3333333333333333;
}
module fmin_fmax_functions
    implicit none
    private
    public fmax
    public fmin

    interface fmax
        module procedure fmax88
        module procedure fmax44
        module procedure fmax84
        module procedure fmax48
    end interface
    interface fmin
        module procedure fmin88
        module procedure fmin44
        module procedure fmin84
        module procedure fmin48
    end interface
contains
    real(8) function fmax88(x, y) result (res)
        real(8), intent (in) :: x
        real(8), intent (in) :: y
        res = merge(y, merge(x, max(x, y), y /= y), x /= x)
    end function
    real(4) function fmax44(x, y) result (res)
        real(4), intent (in) :: x
        real(4), intent (in) :: y
        res = merge(y, merge(x, max(x, y), y /= y), x /= x)
    end function
    real(8) function fmax84(x, y) result(res)
        real(8), intent (in) :: x
        real(4), intent (in) :: y
        res = merge(dble(y), merge(x, max(x, dble(y)), y /= y), x /= x)
    end function
    real(8) function fmax48(x, y) result(res)
        real(4), intent (in) :: x
        real(8), intent (in) :: y
        res = merge(y, merge(dble(x), max(dble(x), y), y /= y), x /= x)
    end function
    real(8) function fmin88(x, y) result (res)
        real(8), intent (in) :: x
        real(8), intent (in) :: y
        res = merge(y, merge(x, min(x, y), y /= y), x /= x)
    end function
    real(4) function fmin44(x, y) result (res)
        real(4), intent (in) :: x
        real(4), intent (in) :: y
        res = merge(y, merge(x, min(x, y), y /= y), x /= x)
    end function
    real(8) function fmin84(x, y) result(res)
        real(8), intent (in) :: x
        real(4), intent (in) :: y
        res = merge(dble(y), merge(x, min(x, dble(y)), y /= y), x /= x)
    end function
    real(8) function fmin48(x, y) result(res)
        real(4), intent (in) :: x
        real(8), intent (in) :: y
        res = merge(y, merge(dble(x), min(dble(x), y), y /= y), x /= x)
    end function
end module

real(8) function code(x)
use fmin_fmax_functions
    real(8), intent (in) :: x
    code = (x ** (-0.6666666666666666d0)) * 0.3333333333333333d0
end function
public static double code(double x) {
	return Math.pow(x, -0.6666666666666666) * 0.3333333333333333;
}
def code(x):
	return math.pow(x, -0.6666666666666666) * 0.3333333333333333
function code(x)
	return Float64((x ^ -0.6666666666666666) * 0.3333333333333333)
end
function tmp = code(x)
	tmp = (x ^ -0.6666666666666666) * 0.3333333333333333;
end
code[x_] := N[(N[Power[x, -0.6666666666666666], $MachinePrecision] * 0.3333333333333333), $MachinePrecision]
\begin{array}{l}

\\
{x}^{-0.6666666666666666} \cdot 0.3333333333333333
\end{array}
Derivation
  1. Initial program 6.8%

    \[\sqrt[3]{x + 1} - \sqrt[3]{x} \]
  2. Taylor expanded in x around inf

    \[\leadsto \color{blue}{\frac{1}{3} \cdot \sqrt[3]{\frac{1}{{x}^{2}}}} \]
  3. Step-by-step derivation
    1. *-commutativeN/A

      \[\leadsto \sqrt[3]{\frac{1}{{x}^{2}}} \cdot \color{blue}{\frac{1}{3}} \]
    2. lower-*.f64N/A

      \[\leadsto \sqrt[3]{\frac{1}{{x}^{2}}} \cdot \color{blue}{\frac{1}{3}} \]
    3. pow1/3N/A

      \[\leadsto {\left(\frac{1}{{x}^{2}}\right)}^{\frac{1}{3}} \cdot \frac{1}{3} \]
    4. pow-flipN/A

      \[\leadsto {\left({x}^{\left(\mathsf{neg}\left(2\right)\right)}\right)}^{\frac{1}{3}} \cdot \frac{1}{3} \]
    5. pow-powN/A

      \[\leadsto {x}^{\left(\left(\mathsf{neg}\left(2\right)\right) \cdot \frac{1}{3}\right)} \cdot \frac{1}{3} \]
    6. metadata-evalN/A

      \[\leadsto {x}^{\left(-2 \cdot \frac{1}{3}\right)} \cdot \frac{1}{3} \]
    7. metadata-evalN/A

      \[\leadsto {x}^{\frac{-2}{3}} \cdot \frac{1}{3} \]
    8. metadata-evalN/A

      \[\leadsto {x}^{\left(\frac{1}{3} \cdot -2\right)} \cdot \frac{1}{3} \]
    9. metadata-evalN/A

      \[\leadsto {x}^{\left(\frac{1}{3} \cdot \left(\mathsf{neg}\left(2\right)\right)\right)} \cdot \frac{1}{3} \]
    10. lower-pow.f64N/A

      \[\leadsto {x}^{\left(\frac{1}{3} \cdot \left(\mathsf{neg}\left(2\right)\right)\right)} \cdot \frac{1}{3} \]
    11. metadata-evalN/A

      \[\leadsto {x}^{\left(\frac{1}{3} \cdot -2\right)} \cdot \frac{1}{3} \]
    12. metadata-eval89.0

      \[\leadsto {x}^{-0.6666666666666666} \cdot 0.3333333333333333 \]
  4. Applied rewrites89.0%

    \[\leadsto \color{blue}{{x}^{-0.6666666666666666} \cdot 0.3333333333333333} \]
  5. Add Preprocessing

Alternative 11: 1.8% accurate, 2.0× speedup?

\[\begin{array}{l} \\ 1 - \sqrt[3]{x} \end{array} \]
(FPCore (x) :precision binary64 (- 1.0 (cbrt x)))
double code(double x) {
	return 1.0 - cbrt(x);
}
public static double code(double x) {
	return 1.0 - Math.cbrt(x);
}
function code(x)
	return Float64(1.0 - cbrt(x))
end
code[x_] := N[(1.0 - N[Power[x, 1/3], $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
1 - \sqrt[3]{x}
\end{array}
Derivation
  1. Initial program 6.8%

    \[\sqrt[3]{x + 1} - \sqrt[3]{x} \]
  2. Taylor expanded in x around 0

    \[\leadsto \color{blue}{1} - \sqrt[3]{x} \]
  3. Step-by-step derivation
    1. Applied rewrites1.8%

      \[\leadsto \color{blue}{1} - \sqrt[3]{x} \]
    2. Add Preprocessing

    Developer Target 1: 98.5% accurate, 0.3× speedup?

    \[\begin{array}{l} \\ \begin{array}{l} t_0 := \sqrt[3]{x + 1}\\ \frac{1}{\left(t\_0 \cdot t\_0 + \sqrt[3]{x} \cdot t\_0\right) + \sqrt[3]{x} \cdot \sqrt[3]{x}} \end{array} \end{array} \]
    (FPCore (x)
     :precision binary64
     (let* ((t_0 (cbrt (+ x 1.0))))
       (/ 1.0 (+ (+ (* t_0 t_0) (* (cbrt x) t_0)) (* (cbrt x) (cbrt x))))))
    double code(double x) {
    	double t_0 = cbrt((x + 1.0));
    	return 1.0 / (((t_0 * t_0) + (cbrt(x) * t_0)) + (cbrt(x) * cbrt(x)));
    }
    
    public static double code(double x) {
    	double t_0 = Math.cbrt((x + 1.0));
    	return 1.0 / (((t_0 * t_0) + (Math.cbrt(x) * t_0)) + (Math.cbrt(x) * Math.cbrt(x)));
    }
    
    function code(x)
    	t_0 = cbrt(Float64(x + 1.0))
    	return Float64(1.0 / Float64(Float64(Float64(t_0 * t_0) + Float64(cbrt(x) * t_0)) + Float64(cbrt(x) * cbrt(x))))
    end
    
    code[x_] := Block[{t$95$0 = N[Power[N[(x + 1.0), $MachinePrecision], 1/3], $MachinePrecision]}, N[(1.0 / N[(N[(N[(t$95$0 * t$95$0), $MachinePrecision] + N[(N[Power[x, 1/3], $MachinePrecision] * t$95$0), $MachinePrecision]), $MachinePrecision] + N[(N[Power[x, 1/3], $MachinePrecision] * N[Power[x, 1/3], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]
    
    \begin{array}{l}
    
    \\
    \begin{array}{l}
    t_0 := \sqrt[3]{x + 1}\\
    \frac{1}{\left(t\_0 \cdot t\_0 + \sqrt[3]{x} \cdot t\_0\right) + \sqrt[3]{x} \cdot \sqrt[3]{x}}
    \end{array}
    \end{array}
    

    Reproduce

    ?
    herbie shell --seed 2025101 
    (FPCore (x)
      :name "2cbrt (problem 3.3.4)"
      :precision binary64
      :pre (and (> x 1.0) (< x 1e+308))
    
      :alt
      (! :herbie-platform c (/ 1 (+ (* (cbrt (+ x 1)) (cbrt (+ x 1))) (* (cbrt x) (cbrt (+ x 1))) (* (cbrt x) (cbrt x)))))
    
      (- (cbrt (+ x 1.0)) (cbrt x)))