2nthrt (problem 3.4.6)

Percentage Accurate: 54.5% → 85.8%
Time: 25.6s
Alternatives: 15
Speedup: 0.4×

Specification

?
\[\begin{array}{l} \\ {\left(x + 1\right)}^{\left(\frac{1}{n}\right)} - {x}^{\left(\frac{1}{n}\right)} \end{array} \]
(FPCore (x n)
 :precision binary64
 (- (pow (+ x 1.0) (/ 1.0 n)) (pow x (/ 1.0 n))))
double code(double x, double n) {
	return pow((x + 1.0), (1.0 / n)) - pow(x, (1.0 / n));
}
real(8) function code(x, n)
    real(8), intent (in) :: x
    real(8), intent (in) :: n
    code = ((x + 1.0d0) ** (1.0d0 / n)) - (x ** (1.0d0 / n))
end function
public static double code(double x, double n) {
	return Math.pow((x + 1.0), (1.0 / n)) - Math.pow(x, (1.0 / n));
}
def code(x, n):
	return math.pow((x + 1.0), (1.0 / n)) - math.pow(x, (1.0 / n))
function code(x, n)
	return Float64((Float64(x + 1.0) ^ Float64(1.0 / n)) - (x ^ Float64(1.0 / n)))
end
function tmp = code(x, n)
	tmp = ((x + 1.0) ^ (1.0 / n)) - (x ^ (1.0 / n));
end
code[x_, n_] := N[(N[Power[N[(x + 1.0), $MachinePrecision], N[(1.0 / n), $MachinePrecision]], $MachinePrecision] - N[Power[x, N[(1.0 / n), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
{\left(x + 1\right)}^{\left(\frac{1}{n}\right)} - {x}^{\left(\frac{1}{n}\right)}
\end{array}

Sampling outcomes in binary64 precision:

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 15 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: 54.5% accurate, 1.0× speedup?

\[\begin{array}{l} \\ {\left(x + 1\right)}^{\left(\frac{1}{n}\right)} - {x}^{\left(\frac{1}{n}\right)} \end{array} \]
(FPCore (x n)
 :precision binary64
 (- (pow (+ x 1.0) (/ 1.0 n)) (pow x (/ 1.0 n))))
double code(double x, double n) {
	return pow((x + 1.0), (1.0 / n)) - pow(x, (1.0 / n));
}
real(8) function code(x, n)
    real(8), intent (in) :: x
    real(8), intent (in) :: n
    code = ((x + 1.0d0) ** (1.0d0 / n)) - (x ** (1.0d0 / n))
end function
public static double code(double x, double n) {
	return Math.pow((x + 1.0), (1.0 / n)) - Math.pow(x, (1.0 / n));
}
def code(x, n):
	return math.pow((x + 1.0), (1.0 / n)) - math.pow(x, (1.0 / n))
function code(x, n)
	return Float64((Float64(x + 1.0) ^ Float64(1.0 / n)) - (x ^ Float64(1.0 / n)))
end
function tmp = code(x, n)
	tmp = ((x + 1.0) ^ (1.0 / n)) - (x ^ (1.0 / n));
end
code[x_, n_] := N[(N[Power[N[(x + 1.0), $MachinePrecision], N[(1.0 / n), $MachinePrecision]], $MachinePrecision] - N[Power[x, N[(1.0 / n), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
{\left(x + 1\right)}^{\left(\frac{1}{n}\right)} - {x}^{\left(\frac{1}{n}\right)}
\end{array}

Alternative 1: 85.8% accurate, 0.4× speedup?

\[\begin{array}{l} \\ \begin{array}{l} t_0 := e^{\frac{x}{n}} - {x}^{\left({n}^{-1}\right)}\\ \mathbf{if}\;{n}^{-1} \leq -1 \cdot 10^{-6}:\\ \;\;\;\;t\_0\\ \mathbf{elif}\;{n}^{-1} \leq -5 \cdot 10^{-82}:\\ \;\;\;\;\frac{\frac{\log x}{n \cdot x} - \frac{-1}{x}}{n}\\ \mathbf{elif}\;{n}^{-1} \leq 5 \cdot 10^{-9}:\\ \;\;\;\;\frac{\mathsf{log1p}\left(x\right) - \log x}{n}\\ \mathbf{else}:\\ \;\;\;\;t\_0\\ \end{array} \end{array} \]
(FPCore (x n)
 :precision binary64
 (let* ((t_0 (- (exp (/ x n)) (pow x (pow n -1.0)))))
   (if (<= (pow n -1.0) -1e-6)
     t_0
     (if (<= (pow n -1.0) -5e-82)
       (/ (- (/ (log x) (* n x)) (/ -1.0 x)) n)
       (if (<= (pow n -1.0) 5e-9) (/ (- (log1p x) (log x)) n) t_0)))))
double code(double x, double n) {
	double t_0 = exp((x / n)) - pow(x, pow(n, -1.0));
	double tmp;
	if (pow(n, -1.0) <= -1e-6) {
		tmp = t_0;
	} else if (pow(n, -1.0) <= -5e-82) {
		tmp = ((log(x) / (n * x)) - (-1.0 / x)) / n;
	} else if (pow(n, -1.0) <= 5e-9) {
		tmp = (log1p(x) - log(x)) / n;
	} else {
		tmp = t_0;
	}
	return tmp;
}
public static double code(double x, double n) {
	double t_0 = Math.exp((x / n)) - Math.pow(x, Math.pow(n, -1.0));
	double tmp;
	if (Math.pow(n, -1.0) <= -1e-6) {
		tmp = t_0;
	} else if (Math.pow(n, -1.0) <= -5e-82) {
		tmp = ((Math.log(x) / (n * x)) - (-1.0 / x)) / n;
	} else if (Math.pow(n, -1.0) <= 5e-9) {
		tmp = (Math.log1p(x) - Math.log(x)) / n;
	} else {
		tmp = t_0;
	}
	return tmp;
}
def code(x, n):
	t_0 = math.exp((x / n)) - math.pow(x, math.pow(n, -1.0))
	tmp = 0
	if math.pow(n, -1.0) <= -1e-6:
		tmp = t_0
	elif math.pow(n, -1.0) <= -5e-82:
		tmp = ((math.log(x) / (n * x)) - (-1.0 / x)) / n
	elif math.pow(n, -1.0) <= 5e-9:
		tmp = (math.log1p(x) - math.log(x)) / n
	else:
		tmp = t_0
	return tmp
function code(x, n)
	t_0 = Float64(exp(Float64(x / n)) - (x ^ (n ^ -1.0)))
	tmp = 0.0
	if ((n ^ -1.0) <= -1e-6)
		tmp = t_0;
	elseif ((n ^ -1.0) <= -5e-82)
		tmp = Float64(Float64(Float64(log(x) / Float64(n * x)) - Float64(-1.0 / x)) / n);
	elseif ((n ^ -1.0) <= 5e-9)
		tmp = Float64(Float64(log1p(x) - log(x)) / n);
	else
		tmp = t_0;
	end
	return tmp
end
code[x_, n_] := Block[{t$95$0 = N[(N[Exp[N[(x / n), $MachinePrecision]], $MachinePrecision] - N[Power[x, N[Power[n, -1.0], $MachinePrecision]], $MachinePrecision]), $MachinePrecision]}, If[LessEqual[N[Power[n, -1.0], $MachinePrecision], -1e-6], t$95$0, If[LessEqual[N[Power[n, -1.0], $MachinePrecision], -5e-82], N[(N[(N[(N[Log[x], $MachinePrecision] / N[(n * x), $MachinePrecision]), $MachinePrecision] - N[(-1.0 / x), $MachinePrecision]), $MachinePrecision] / n), $MachinePrecision], If[LessEqual[N[Power[n, -1.0], $MachinePrecision], 5e-9], N[(N[(N[Log[1 + x], $MachinePrecision] - N[Log[x], $MachinePrecision]), $MachinePrecision] / n), $MachinePrecision], t$95$0]]]]
\begin{array}{l}

\\
\begin{array}{l}
t_0 := e^{\frac{x}{n}} - {x}^{\left({n}^{-1}\right)}\\
\mathbf{if}\;{n}^{-1} \leq -1 \cdot 10^{-6}:\\
\;\;\;\;t\_0\\

\mathbf{elif}\;{n}^{-1} \leq -5 \cdot 10^{-82}:\\
\;\;\;\;\frac{\frac{\log x}{n \cdot x} - \frac{-1}{x}}{n}\\

\mathbf{elif}\;{n}^{-1} \leq 5 \cdot 10^{-9}:\\
\;\;\;\;\frac{\mathsf{log1p}\left(x\right) - \log x}{n}\\

\mathbf{else}:\\
\;\;\;\;t\_0\\


\end{array}
\end{array}
Derivation
  1. Split input into 3 regimes
  2. if (/.f64 #s(literal 1 binary64) n) < -9.99999999999999955e-7 or 5.0000000000000001e-9 < (/.f64 #s(literal 1 binary64) n)

    1. Initial program 81.1%

      \[{\left(x + 1\right)}^{\left(\frac{1}{n}\right)} - {x}^{\left(\frac{1}{n}\right)} \]
    2. Add Preprocessing
    3. Step-by-step derivation
      1. lift-pow.f64N/A

        \[\leadsto \color{blue}{{\left(x + 1\right)}^{\left(\frac{1}{n}\right)}} - {x}^{\left(\frac{1}{n}\right)} \]
      2. pow-to-expN/A

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

        \[\leadsto \color{blue}{e^{\log \left(x + 1\right) \cdot \frac{1}{n}}} - {x}^{\left(\frac{1}{n}\right)} \]
      4. lift-/.f64N/A

        \[\leadsto e^{\log \left(x + 1\right) \cdot \color{blue}{\frac{1}{n}}} - {x}^{\left(\frac{1}{n}\right)} \]
      5. associate-*r/N/A

        \[\leadsto e^{\color{blue}{\frac{\log \left(x + 1\right) \cdot 1}{n}}} - {x}^{\left(\frac{1}{n}\right)} \]
      6. *-rgt-identityN/A

        \[\leadsto e^{\frac{\color{blue}{\log \left(x + 1\right)}}{n}} - {x}^{\left(\frac{1}{n}\right)} \]
      7. lower-/.f64N/A

        \[\leadsto e^{\color{blue}{\frac{\log \left(x + 1\right)}{n}}} - {x}^{\left(\frac{1}{n}\right)} \]
      8. lift-+.f64N/A

        \[\leadsto e^{\frac{\log \color{blue}{\left(x + 1\right)}}{n}} - {x}^{\left(\frac{1}{n}\right)} \]
      9. +-commutativeN/A

        \[\leadsto e^{\frac{\log \color{blue}{\left(1 + x\right)}}{n}} - {x}^{\left(\frac{1}{n}\right)} \]
      10. lower-log1p.f6499.9

        \[\leadsto e^{\frac{\color{blue}{\mathsf{log1p}\left(x\right)}}{n}} - {x}^{\left(\frac{1}{n}\right)} \]
    4. Applied rewrites99.9%

      \[\leadsto \color{blue}{e^{\frac{\mathsf{log1p}\left(x\right)}{n}}} - {x}^{\left(\frac{1}{n}\right)} \]
    5. Taylor expanded in x around 0

      \[\leadsto e^{\color{blue}{\frac{x}{n}}} - {x}^{\left(\frac{1}{n}\right)} \]
    6. Step-by-step derivation
      1. lower-/.f6499.9

        \[\leadsto e^{\color{blue}{\frac{x}{n}}} - {x}^{\left(\frac{1}{n}\right)} \]
    7. Applied rewrites99.9%

      \[\leadsto e^{\color{blue}{\frac{x}{n}}} - {x}^{\left(\frac{1}{n}\right)} \]

    if -9.99999999999999955e-7 < (/.f64 #s(literal 1 binary64) n) < -4.9999999999999998e-82

    1. Initial program 5.6%

      \[{\left(x + 1\right)}^{\left(\frac{1}{n}\right)} - {x}^{\left(\frac{1}{n}\right)} \]
    2. Add Preprocessing
    3. Taylor expanded in x around inf

      \[\leadsto \color{blue}{\frac{e^{-1 \cdot \frac{\log \left(\frac{1}{x}\right)}{n}}}{n \cdot x}} \]
    4. Step-by-step derivation
      1. lower-/.f64N/A

        \[\leadsto \color{blue}{\frac{e^{-1 \cdot \frac{\log \left(\frac{1}{x}\right)}{n}}}{n \cdot x}} \]
      2. *-commutativeN/A

        \[\leadsto \frac{e^{\color{blue}{\frac{\log \left(\frac{1}{x}\right)}{n} \cdot -1}}}{n \cdot x} \]
      3. log-recN/A

        \[\leadsto \frac{e^{\frac{\color{blue}{\mathsf{neg}\left(\log x\right)}}{n} \cdot -1}}{n \cdot x} \]
      4. mul-1-negN/A

        \[\leadsto \frac{e^{\frac{\color{blue}{-1 \cdot \log x}}{n} \cdot -1}}{n \cdot x} \]
      5. *-commutativeN/A

        \[\leadsto \frac{e^{\color{blue}{-1 \cdot \frac{-1 \cdot \log x}{n}}}}{n \cdot x} \]
      6. associate-*r/N/A

        \[\leadsto \frac{e^{\color{blue}{\frac{-1 \cdot \left(-1 \cdot \log x\right)}{n}}}}{n \cdot x} \]
      7. mul-1-negN/A

        \[\leadsto \frac{e^{\frac{\color{blue}{\mathsf{neg}\left(-1 \cdot \log x\right)}}{n}}}{n \cdot x} \]
      8. distribute-lft-neg-inN/A

        \[\leadsto \frac{e^{\frac{\color{blue}{\left(\mathsf{neg}\left(-1\right)\right) \cdot \log x}}{n}}}{n \cdot x} \]
      9. metadata-evalN/A

        \[\leadsto \frac{e^{\frac{\color{blue}{1} \cdot \log x}{n}}}{n \cdot x} \]
      10. *-lft-identityN/A

        \[\leadsto \frac{e^{\frac{\color{blue}{\log x}}{n}}}{n \cdot x} \]
      11. lower-exp.f64N/A

        \[\leadsto \frac{\color{blue}{e^{\frac{\log x}{n}}}}{n \cdot x} \]
      12. lower-/.f64N/A

        \[\leadsto \frac{e^{\color{blue}{\frac{\log x}{n}}}}{n \cdot x} \]
      13. lower-log.f64N/A

        \[\leadsto \frac{e^{\frac{\color{blue}{\log x}}{n}}}{n \cdot x} \]
      14. lower-*.f6471.9

        \[\leadsto \frac{e^{\frac{\log x}{n}}}{\color{blue}{n \cdot x}} \]
    5. Applied rewrites71.9%

      \[\leadsto \color{blue}{\frac{e^{\frac{\log x}{n}}}{n \cdot x}} \]
    6. Taylor expanded in n around -inf

      \[\leadsto -1 \cdot \color{blue}{\frac{-1 \cdot \frac{\log x}{n \cdot x} - \frac{1}{x}}{n}} \]
    7. Step-by-step derivation
      1. Applied rewrites72.0%

        \[\leadsto -\frac{\frac{-\log x}{n \cdot x} - \frac{1}{x}}{n} \]

      if -4.9999999999999998e-82 < (/.f64 #s(literal 1 binary64) n) < 5.0000000000000001e-9

      1. Initial program 29.0%

        \[{\left(x + 1\right)}^{\left(\frac{1}{n}\right)} - {x}^{\left(\frac{1}{n}\right)} \]
      2. Add Preprocessing
      3. Taylor expanded in n around inf

        \[\leadsto \color{blue}{\frac{\log \left(1 + x\right) - \log x}{n}} \]
      4. Step-by-step derivation
        1. lower-/.f64N/A

          \[\leadsto \color{blue}{\frac{\log \left(1 + x\right) - \log x}{n}} \]
        2. lower--.f64N/A

          \[\leadsto \frac{\color{blue}{\log \left(1 + x\right) - \log x}}{n} \]
        3. lower-log1p.f64N/A

          \[\leadsto \frac{\color{blue}{\mathsf{log1p}\left(x\right)} - \log x}{n} \]
        4. lower-log.f6482.4

          \[\leadsto \frac{\mathsf{log1p}\left(x\right) - \color{blue}{\log x}}{n} \]
      5. Applied rewrites82.4%

        \[\leadsto \color{blue}{\frac{\mathsf{log1p}\left(x\right) - \log x}{n}} \]
    8. Recombined 3 regimes into one program.
    9. Final simplification89.3%

      \[\leadsto \begin{array}{l} \mathbf{if}\;{n}^{-1} \leq -1 \cdot 10^{-6}:\\ \;\;\;\;e^{\frac{x}{n}} - {x}^{\left({n}^{-1}\right)}\\ \mathbf{elif}\;{n}^{-1} \leq -5 \cdot 10^{-82}:\\ \;\;\;\;\frac{\frac{\log x}{n \cdot x} - \frac{-1}{x}}{n}\\ \mathbf{elif}\;{n}^{-1} \leq 5 \cdot 10^{-9}:\\ \;\;\;\;\frac{\mathsf{log1p}\left(x\right) - \log x}{n}\\ \mathbf{else}:\\ \;\;\;\;e^{\frac{x}{n}} - {x}^{\left({n}^{-1}\right)}\\ \end{array} \]
    10. Add Preprocessing

    Alternative 2: 85.9% accurate, 0.1× speedup?

    \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;{n}^{-1} \leq -5 \cdot 10^{-82}:\\ \;\;\;\;\frac{e^{\frac{\log x}{n}}}{n \cdot x}\\ \mathbf{elif}\;{n}^{-1} \leq 5 \cdot 10^{-9}:\\ \;\;\;\;\frac{\left(\mathsf{log1p}\left(x\right) + \frac{\mathsf{fma}\left({\left(\mathsf{log1p}\left(x\right)\right)}^{2} - {\log x}^{2}, 0.5, \frac{\mathsf{fma}\left(-0.041666666666666664, \frac{{\left(\mathsf{log1p}\left(x\right)\right)}^{4} - {\log x}^{4}}{n}, \left({\left(\mathsf{log1p}\left(x\right)\right)}^{3} - {\log x}^{3}\right) \cdot -0.16666666666666666\right)}{-n}\right)}{n}\right) - \log x}{n}\\ \mathbf{else}:\\ \;\;\;\;e^{\frac{x}{n}} - {x}^{\left({n}^{-1}\right)}\\ \end{array} \end{array} \]
    (FPCore (x n)
     :precision binary64
     (if (<= (pow n -1.0) -5e-82)
       (/ (exp (/ (log x) n)) (* n x))
       (if (<= (pow n -1.0) 5e-9)
         (/
          (-
           (+
            (log1p x)
            (/
             (fma
              (- (pow (log1p x) 2.0) (pow (log x) 2.0))
              0.5
              (/
               (fma
                -0.041666666666666664
                (/ (- (pow (log1p x) 4.0) (pow (log x) 4.0)) n)
                (* (- (pow (log1p x) 3.0) (pow (log x) 3.0)) -0.16666666666666666))
               (- n)))
             n))
           (log x))
          n)
         (- (exp (/ x n)) (pow x (pow n -1.0))))))
    double code(double x, double n) {
    	double tmp;
    	if (pow(n, -1.0) <= -5e-82) {
    		tmp = exp((log(x) / n)) / (n * x);
    	} else if (pow(n, -1.0) <= 5e-9) {
    		tmp = ((log1p(x) + (fma((pow(log1p(x), 2.0) - pow(log(x), 2.0)), 0.5, (fma(-0.041666666666666664, ((pow(log1p(x), 4.0) - pow(log(x), 4.0)) / n), ((pow(log1p(x), 3.0) - pow(log(x), 3.0)) * -0.16666666666666666)) / -n)) / n)) - log(x)) / n;
    	} else {
    		tmp = exp((x / n)) - pow(x, pow(n, -1.0));
    	}
    	return tmp;
    }
    
    function code(x, n)
    	tmp = 0.0
    	if ((n ^ -1.0) <= -5e-82)
    		tmp = Float64(exp(Float64(log(x) / n)) / Float64(n * x));
    	elseif ((n ^ -1.0) <= 5e-9)
    		tmp = Float64(Float64(Float64(log1p(x) + Float64(fma(Float64((log1p(x) ^ 2.0) - (log(x) ^ 2.0)), 0.5, Float64(fma(-0.041666666666666664, Float64(Float64((log1p(x) ^ 4.0) - (log(x) ^ 4.0)) / n), Float64(Float64((log1p(x) ^ 3.0) - (log(x) ^ 3.0)) * -0.16666666666666666)) / Float64(-n))) / n)) - log(x)) / n);
    	else
    		tmp = Float64(exp(Float64(x / n)) - (x ^ (n ^ -1.0)));
    	end
    	return tmp
    end
    
    code[x_, n_] := If[LessEqual[N[Power[n, -1.0], $MachinePrecision], -5e-82], N[(N[Exp[N[(N[Log[x], $MachinePrecision] / n), $MachinePrecision]], $MachinePrecision] / N[(n * x), $MachinePrecision]), $MachinePrecision], If[LessEqual[N[Power[n, -1.0], $MachinePrecision], 5e-9], N[(N[(N[(N[Log[1 + x], $MachinePrecision] + N[(N[(N[(N[Power[N[Log[1 + x], $MachinePrecision], 2.0], $MachinePrecision] - N[Power[N[Log[x], $MachinePrecision], 2.0], $MachinePrecision]), $MachinePrecision] * 0.5 + N[(N[(-0.041666666666666664 * N[(N[(N[Power[N[Log[1 + x], $MachinePrecision], 4.0], $MachinePrecision] - N[Power[N[Log[x], $MachinePrecision], 4.0], $MachinePrecision]), $MachinePrecision] / n), $MachinePrecision] + N[(N[(N[Power[N[Log[1 + x], $MachinePrecision], 3.0], $MachinePrecision] - N[Power[N[Log[x], $MachinePrecision], 3.0], $MachinePrecision]), $MachinePrecision] * -0.16666666666666666), $MachinePrecision]), $MachinePrecision] / (-n)), $MachinePrecision]), $MachinePrecision] / n), $MachinePrecision]), $MachinePrecision] - N[Log[x], $MachinePrecision]), $MachinePrecision] / n), $MachinePrecision], N[(N[Exp[N[(x / n), $MachinePrecision]], $MachinePrecision] - N[Power[x, N[Power[n, -1.0], $MachinePrecision]], $MachinePrecision]), $MachinePrecision]]]
    
    \begin{array}{l}
    
    \\
    \begin{array}{l}
    \mathbf{if}\;{n}^{-1} \leq -5 \cdot 10^{-82}:\\
    \;\;\;\;\frac{e^{\frac{\log x}{n}}}{n \cdot x}\\
    
    \mathbf{elif}\;{n}^{-1} \leq 5 \cdot 10^{-9}:\\
    \;\;\;\;\frac{\left(\mathsf{log1p}\left(x\right) + \frac{\mathsf{fma}\left({\left(\mathsf{log1p}\left(x\right)\right)}^{2} - {\log x}^{2}, 0.5, \frac{\mathsf{fma}\left(-0.041666666666666664, \frac{{\left(\mathsf{log1p}\left(x\right)\right)}^{4} - {\log x}^{4}}{n}, \left({\left(\mathsf{log1p}\left(x\right)\right)}^{3} - {\log x}^{3}\right) \cdot -0.16666666666666666\right)}{-n}\right)}{n}\right) - \log x}{n}\\
    
    \mathbf{else}:\\
    \;\;\;\;e^{\frac{x}{n}} - {x}^{\left({n}^{-1}\right)}\\
    
    
    \end{array}
    \end{array}
    
    Derivation
    1. Split input into 3 regimes
    2. if (/.f64 #s(literal 1 binary64) n) < -4.9999999999999998e-82

      1. Initial program 81.2%

        \[{\left(x + 1\right)}^{\left(\frac{1}{n}\right)} - {x}^{\left(\frac{1}{n}\right)} \]
      2. Add Preprocessing
      3. Taylor expanded in x around inf

        \[\leadsto \color{blue}{\frac{e^{-1 \cdot \frac{\log \left(\frac{1}{x}\right)}{n}}}{n \cdot x}} \]
      4. Step-by-step derivation
        1. lower-/.f64N/A

          \[\leadsto \color{blue}{\frac{e^{-1 \cdot \frac{\log \left(\frac{1}{x}\right)}{n}}}{n \cdot x}} \]
        2. *-commutativeN/A

          \[\leadsto \frac{e^{\color{blue}{\frac{\log \left(\frac{1}{x}\right)}{n} \cdot -1}}}{n \cdot x} \]
        3. log-recN/A

          \[\leadsto \frac{e^{\frac{\color{blue}{\mathsf{neg}\left(\log x\right)}}{n} \cdot -1}}{n \cdot x} \]
        4. mul-1-negN/A

          \[\leadsto \frac{e^{\frac{\color{blue}{-1 \cdot \log x}}{n} \cdot -1}}{n \cdot x} \]
        5. *-commutativeN/A

          \[\leadsto \frac{e^{\color{blue}{-1 \cdot \frac{-1 \cdot \log x}{n}}}}{n \cdot x} \]
        6. associate-*r/N/A

          \[\leadsto \frac{e^{\color{blue}{\frac{-1 \cdot \left(-1 \cdot \log x\right)}{n}}}}{n \cdot x} \]
        7. mul-1-negN/A

          \[\leadsto \frac{e^{\frac{\color{blue}{\mathsf{neg}\left(-1 \cdot \log x\right)}}{n}}}{n \cdot x} \]
        8. distribute-lft-neg-inN/A

          \[\leadsto \frac{e^{\frac{\color{blue}{\left(\mathsf{neg}\left(-1\right)\right) \cdot \log x}}{n}}}{n \cdot x} \]
        9. metadata-evalN/A

          \[\leadsto \frac{e^{\frac{\color{blue}{1} \cdot \log x}{n}}}{n \cdot x} \]
        10. *-lft-identityN/A

          \[\leadsto \frac{e^{\frac{\color{blue}{\log x}}{n}}}{n \cdot x} \]
        11. lower-exp.f64N/A

          \[\leadsto \frac{\color{blue}{e^{\frac{\log x}{n}}}}{n \cdot x} \]
        12. lower-/.f64N/A

          \[\leadsto \frac{e^{\color{blue}{\frac{\log x}{n}}}}{n \cdot x} \]
        13. lower-log.f64N/A

          \[\leadsto \frac{e^{\frac{\color{blue}{\log x}}{n}}}{n \cdot x} \]
        14. lower-*.f6493.4

          \[\leadsto \frac{e^{\frac{\log x}{n}}}{\color{blue}{n \cdot x}} \]
      5. Applied rewrites93.4%

        \[\leadsto \color{blue}{\frac{e^{\frac{\log x}{n}}}{n \cdot x}} \]

      if -4.9999999999999998e-82 < (/.f64 #s(literal 1 binary64) n) < 5.0000000000000001e-9

      1. Initial program 29.0%

        \[{\left(x + 1\right)}^{\left(\frac{1}{n}\right)} - {x}^{\left(\frac{1}{n}\right)} \]
      2. Add Preprocessing
      3. Taylor expanded in n around -inf

        \[\leadsto \color{blue}{-1 \cdot \frac{\left(-1 \cdot \log \left(1 + x\right) + -1 \cdot \frac{\left(-1 \cdot \frac{\left(-1 \cdot \frac{\frac{1}{24} \cdot {\log \left(1 + x\right)}^{4} - \frac{1}{24} \cdot {\log x}^{4}}{n} + \frac{-1}{6} \cdot {\log \left(1 + x\right)}^{3}\right) - \frac{-1}{6} \cdot {\log x}^{3}}{n} + \frac{1}{2} \cdot {\log \left(1 + x\right)}^{2}\right) - \frac{1}{2} \cdot {\log x}^{2}}{n}\right) - -1 \cdot \log x}{n}} \]
      4. Applied rewrites82.5%

        \[\leadsto \color{blue}{\frac{\left(\left(-\mathsf{log1p}\left(x\right)\right) - \frac{\mathsf{fma}\left({\left(\mathsf{log1p}\left(x\right)\right)}^{2} - {\log x}^{2}, 0.5, \frac{\mathsf{fma}\left(-0.041666666666666664, \frac{{\left(\mathsf{log1p}\left(x\right)\right)}^{4} - {\log x}^{4}}{n}, \left({\left(\mathsf{log1p}\left(x\right)\right)}^{3} - {\log x}^{3}\right) \cdot -0.16666666666666666\right)}{-n}\right)}{n}\right) + \log x}{-n}} \]

      if 5.0000000000000001e-9 < (/.f64 #s(literal 1 binary64) n)

      1. Initial program 50.5%

        \[{\left(x + 1\right)}^{\left(\frac{1}{n}\right)} - {x}^{\left(\frac{1}{n}\right)} \]
      2. Add Preprocessing
      3. Step-by-step derivation
        1. lift-pow.f64N/A

          \[\leadsto \color{blue}{{\left(x + 1\right)}^{\left(\frac{1}{n}\right)}} - {x}^{\left(\frac{1}{n}\right)} \]
        2. pow-to-expN/A

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

          \[\leadsto \color{blue}{e^{\log \left(x + 1\right) \cdot \frac{1}{n}}} - {x}^{\left(\frac{1}{n}\right)} \]
        4. lift-/.f64N/A

          \[\leadsto e^{\log \left(x + 1\right) \cdot \color{blue}{\frac{1}{n}}} - {x}^{\left(\frac{1}{n}\right)} \]
        5. associate-*r/N/A

          \[\leadsto e^{\color{blue}{\frac{\log \left(x + 1\right) \cdot 1}{n}}} - {x}^{\left(\frac{1}{n}\right)} \]
        6. *-rgt-identityN/A

          \[\leadsto e^{\frac{\color{blue}{\log \left(x + 1\right)}}{n}} - {x}^{\left(\frac{1}{n}\right)} \]
        7. lower-/.f64N/A

          \[\leadsto e^{\color{blue}{\frac{\log \left(x + 1\right)}{n}}} - {x}^{\left(\frac{1}{n}\right)} \]
        8. lift-+.f64N/A

          \[\leadsto e^{\frac{\log \color{blue}{\left(x + 1\right)}}{n}} - {x}^{\left(\frac{1}{n}\right)} \]
        9. +-commutativeN/A

          \[\leadsto e^{\frac{\log \color{blue}{\left(1 + x\right)}}{n}} - {x}^{\left(\frac{1}{n}\right)} \]
        10. lower-log1p.f64100.0

          \[\leadsto e^{\frac{\color{blue}{\mathsf{log1p}\left(x\right)}}{n}} - {x}^{\left(\frac{1}{n}\right)} \]
      4. Applied rewrites100.0%

        \[\leadsto \color{blue}{e^{\frac{\mathsf{log1p}\left(x\right)}{n}}} - {x}^{\left(\frac{1}{n}\right)} \]
      5. Taylor expanded in x around 0

        \[\leadsto e^{\color{blue}{\frac{x}{n}}} - {x}^{\left(\frac{1}{n}\right)} \]
      6. Step-by-step derivation
        1. lower-/.f64100.0

          \[\leadsto e^{\color{blue}{\frac{x}{n}}} - {x}^{\left(\frac{1}{n}\right)} \]
      7. Applied rewrites100.0%

        \[\leadsto e^{\color{blue}{\frac{x}{n}}} - {x}^{\left(\frac{1}{n}\right)} \]
    3. Recombined 3 regimes into one program.
    4. Final simplification89.0%

      \[\leadsto \begin{array}{l} \mathbf{if}\;{n}^{-1} \leq -5 \cdot 10^{-82}:\\ \;\;\;\;\frac{e^{\frac{\log x}{n}}}{n \cdot x}\\ \mathbf{elif}\;{n}^{-1} \leq 5 \cdot 10^{-9}:\\ \;\;\;\;\frac{\left(\mathsf{log1p}\left(x\right) + \frac{\mathsf{fma}\left({\left(\mathsf{log1p}\left(x\right)\right)}^{2} - {\log x}^{2}, 0.5, \frac{\mathsf{fma}\left(-0.041666666666666664, \frac{{\left(\mathsf{log1p}\left(x\right)\right)}^{4} - {\log x}^{4}}{n}, \left({\left(\mathsf{log1p}\left(x\right)\right)}^{3} - {\log x}^{3}\right) \cdot -0.16666666666666666\right)}{-n}\right)}{n}\right) - \log x}{n}\\ \mathbf{else}:\\ \;\;\;\;e^{\frac{x}{n}} - {x}^{\left({n}^{-1}\right)}\\ \end{array} \]
    5. Add Preprocessing

    Alternative 3: 82.4% accurate, 0.2× speedup?

    \[\begin{array}{l} \\ \begin{array}{l} t_0 := {x}^{\left({n}^{-1}\right)}\\ t_1 := {\left(x + 1\right)}^{\left({n}^{-1}\right)} - t\_0\\ \mathbf{if}\;t\_1 \leq -0.0001:\\ \;\;\;\;1 - t\_0\\ \mathbf{elif}\;t\_1 \leq 4 \cdot 10^{-12}:\\ \;\;\;\;\frac{\mathsf{log1p}\left(x\right) - \log x}{n}\\ \mathbf{else}:\\ \;\;\;\;\mathsf{fma}\left(\frac{x}{n \cdot n} \cdot 0.5, x, 1\right) - t\_0\\ \end{array} \end{array} \]
    (FPCore (x n)
     :precision binary64
     (let* ((t_0 (pow x (pow n -1.0))) (t_1 (- (pow (+ x 1.0) (pow n -1.0)) t_0)))
       (if (<= t_1 -0.0001)
         (- 1.0 t_0)
         (if (<= t_1 4e-12)
           (/ (- (log1p x) (log x)) n)
           (- (fma (* (/ x (* n n)) 0.5) x 1.0) t_0)))))
    double code(double x, double n) {
    	double t_0 = pow(x, pow(n, -1.0));
    	double t_1 = pow((x + 1.0), pow(n, -1.0)) - t_0;
    	double tmp;
    	if (t_1 <= -0.0001) {
    		tmp = 1.0 - t_0;
    	} else if (t_1 <= 4e-12) {
    		tmp = (log1p(x) - log(x)) / n;
    	} else {
    		tmp = fma(((x / (n * n)) * 0.5), x, 1.0) - t_0;
    	}
    	return tmp;
    }
    
    function code(x, n)
    	t_0 = x ^ (n ^ -1.0)
    	t_1 = Float64((Float64(x + 1.0) ^ (n ^ -1.0)) - t_0)
    	tmp = 0.0
    	if (t_1 <= -0.0001)
    		tmp = Float64(1.0 - t_0);
    	elseif (t_1 <= 4e-12)
    		tmp = Float64(Float64(log1p(x) - log(x)) / n);
    	else
    		tmp = Float64(fma(Float64(Float64(x / Float64(n * n)) * 0.5), x, 1.0) - t_0);
    	end
    	return tmp
    end
    
    code[x_, n_] := Block[{t$95$0 = N[Power[x, N[Power[n, -1.0], $MachinePrecision]], $MachinePrecision]}, Block[{t$95$1 = N[(N[Power[N[(x + 1.0), $MachinePrecision], N[Power[n, -1.0], $MachinePrecision]], $MachinePrecision] - t$95$0), $MachinePrecision]}, If[LessEqual[t$95$1, -0.0001], N[(1.0 - t$95$0), $MachinePrecision], If[LessEqual[t$95$1, 4e-12], N[(N[(N[Log[1 + x], $MachinePrecision] - N[Log[x], $MachinePrecision]), $MachinePrecision] / n), $MachinePrecision], N[(N[(N[(N[(x / N[(n * n), $MachinePrecision]), $MachinePrecision] * 0.5), $MachinePrecision] * x + 1.0), $MachinePrecision] - t$95$0), $MachinePrecision]]]]]
    
    \begin{array}{l}
    
    \\
    \begin{array}{l}
    t_0 := {x}^{\left({n}^{-1}\right)}\\
    t_1 := {\left(x + 1\right)}^{\left({n}^{-1}\right)} - t\_0\\
    \mathbf{if}\;t\_1 \leq -0.0001:\\
    \;\;\;\;1 - t\_0\\
    
    \mathbf{elif}\;t\_1 \leq 4 \cdot 10^{-12}:\\
    \;\;\;\;\frac{\mathsf{log1p}\left(x\right) - \log x}{n}\\
    
    \mathbf{else}:\\
    \;\;\;\;\mathsf{fma}\left(\frac{x}{n \cdot n} \cdot 0.5, x, 1\right) - t\_0\\
    
    
    \end{array}
    \end{array}
    
    Derivation
    1. Split input into 3 regimes
    2. if (-.f64 (pow.f64 (+.f64 x #s(literal 1 binary64)) (/.f64 #s(literal 1 binary64) n)) (pow.f64 x (/.f64 #s(literal 1 binary64) n))) < -1.00000000000000005e-4

      1. Initial program 99.6%

        \[{\left(x + 1\right)}^{\left(\frac{1}{n}\right)} - {x}^{\left(\frac{1}{n}\right)} \]
      2. Add Preprocessing
      3. Taylor expanded in x around 0

        \[\leadsto \color{blue}{1} - {x}^{\left(\frac{1}{n}\right)} \]
      4. Step-by-step derivation
        1. Applied rewrites99.6%

          \[\leadsto \color{blue}{1} - {x}^{\left(\frac{1}{n}\right)} \]

        if -1.00000000000000005e-4 < (-.f64 (pow.f64 (+.f64 x #s(literal 1 binary64)) (/.f64 #s(literal 1 binary64) n)) (pow.f64 x (/.f64 #s(literal 1 binary64) n))) < 3.99999999999999992e-12

        1. Initial program 39.6%

          \[{\left(x + 1\right)}^{\left(\frac{1}{n}\right)} - {x}^{\left(\frac{1}{n}\right)} \]
        2. Add Preprocessing
        3. Taylor expanded in n around inf

          \[\leadsto \color{blue}{\frac{\log \left(1 + x\right) - \log x}{n}} \]
        4. Step-by-step derivation
          1. lower-/.f64N/A

            \[\leadsto \color{blue}{\frac{\log \left(1 + x\right) - \log x}{n}} \]
          2. lower--.f64N/A

            \[\leadsto \frac{\color{blue}{\log \left(1 + x\right) - \log x}}{n} \]
          3. lower-log1p.f64N/A

            \[\leadsto \frac{\color{blue}{\mathsf{log1p}\left(x\right)} - \log x}{n} \]
          4. lower-log.f6479.8

            \[\leadsto \frac{\mathsf{log1p}\left(x\right) - \color{blue}{\log x}}{n} \]
        5. Applied rewrites79.8%

          \[\leadsto \color{blue}{\frac{\mathsf{log1p}\left(x\right) - \log x}{n}} \]

        if 3.99999999999999992e-12 < (-.f64 (pow.f64 (+.f64 x #s(literal 1 binary64)) (/.f64 #s(literal 1 binary64) n)) (pow.f64 x (/.f64 #s(literal 1 binary64) n)))

        1. Initial program 50.5%

          \[{\left(x + 1\right)}^{\left(\frac{1}{n}\right)} - {x}^{\left(\frac{1}{n}\right)} \]
        2. Add Preprocessing
        3. Taylor expanded in x around 0

          \[\leadsto \color{blue}{\left(1 + x \cdot \left(x \cdot \left(\frac{1}{2} \cdot \frac{1}{{n}^{2}} - \frac{1}{2} \cdot \frac{1}{n}\right) + \frac{1}{n}\right)\right)} - {x}^{\left(\frac{1}{n}\right)} \]
        4. Step-by-step derivation
          1. +-commutativeN/A

            \[\leadsto \color{blue}{\left(x \cdot \left(x \cdot \left(\frac{1}{2} \cdot \frac{1}{{n}^{2}} - \frac{1}{2} \cdot \frac{1}{n}\right) + \frac{1}{n}\right) + 1\right)} - {x}^{\left(\frac{1}{n}\right)} \]
          2. *-commutativeN/A

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

            \[\leadsto \color{blue}{\mathsf{fma}\left(x \cdot \left(\frac{1}{2} \cdot \frac{1}{{n}^{2}} - \frac{1}{2} \cdot \frac{1}{n}\right) + \frac{1}{n}, x, 1\right)} - {x}^{\left(\frac{1}{n}\right)} \]
        5. Applied rewrites65.5%

          \[\leadsto \color{blue}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{-0.5 + \frac{0.5}{n}}{n}, x, \frac{1}{n}\right), x, 1\right)} - {x}^{\left(\frac{1}{n}\right)} \]
        6. Taylor expanded in n around 0

          \[\leadsto \mathsf{fma}\left(\frac{1}{2} \cdot \frac{x}{{n}^{2}}, x, 1\right) - {x}^{\left(\frac{1}{n}\right)} \]
        7. Step-by-step derivation
          1. Applied rewrites69.7%

            \[\leadsto \mathsf{fma}\left(\frac{x}{n \cdot n} \cdot 0.5, x, 1\right) - {x}^{\left(\frac{1}{n}\right)} \]
        8. Recombined 3 regimes into one program.
        9. Final simplification81.0%

          \[\leadsto \begin{array}{l} \mathbf{if}\;{\left(x + 1\right)}^{\left({n}^{-1}\right)} - {x}^{\left({n}^{-1}\right)} \leq -0.0001:\\ \;\;\;\;1 - {x}^{\left({n}^{-1}\right)}\\ \mathbf{elif}\;{\left(x + 1\right)}^{\left({n}^{-1}\right)} - {x}^{\left({n}^{-1}\right)} \leq 4 \cdot 10^{-12}:\\ \;\;\;\;\frac{\mathsf{log1p}\left(x\right) - \log x}{n}\\ \mathbf{else}:\\ \;\;\;\;\mathsf{fma}\left(\frac{x}{n \cdot n} \cdot 0.5, x, 1\right) - {x}^{\left({n}^{-1}\right)}\\ \end{array} \]
        10. Add Preprocessing

        Alternative 4: 55.6% accurate, 0.2× speedup?

        \[\begin{array}{l} \\ \begin{array}{l} t_0 := {x}^{\left({n}^{-1}\right)}\\ t_1 := {\left(x + 1\right)}^{\left({n}^{-1}\right)} - t\_0\\ \mathbf{if}\;t\_1 \leq -0.0001:\\ \;\;\;\;1 - t\_0\\ \mathbf{elif}\;t\_1 \leq 0:\\ \;\;\;\;\frac{\frac{\log x}{n \cdot x} - \frac{-1}{x}}{n}\\ \mathbf{else}:\\ \;\;\;\;\mathsf{fma}\left(\frac{x}{n \cdot n} \cdot 0.5, x, 1\right) - t\_0\\ \end{array} \end{array} \]
        (FPCore (x n)
         :precision binary64
         (let* ((t_0 (pow x (pow n -1.0))) (t_1 (- (pow (+ x 1.0) (pow n -1.0)) t_0)))
           (if (<= t_1 -0.0001)
             (- 1.0 t_0)
             (if (<= t_1 0.0)
               (/ (- (/ (log x) (* n x)) (/ -1.0 x)) n)
               (- (fma (* (/ x (* n n)) 0.5) x 1.0) t_0)))))
        double code(double x, double n) {
        	double t_0 = pow(x, pow(n, -1.0));
        	double t_1 = pow((x + 1.0), pow(n, -1.0)) - t_0;
        	double tmp;
        	if (t_1 <= -0.0001) {
        		tmp = 1.0 - t_0;
        	} else if (t_1 <= 0.0) {
        		tmp = ((log(x) / (n * x)) - (-1.0 / x)) / n;
        	} else {
        		tmp = fma(((x / (n * n)) * 0.5), x, 1.0) - t_0;
        	}
        	return tmp;
        }
        
        function code(x, n)
        	t_0 = x ^ (n ^ -1.0)
        	t_1 = Float64((Float64(x + 1.0) ^ (n ^ -1.0)) - t_0)
        	tmp = 0.0
        	if (t_1 <= -0.0001)
        		tmp = Float64(1.0 - t_0);
        	elseif (t_1 <= 0.0)
        		tmp = Float64(Float64(Float64(log(x) / Float64(n * x)) - Float64(-1.0 / x)) / n);
        	else
        		tmp = Float64(fma(Float64(Float64(x / Float64(n * n)) * 0.5), x, 1.0) - t_0);
        	end
        	return tmp
        end
        
        code[x_, n_] := Block[{t$95$0 = N[Power[x, N[Power[n, -1.0], $MachinePrecision]], $MachinePrecision]}, Block[{t$95$1 = N[(N[Power[N[(x + 1.0), $MachinePrecision], N[Power[n, -1.0], $MachinePrecision]], $MachinePrecision] - t$95$0), $MachinePrecision]}, If[LessEqual[t$95$1, -0.0001], N[(1.0 - t$95$0), $MachinePrecision], If[LessEqual[t$95$1, 0.0], N[(N[(N[(N[Log[x], $MachinePrecision] / N[(n * x), $MachinePrecision]), $MachinePrecision] - N[(-1.0 / x), $MachinePrecision]), $MachinePrecision] / n), $MachinePrecision], N[(N[(N[(N[(x / N[(n * n), $MachinePrecision]), $MachinePrecision] * 0.5), $MachinePrecision] * x + 1.0), $MachinePrecision] - t$95$0), $MachinePrecision]]]]]
        
        \begin{array}{l}
        
        \\
        \begin{array}{l}
        t_0 := {x}^{\left({n}^{-1}\right)}\\
        t_1 := {\left(x + 1\right)}^{\left({n}^{-1}\right)} - t\_0\\
        \mathbf{if}\;t\_1 \leq -0.0001:\\
        \;\;\;\;1 - t\_0\\
        
        \mathbf{elif}\;t\_1 \leq 0:\\
        \;\;\;\;\frac{\frac{\log x}{n \cdot x} - \frac{-1}{x}}{n}\\
        
        \mathbf{else}:\\
        \;\;\;\;\mathsf{fma}\left(\frac{x}{n \cdot n} \cdot 0.5, x, 1\right) - t\_0\\
        
        
        \end{array}
        \end{array}
        
        Derivation
        1. Split input into 3 regimes
        2. if (-.f64 (pow.f64 (+.f64 x #s(literal 1 binary64)) (/.f64 #s(literal 1 binary64) n)) (pow.f64 x (/.f64 #s(literal 1 binary64) n))) < -1.00000000000000005e-4

          1. Initial program 99.6%

            \[{\left(x + 1\right)}^{\left(\frac{1}{n}\right)} - {x}^{\left(\frac{1}{n}\right)} \]
          2. Add Preprocessing
          3. Taylor expanded in x around 0

            \[\leadsto \color{blue}{1} - {x}^{\left(\frac{1}{n}\right)} \]
          4. Step-by-step derivation
            1. Applied rewrites99.6%

              \[\leadsto \color{blue}{1} - {x}^{\left(\frac{1}{n}\right)} \]

            if -1.00000000000000005e-4 < (-.f64 (pow.f64 (+.f64 x #s(literal 1 binary64)) (/.f64 #s(literal 1 binary64) n)) (pow.f64 x (/.f64 #s(literal 1 binary64) n))) < 0.0

            1. Initial program 39.6%

              \[{\left(x + 1\right)}^{\left(\frac{1}{n}\right)} - {x}^{\left(\frac{1}{n}\right)} \]
            2. Add Preprocessing
            3. Taylor expanded in x around inf

              \[\leadsto \color{blue}{\frac{e^{-1 \cdot \frac{\log \left(\frac{1}{x}\right)}{n}}}{n \cdot x}} \]
            4. Step-by-step derivation
              1. lower-/.f64N/A

                \[\leadsto \color{blue}{\frac{e^{-1 \cdot \frac{\log \left(\frac{1}{x}\right)}{n}}}{n \cdot x}} \]
              2. *-commutativeN/A

                \[\leadsto \frac{e^{\color{blue}{\frac{\log \left(\frac{1}{x}\right)}{n} \cdot -1}}}{n \cdot x} \]
              3. log-recN/A

                \[\leadsto \frac{e^{\frac{\color{blue}{\mathsf{neg}\left(\log x\right)}}{n} \cdot -1}}{n \cdot x} \]
              4. mul-1-negN/A

                \[\leadsto \frac{e^{\frac{\color{blue}{-1 \cdot \log x}}{n} \cdot -1}}{n \cdot x} \]
              5. *-commutativeN/A

                \[\leadsto \frac{e^{\color{blue}{-1 \cdot \frac{-1 \cdot \log x}{n}}}}{n \cdot x} \]
              6. associate-*r/N/A

                \[\leadsto \frac{e^{\color{blue}{\frac{-1 \cdot \left(-1 \cdot \log x\right)}{n}}}}{n \cdot x} \]
              7. mul-1-negN/A

                \[\leadsto \frac{e^{\frac{\color{blue}{\mathsf{neg}\left(-1 \cdot \log x\right)}}{n}}}{n \cdot x} \]
              8. distribute-lft-neg-inN/A

                \[\leadsto \frac{e^{\frac{\color{blue}{\left(\mathsf{neg}\left(-1\right)\right) \cdot \log x}}{n}}}{n \cdot x} \]
              9. metadata-evalN/A

                \[\leadsto \frac{e^{\frac{\color{blue}{1} \cdot \log x}{n}}}{n \cdot x} \]
              10. *-lft-identityN/A

                \[\leadsto \frac{e^{\frac{\color{blue}{\log x}}{n}}}{n \cdot x} \]
              11. lower-exp.f64N/A

                \[\leadsto \frac{\color{blue}{e^{\frac{\log x}{n}}}}{n \cdot x} \]
              12. lower-/.f64N/A

                \[\leadsto \frac{e^{\color{blue}{\frac{\log x}{n}}}}{n \cdot x} \]
              13. lower-log.f64N/A

                \[\leadsto \frac{e^{\frac{\color{blue}{\log x}}{n}}}{n \cdot x} \]
              14. lower-*.f6458.5

                \[\leadsto \frac{e^{\frac{\log x}{n}}}{\color{blue}{n \cdot x}} \]
            5. Applied rewrites58.5%

              \[\leadsto \color{blue}{\frac{e^{\frac{\log x}{n}}}{n \cdot x}} \]
            6. Taylor expanded in n around -inf

              \[\leadsto -1 \cdot \color{blue}{\frac{-1 \cdot \frac{\log x}{n \cdot x} - \frac{1}{x}}{n}} \]
            7. Step-by-step derivation
              1. Applied rewrites40.8%

                \[\leadsto -\frac{\frac{-\log x}{n \cdot x} - \frac{1}{x}}{n} \]

              if 0.0 < (-.f64 (pow.f64 (+.f64 x #s(literal 1 binary64)) (/.f64 #s(literal 1 binary64) n)) (pow.f64 x (/.f64 #s(literal 1 binary64) n)))

              1. Initial program 50.3%

                \[{\left(x + 1\right)}^{\left(\frac{1}{n}\right)} - {x}^{\left(\frac{1}{n}\right)} \]
              2. Add Preprocessing
              3. Taylor expanded in x around 0

                \[\leadsto \color{blue}{\left(1 + x \cdot \left(x \cdot \left(\frac{1}{2} \cdot \frac{1}{{n}^{2}} - \frac{1}{2} \cdot \frac{1}{n}\right) + \frac{1}{n}\right)\right)} - {x}^{\left(\frac{1}{n}\right)} \]
              4. Step-by-step derivation
                1. +-commutativeN/A

                  \[\leadsto \color{blue}{\left(x \cdot \left(x \cdot \left(\frac{1}{2} \cdot \frac{1}{{n}^{2}} - \frac{1}{2} \cdot \frac{1}{n}\right) + \frac{1}{n}\right) + 1\right)} - {x}^{\left(\frac{1}{n}\right)} \]
                2. *-commutativeN/A

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

                  \[\leadsto \color{blue}{\mathsf{fma}\left(x \cdot \left(\frac{1}{2} \cdot \frac{1}{{n}^{2}} - \frac{1}{2} \cdot \frac{1}{n}\right) + \frac{1}{n}, x, 1\right)} - {x}^{\left(\frac{1}{n}\right)} \]
              5. Applied rewrites65.0%

                \[\leadsto \color{blue}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{-0.5 + \frac{0.5}{n}}{n}, x, \frac{1}{n}\right), x, 1\right)} - {x}^{\left(\frac{1}{n}\right)} \]
              6. Taylor expanded in n around 0

                \[\leadsto \mathsf{fma}\left(\frac{1}{2} \cdot \frac{x}{{n}^{2}}, x, 1\right) - {x}^{\left(\frac{1}{n}\right)} \]
              7. Step-by-step derivation
                1. Applied rewrites69.1%

                  \[\leadsto \mathsf{fma}\left(\frac{x}{n \cdot n} \cdot 0.5, x, 1\right) - {x}^{\left(\frac{1}{n}\right)} \]
              8. Recombined 3 regimes into one program.
              9. Final simplification54.0%

                \[\leadsto \begin{array}{l} \mathbf{if}\;{\left(x + 1\right)}^{\left({n}^{-1}\right)} - {x}^{\left({n}^{-1}\right)} \leq -0.0001:\\ \;\;\;\;1 - {x}^{\left({n}^{-1}\right)}\\ \mathbf{elif}\;{\left(x + 1\right)}^{\left({n}^{-1}\right)} - {x}^{\left({n}^{-1}\right)} \leq 0:\\ \;\;\;\;\frac{\frac{\log x}{n \cdot x} - \frac{-1}{x}}{n}\\ \mathbf{else}:\\ \;\;\;\;\mathsf{fma}\left(\frac{x}{n \cdot n} \cdot 0.5, x, 1\right) - {x}^{\left({n}^{-1}\right)}\\ \end{array} \]
              10. Add Preprocessing

              Alternative 5: 55.6% accurate, 0.2× speedup?

              \[\begin{array}{l} \\ \begin{array}{l} t_0 := {x}^{\left({n}^{-1}\right)}\\ t_1 := {\left(x + 1\right)}^{\left({n}^{-1}\right)} - t\_0\\ \mathbf{if}\;t\_1 \leq -0.0001:\\ \;\;\;\;1 - t\_0\\ \mathbf{elif}\;t\_1 \leq 0:\\ \;\;\;\;\frac{\frac{\frac{\log x}{n} + 1}{x}}{n}\\ \mathbf{else}:\\ \;\;\;\;\mathsf{fma}\left(\frac{x}{n \cdot n} \cdot 0.5, x, 1\right) - t\_0\\ \end{array} \end{array} \]
              (FPCore (x n)
               :precision binary64
               (let* ((t_0 (pow x (pow n -1.0))) (t_1 (- (pow (+ x 1.0) (pow n -1.0)) t_0)))
                 (if (<= t_1 -0.0001)
                   (- 1.0 t_0)
                   (if (<= t_1 0.0)
                     (/ (/ (+ (/ (log x) n) 1.0) x) n)
                     (- (fma (* (/ x (* n n)) 0.5) x 1.0) t_0)))))
              double code(double x, double n) {
              	double t_0 = pow(x, pow(n, -1.0));
              	double t_1 = pow((x + 1.0), pow(n, -1.0)) - t_0;
              	double tmp;
              	if (t_1 <= -0.0001) {
              		tmp = 1.0 - t_0;
              	} else if (t_1 <= 0.0) {
              		tmp = (((log(x) / n) + 1.0) / x) / n;
              	} else {
              		tmp = fma(((x / (n * n)) * 0.5), x, 1.0) - t_0;
              	}
              	return tmp;
              }
              
              function code(x, n)
              	t_0 = x ^ (n ^ -1.0)
              	t_1 = Float64((Float64(x + 1.0) ^ (n ^ -1.0)) - t_0)
              	tmp = 0.0
              	if (t_1 <= -0.0001)
              		tmp = Float64(1.0 - t_0);
              	elseif (t_1 <= 0.0)
              		tmp = Float64(Float64(Float64(Float64(log(x) / n) + 1.0) / x) / n);
              	else
              		tmp = Float64(fma(Float64(Float64(x / Float64(n * n)) * 0.5), x, 1.0) - t_0);
              	end
              	return tmp
              end
              
              code[x_, n_] := Block[{t$95$0 = N[Power[x, N[Power[n, -1.0], $MachinePrecision]], $MachinePrecision]}, Block[{t$95$1 = N[(N[Power[N[(x + 1.0), $MachinePrecision], N[Power[n, -1.0], $MachinePrecision]], $MachinePrecision] - t$95$0), $MachinePrecision]}, If[LessEqual[t$95$1, -0.0001], N[(1.0 - t$95$0), $MachinePrecision], If[LessEqual[t$95$1, 0.0], N[(N[(N[(N[(N[Log[x], $MachinePrecision] / n), $MachinePrecision] + 1.0), $MachinePrecision] / x), $MachinePrecision] / n), $MachinePrecision], N[(N[(N[(N[(x / N[(n * n), $MachinePrecision]), $MachinePrecision] * 0.5), $MachinePrecision] * x + 1.0), $MachinePrecision] - t$95$0), $MachinePrecision]]]]]
              
              \begin{array}{l}
              
              \\
              \begin{array}{l}
              t_0 := {x}^{\left({n}^{-1}\right)}\\
              t_1 := {\left(x + 1\right)}^{\left({n}^{-1}\right)} - t\_0\\
              \mathbf{if}\;t\_1 \leq -0.0001:\\
              \;\;\;\;1 - t\_0\\
              
              \mathbf{elif}\;t\_1 \leq 0:\\
              \;\;\;\;\frac{\frac{\frac{\log x}{n} + 1}{x}}{n}\\
              
              \mathbf{else}:\\
              \;\;\;\;\mathsf{fma}\left(\frac{x}{n \cdot n} \cdot 0.5, x, 1\right) - t\_0\\
              
              
              \end{array}
              \end{array}
              
              Derivation
              1. Split input into 3 regimes
              2. if (-.f64 (pow.f64 (+.f64 x #s(literal 1 binary64)) (/.f64 #s(literal 1 binary64) n)) (pow.f64 x (/.f64 #s(literal 1 binary64) n))) < -1.00000000000000005e-4

                1. Initial program 99.6%

                  \[{\left(x + 1\right)}^{\left(\frac{1}{n}\right)} - {x}^{\left(\frac{1}{n}\right)} \]
                2. Add Preprocessing
                3. Taylor expanded in x around 0

                  \[\leadsto \color{blue}{1} - {x}^{\left(\frac{1}{n}\right)} \]
                4. Step-by-step derivation
                  1. Applied rewrites99.6%

                    \[\leadsto \color{blue}{1} - {x}^{\left(\frac{1}{n}\right)} \]

                  if -1.00000000000000005e-4 < (-.f64 (pow.f64 (+.f64 x #s(literal 1 binary64)) (/.f64 #s(literal 1 binary64) n)) (pow.f64 x (/.f64 #s(literal 1 binary64) n))) < 0.0

                  1. Initial program 39.6%

                    \[{\left(x + 1\right)}^{\left(\frac{1}{n}\right)} - {x}^{\left(\frac{1}{n}\right)} \]
                  2. Add Preprocessing
                  3. Taylor expanded in x around inf

                    \[\leadsto \color{blue}{\frac{e^{-1 \cdot \frac{\log \left(\frac{1}{x}\right)}{n}}}{n \cdot x}} \]
                  4. Step-by-step derivation
                    1. lower-/.f64N/A

                      \[\leadsto \color{blue}{\frac{e^{-1 \cdot \frac{\log \left(\frac{1}{x}\right)}{n}}}{n \cdot x}} \]
                    2. *-commutativeN/A

                      \[\leadsto \frac{e^{\color{blue}{\frac{\log \left(\frac{1}{x}\right)}{n} \cdot -1}}}{n \cdot x} \]
                    3. log-recN/A

                      \[\leadsto \frac{e^{\frac{\color{blue}{\mathsf{neg}\left(\log x\right)}}{n} \cdot -1}}{n \cdot x} \]
                    4. mul-1-negN/A

                      \[\leadsto \frac{e^{\frac{\color{blue}{-1 \cdot \log x}}{n} \cdot -1}}{n \cdot x} \]
                    5. *-commutativeN/A

                      \[\leadsto \frac{e^{\color{blue}{-1 \cdot \frac{-1 \cdot \log x}{n}}}}{n \cdot x} \]
                    6. associate-*r/N/A

                      \[\leadsto \frac{e^{\color{blue}{\frac{-1 \cdot \left(-1 \cdot \log x\right)}{n}}}}{n \cdot x} \]
                    7. mul-1-negN/A

                      \[\leadsto \frac{e^{\frac{\color{blue}{\mathsf{neg}\left(-1 \cdot \log x\right)}}{n}}}{n \cdot x} \]
                    8. distribute-lft-neg-inN/A

                      \[\leadsto \frac{e^{\frac{\color{blue}{\left(\mathsf{neg}\left(-1\right)\right) \cdot \log x}}{n}}}{n \cdot x} \]
                    9. metadata-evalN/A

                      \[\leadsto \frac{e^{\frac{\color{blue}{1} \cdot \log x}{n}}}{n \cdot x} \]
                    10. *-lft-identityN/A

                      \[\leadsto \frac{e^{\frac{\color{blue}{\log x}}{n}}}{n \cdot x} \]
                    11. lower-exp.f64N/A

                      \[\leadsto \frac{\color{blue}{e^{\frac{\log x}{n}}}}{n \cdot x} \]
                    12. lower-/.f64N/A

                      \[\leadsto \frac{e^{\color{blue}{\frac{\log x}{n}}}}{n \cdot x} \]
                    13. lower-log.f64N/A

                      \[\leadsto \frac{e^{\frac{\color{blue}{\log x}}{n}}}{n \cdot x} \]
                    14. lower-*.f6458.5

                      \[\leadsto \frac{e^{\frac{\log x}{n}}}{\color{blue}{n \cdot x}} \]
                  5. Applied rewrites58.5%

                    \[\leadsto \color{blue}{\frac{e^{\frac{\log x}{n}}}{n \cdot x}} \]
                  6. Taylor expanded in n around inf

                    \[\leadsto \frac{\frac{1}{x} + \frac{\log x}{n \cdot x}}{\color{blue}{n}} \]
                  7. Step-by-step derivation
                    1. Applied rewrites40.8%

                      \[\leadsto \frac{\frac{\frac{\log x}{n} + 1}{x}}{\color{blue}{n}} \]

                    if 0.0 < (-.f64 (pow.f64 (+.f64 x #s(literal 1 binary64)) (/.f64 #s(literal 1 binary64) n)) (pow.f64 x (/.f64 #s(literal 1 binary64) n)))

                    1. Initial program 50.3%

                      \[{\left(x + 1\right)}^{\left(\frac{1}{n}\right)} - {x}^{\left(\frac{1}{n}\right)} \]
                    2. Add Preprocessing
                    3. Taylor expanded in x around 0

                      \[\leadsto \color{blue}{\left(1 + x \cdot \left(x \cdot \left(\frac{1}{2} \cdot \frac{1}{{n}^{2}} - \frac{1}{2} \cdot \frac{1}{n}\right) + \frac{1}{n}\right)\right)} - {x}^{\left(\frac{1}{n}\right)} \]
                    4. Step-by-step derivation
                      1. +-commutativeN/A

                        \[\leadsto \color{blue}{\left(x \cdot \left(x \cdot \left(\frac{1}{2} \cdot \frac{1}{{n}^{2}} - \frac{1}{2} \cdot \frac{1}{n}\right) + \frac{1}{n}\right) + 1\right)} - {x}^{\left(\frac{1}{n}\right)} \]
                      2. *-commutativeN/A

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

                        \[\leadsto \color{blue}{\mathsf{fma}\left(x \cdot \left(\frac{1}{2} \cdot \frac{1}{{n}^{2}} - \frac{1}{2} \cdot \frac{1}{n}\right) + \frac{1}{n}, x, 1\right)} - {x}^{\left(\frac{1}{n}\right)} \]
                    5. Applied rewrites65.0%

                      \[\leadsto \color{blue}{\mathsf{fma}\left(\mathsf{fma}\left(\frac{-0.5 + \frac{0.5}{n}}{n}, x, \frac{1}{n}\right), x, 1\right)} - {x}^{\left(\frac{1}{n}\right)} \]
                    6. Taylor expanded in n around 0

                      \[\leadsto \mathsf{fma}\left(\frac{1}{2} \cdot \frac{x}{{n}^{2}}, x, 1\right) - {x}^{\left(\frac{1}{n}\right)} \]
                    7. Step-by-step derivation
                      1. Applied rewrites69.1%

                        \[\leadsto \mathsf{fma}\left(\frac{x}{n \cdot n} \cdot 0.5, x, 1\right) - {x}^{\left(\frac{1}{n}\right)} \]
                    8. Recombined 3 regimes into one program.
                    9. Final simplification54.0%

                      \[\leadsto \begin{array}{l} \mathbf{if}\;{\left(x + 1\right)}^{\left({n}^{-1}\right)} - {x}^{\left({n}^{-1}\right)} \leq -0.0001:\\ \;\;\;\;1 - {x}^{\left({n}^{-1}\right)}\\ \mathbf{elif}\;{\left(x + 1\right)}^{\left({n}^{-1}\right)} - {x}^{\left({n}^{-1}\right)} \leq 0:\\ \;\;\;\;\frac{\frac{\frac{\log x}{n} + 1}{x}}{n}\\ \mathbf{else}:\\ \;\;\;\;\mathsf{fma}\left(\frac{x}{n \cdot n} \cdot 0.5, x, 1\right) - {x}^{\left({n}^{-1}\right)}\\ \end{array} \]
                    10. Add Preprocessing

                    Alternative 6: 85.9% accurate, 0.3× speedup?

                    \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;{n}^{-1} \leq -5 \cdot 10^{-82}:\\ \;\;\;\;\frac{e^{\frac{\log x}{n}}}{n \cdot x}\\ \mathbf{elif}\;{n}^{-1} \leq 5 \cdot 10^{-9}:\\ \;\;\;\;\frac{\mathsf{fma}\left(0.5, \frac{{\left(\mathsf{log1p}\left(x\right)\right)}^{2} - {\log x}^{2}}{n}, \mathsf{log1p}\left(x\right)\right) - \log x}{n}\\ \mathbf{else}:\\ \;\;\;\;e^{\frac{x}{n}} - {x}^{\left({n}^{-1}\right)}\\ \end{array} \end{array} \]
                    (FPCore (x n)
                     :precision binary64
                     (if (<= (pow n -1.0) -5e-82)
                       (/ (exp (/ (log x) n)) (* n x))
                       (if (<= (pow n -1.0) 5e-9)
                         (/
                          (-
                           (fma 0.5 (/ (- (pow (log1p x) 2.0) (pow (log x) 2.0)) n) (log1p x))
                           (log x))
                          n)
                         (- (exp (/ x n)) (pow x (pow n -1.0))))))
                    double code(double x, double n) {
                    	double tmp;
                    	if (pow(n, -1.0) <= -5e-82) {
                    		tmp = exp((log(x) / n)) / (n * x);
                    	} else if (pow(n, -1.0) <= 5e-9) {
                    		tmp = (fma(0.5, ((pow(log1p(x), 2.0) - pow(log(x), 2.0)) / n), log1p(x)) - log(x)) / n;
                    	} else {
                    		tmp = exp((x / n)) - pow(x, pow(n, -1.0));
                    	}
                    	return tmp;
                    }
                    
                    function code(x, n)
                    	tmp = 0.0
                    	if ((n ^ -1.0) <= -5e-82)
                    		tmp = Float64(exp(Float64(log(x) / n)) / Float64(n * x));
                    	elseif ((n ^ -1.0) <= 5e-9)
                    		tmp = Float64(Float64(fma(0.5, Float64(Float64((log1p(x) ^ 2.0) - (log(x) ^ 2.0)) / n), log1p(x)) - log(x)) / n);
                    	else
                    		tmp = Float64(exp(Float64(x / n)) - (x ^ (n ^ -1.0)));
                    	end
                    	return tmp
                    end
                    
                    code[x_, n_] := If[LessEqual[N[Power[n, -1.0], $MachinePrecision], -5e-82], N[(N[Exp[N[(N[Log[x], $MachinePrecision] / n), $MachinePrecision]], $MachinePrecision] / N[(n * x), $MachinePrecision]), $MachinePrecision], If[LessEqual[N[Power[n, -1.0], $MachinePrecision], 5e-9], N[(N[(N[(0.5 * N[(N[(N[Power[N[Log[1 + x], $MachinePrecision], 2.0], $MachinePrecision] - N[Power[N[Log[x], $MachinePrecision], 2.0], $MachinePrecision]), $MachinePrecision] / n), $MachinePrecision] + N[Log[1 + x], $MachinePrecision]), $MachinePrecision] - N[Log[x], $MachinePrecision]), $MachinePrecision] / n), $MachinePrecision], N[(N[Exp[N[(x / n), $MachinePrecision]], $MachinePrecision] - N[Power[x, N[Power[n, -1.0], $MachinePrecision]], $MachinePrecision]), $MachinePrecision]]]
                    
                    \begin{array}{l}
                    
                    \\
                    \begin{array}{l}
                    \mathbf{if}\;{n}^{-1} \leq -5 \cdot 10^{-82}:\\
                    \;\;\;\;\frac{e^{\frac{\log x}{n}}}{n \cdot x}\\
                    
                    \mathbf{elif}\;{n}^{-1} \leq 5 \cdot 10^{-9}:\\
                    \;\;\;\;\frac{\mathsf{fma}\left(0.5, \frac{{\left(\mathsf{log1p}\left(x\right)\right)}^{2} - {\log x}^{2}}{n}, \mathsf{log1p}\left(x\right)\right) - \log x}{n}\\
                    
                    \mathbf{else}:\\
                    \;\;\;\;e^{\frac{x}{n}} - {x}^{\left({n}^{-1}\right)}\\
                    
                    
                    \end{array}
                    \end{array}
                    
                    Derivation
                    1. Split input into 3 regimes
                    2. if (/.f64 #s(literal 1 binary64) n) < -4.9999999999999998e-82

                      1. Initial program 81.2%

                        \[{\left(x + 1\right)}^{\left(\frac{1}{n}\right)} - {x}^{\left(\frac{1}{n}\right)} \]
                      2. Add Preprocessing
                      3. Taylor expanded in x around inf

                        \[\leadsto \color{blue}{\frac{e^{-1 \cdot \frac{\log \left(\frac{1}{x}\right)}{n}}}{n \cdot x}} \]
                      4. Step-by-step derivation
                        1. lower-/.f64N/A

                          \[\leadsto \color{blue}{\frac{e^{-1 \cdot \frac{\log \left(\frac{1}{x}\right)}{n}}}{n \cdot x}} \]
                        2. *-commutativeN/A

                          \[\leadsto \frac{e^{\color{blue}{\frac{\log \left(\frac{1}{x}\right)}{n} \cdot -1}}}{n \cdot x} \]
                        3. log-recN/A

                          \[\leadsto \frac{e^{\frac{\color{blue}{\mathsf{neg}\left(\log x\right)}}{n} \cdot -1}}{n \cdot x} \]
                        4. mul-1-negN/A

                          \[\leadsto \frac{e^{\frac{\color{blue}{-1 \cdot \log x}}{n} \cdot -1}}{n \cdot x} \]
                        5. *-commutativeN/A

                          \[\leadsto \frac{e^{\color{blue}{-1 \cdot \frac{-1 \cdot \log x}{n}}}}{n \cdot x} \]
                        6. associate-*r/N/A

                          \[\leadsto \frac{e^{\color{blue}{\frac{-1 \cdot \left(-1 \cdot \log x\right)}{n}}}}{n \cdot x} \]
                        7. mul-1-negN/A

                          \[\leadsto \frac{e^{\frac{\color{blue}{\mathsf{neg}\left(-1 \cdot \log x\right)}}{n}}}{n \cdot x} \]
                        8. distribute-lft-neg-inN/A

                          \[\leadsto \frac{e^{\frac{\color{blue}{\left(\mathsf{neg}\left(-1\right)\right) \cdot \log x}}{n}}}{n \cdot x} \]
                        9. metadata-evalN/A

                          \[\leadsto \frac{e^{\frac{\color{blue}{1} \cdot \log x}{n}}}{n \cdot x} \]
                        10. *-lft-identityN/A

                          \[\leadsto \frac{e^{\frac{\color{blue}{\log x}}{n}}}{n \cdot x} \]
                        11. lower-exp.f64N/A

                          \[\leadsto \frac{\color{blue}{e^{\frac{\log x}{n}}}}{n \cdot x} \]
                        12. lower-/.f64N/A

                          \[\leadsto \frac{e^{\color{blue}{\frac{\log x}{n}}}}{n \cdot x} \]
                        13. lower-log.f64N/A

                          \[\leadsto \frac{e^{\frac{\color{blue}{\log x}}{n}}}{n \cdot x} \]
                        14. lower-*.f6493.4

                          \[\leadsto \frac{e^{\frac{\log x}{n}}}{\color{blue}{n \cdot x}} \]
                      5. Applied rewrites93.4%

                        \[\leadsto \color{blue}{\frac{e^{\frac{\log x}{n}}}{n \cdot x}} \]

                      if -4.9999999999999998e-82 < (/.f64 #s(literal 1 binary64) n) < 5.0000000000000001e-9

                      1. Initial program 29.0%

                        \[{\left(x + 1\right)}^{\left(\frac{1}{n}\right)} - {x}^{\left(\frac{1}{n}\right)} \]
                      2. Add Preprocessing
                      3. Taylor expanded in n around inf

                        \[\leadsto \color{blue}{\frac{\left(\log \left(1 + x\right) + \frac{1}{2} \cdot \frac{{\log \left(1 + x\right)}^{2}}{n}\right) - \left(\log x + \frac{1}{2} \cdot \frac{{\log x}^{2}}{n}\right)}{n}} \]
                      4. Step-by-step derivation
                        1. lower-/.f64N/A

                          \[\leadsto \color{blue}{\frac{\left(\log \left(1 + x\right) + \frac{1}{2} \cdot \frac{{\log \left(1 + x\right)}^{2}}{n}\right) - \left(\log x + \frac{1}{2} \cdot \frac{{\log x}^{2}}{n}\right)}{n}} \]
                      5. Applied rewrites82.5%

                        \[\leadsto \color{blue}{\frac{\mathsf{fma}\left(0.5, \frac{{\left(\mathsf{log1p}\left(x\right)\right)}^{2} - {\log x}^{2}}{n}, \mathsf{log1p}\left(x\right)\right) - \log x}{n}} \]

                      if 5.0000000000000001e-9 < (/.f64 #s(literal 1 binary64) n)

                      1. Initial program 50.5%

                        \[{\left(x + 1\right)}^{\left(\frac{1}{n}\right)} - {x}^{\left(\frac{1}{n}\right)} \]
                      2. Add Preprocessing
                      3. Step-by-step derivation
                        1. lift-pow.f64N/A

                          \[\leadsto \color{blue}{{\left(x + 1\right)}^{\left(\frac{1}{n}\right)}} - {x}^{\left(\frac{1}{n}\right)} \]
                        2. pow-to-expN/A

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

                          \[\leadsto \color{blue}{e^{\log \left(x + 1\right) \cdot \frac{1}{n}}} - {x}^{\left(\frac{1}{n}\right)} \]
                        4. lift-/.f64N/A

                          \[\leadsto e^{\log \left(x + 1\right) \cdot \color{blue}{\frac{1}{n}}} - {x}^{\left(\frac{1}{n}\right)} \]
                        5. associate-*r/N/A

                          \[\leadsto e^{\color{blue}{\frac{\log \left(x + 1\right) \cdot 1}{n}}} - {x}^{\left(\frac{1}{n}\right)} \]
                        6. *-rgt-identityN/A

                          \[\leadsto e^{\frac{\color{blue}{\log \left(x + 1\right)}}{n}} - {x}^{\left(\frac{1}{n}\right)} \]
                        7. lower-/.f64N/A

                          \[\leadsto e^{\color{blue}{\frac{\log \left(x + 1\right)}{n}}} - {x}^{\left(\frac{1}{n}\right)} \]
                        8. lift-+.f64N/A

                          \[\leadsto e^{\frac{\log \color{blue}{\left(x + 1\right)}}{n}} - {x}^{\left(\frac{1}{n}\right)} \]
                        9. +-commutativeN/A

                          \[\leadsto e^{\frac{\log \color{blue}{\left(1 + x\right)}}{n}} - {x}^{\left(\frac{1}{n}\right)} \]
                        10. lower-log1p.f64100.0

                          \[\leadsto e^{\frac{\color{blue}{\mathsf{log1p}\left(x\right)}}{n}} - {x}^{\left(\frac{1}{n}\right)} \]
                      4. Applied rewrites100.0%

                        \[\leadsto \color{blue}{e^{\frac{\mathsf{log1p}\left(x\right)}{n}}} - {x}^{\left(\frac{1}{n}\right)} \]
                      5. Taylor expanded in x around 0

                        \[\leadsto e^{\color{blue}{\frac{x}{n}}} - {x}^{\left(\frac{1}{n}\right)} \]
                      6. Step-by-step derivation
                        1. lower-/.f64100.0

                          \[\leadsto e^{\color{blue}{\frac{x}{n}}} - {x}^{\left(\frac{1}{n}\right)} \]
                      7. Applied rewrites100.0%

                        \[\leadsto e^{\color{blue}{\frac{x}{n}}} - {x}^{\left(\frac{1}{n}\right)} \]
                    3. Recombined 3 regimes into one program.
                    4. Final simplification89.0%

                      \[\leadsto \begin{array}{l} \mathbf{if}\;{n}^{-1} \leq -5 \cdot 10^{-82}:\\ \;\;\;\;\frac{e^{\frac{\log x}{n}}}{n \cdot x}\\ \mathbf{elif}\;{n}^{-1} \leq 5 \cdot 10^{-9}:\\ \;\;\;\;\frac{\mathsf{fma}\left(0.5, \frac{{\left(\mathsf{log1p}\left(x\right)\right)}^{2} - {\log x}^{2}}{n}, \mathsf{log1p}\left(x\right)\right) - \log x}{n}\\ \mathbf{else}:\\ \;\;\;\;e^{\frac{x}{n}} - {x}^{\left({n}^{-1}\right)}\\ \end{array} \]
                    5. Add Preprocessing

                    Alternative 7: 55.3% accurate, 0.4× speedup?

                    \[\begin{array}{l} \\ \begin{array}{l} t_0 := {x}^{\left({n}^{-1}\right)}\\ \mathbf{if}\;{n}^{-1} \leq -1 \cdot 10^{-6}:\\ \;\;\;\;1 - t\_0\\ \mathbf{elif}\;{n}^{-1} \leq 5 \cdot 10^{-9}:\\ \;\;\;\;\frac{\frac{\frac{\log x}{n} + 1}{x}}{n}\\ \mathbf{elif}\;{n}^{-1} \leq 2 \cdot 10^{+158}:\\ \;\;\;\;\left(\frac{x}{n} + 1\right) - t\_0\\ \mathbf{else}:\\ \;\;\;\;{\left(\left(n \cdot x\right) \cdot \left(n \cdot x\right)\right)}^{-0.5}\\ \end{array} \end{array} \]
                    (FPCore (x n)
                     :precision binary64
                     (let* ((t_0 (pow x (pow n -1.0))))
                       (if (<= (pow n -1.0) -1e-6)
                         (- 1.0 t_0)
                         (if (<= (pow n -1.0) 5e-9)
                           (/ (/ (+ (/ (log x) n) 1.0) x) n)
                           (if (<= (pow n -1.0) 2e+158)
                             (- (+ (/ x n) 1.0) t_0)
                             (pow (* (* n x) (* n x)) -0.5))))))
                    double code(double x, double n) {
                    	double t_0 = pow(x, pow(n, -1.0));
                    	double tmp;
                    	if (pow(n, -1.0) <= -1e-6) {
                    		tmp = 1.0 - t_0;
                    	} else if (pow(n, -1.0) <= 5e-9) {
                    		tmp = (((log(x) / n) + 1.0) / x) / n;
                    	} else if (pow(n, -1.0) <= 2e+158) {
                    		tmp = ((x / n) + 1.0) - t_0;
                    	} else {
                    		tmp = pow(((n * x) * (n * x)), -0.5);
                    	}
                    	return tmp;
                    }
                    
                    real(8) function code(x, n)
                        real(8), intent (in) :: x
                        real(8), intent (in) :: n
                        real(8) :: t_0
                        real(8) :: tmp
                        t_0 = x ** (n ** (-1.0d0))
                        if ((n ** (-1.0d0)) <= (-1d-6)) then
                            tmp = 1.0d0 - t_0
                        else if ((n ** (-1.0d0)) <= 5d-9) then
                            tmp = (((log(x) / n) + 1.0d0) / x) / n
                        else if ((n ** (-1.0d0)) <= 2d+158) then
                            tmp = ((x / n) + 1.0d0) - t_0
                        else
                            tmp = ((n * x) * (n * x)) ** (-0.5d0)
                        end if
                        code = tmp
                    end function
                    
                    public static double code(double x, double n) {
                    	double t_0 = Math.pow(x, Math.pow(n, -1.0));
                    	double tmp;
                    	if (Math.pow(n, -1.0) <= -1e-6) {
                    		tmp = 1.0 - t_0;
                    	} else if (Math.pow(n, -1.0) <= 5e-9) {
                    		tmp = (((Math.log(x) / n) + 1.0) / x) / n;
                    	} else if (Math.pow(n, -1.0) <= 2e+158) {
                    		tmp = ((x / n) + 1.0) - t_0;
                    	} else {
                    		tmp = Math.pow(((n * x) * (n * x)), -0.5);
                    	}
                    	return tmp;
                    }
                    
                    def code(x, n):
                    	t_0 = math.pow(x, math.pow(n, -1.0))
                    	tmp = 0
                    	if math.pow(n, -1.0) <= -1e-6:
                    		tmp = 1.0 - t_0
                    	elif math.pow(n, -1.0) <= 5e-9:
                    		tmp = (((math.log(x) / n) + 1.0) / x) / n
                    	elif math.pow(n, -1.0) <= 2e+158:
                    		tmp = ((x / n) + 1.0) - t_0
                    	else:
                    		tmp = math.pow(((n * x) * (n * x)), -0.5)
                    	return tmp
                    
                    function code(x, n)
                    	t_0 = x ^ (n ^ -1.0)
                    	tmp = 0.0
                    	if ((n ^ -1.0) <= -1e-6)
                    		tmp = Float64(1.0 - t_0);
                    	elseif ((n ^ -1.0) <= 5e-9)
                    		tmp = Float64(Float64(Float64(Float64(log(x) / n) + 1.0) / x) / n);
                    	elseif ((n ^ -1.0) <= 2e+158)
                    		tmp = Float64(Float64(Float64(x / n) + 1.0) - t_0);
                    	else
                    		tmp = Float64(Float64(n * x) * Float64(n * x)) ^ -0.5;
                    	end
                    	return tmp
                    end
                    
                    function tmp_2 = code(x, n)
                    	t_0 = x ^ (n ^ -1.0);
                    	tmp = 0.0;
                    	if ((n ^ -1.0) <= -1e-6)
                    		tmp = 1.0 - t_0;
                    	elseif ((n ^ -1.0) <= 5e-9)
                    		tmp = (((log(x) / n) + 1.0) / x) / n;
                    	elseif ((n ^ -1.0) <= 2e+158)
                    		tmp = ((x / n) + 1.0) - t_0;
                    	else
                    		tmp = ((n * x) * (n * x)) ^ -0.5;
                    	end
                    	tmp_2 = tmp;
                    end
                    
                    code[x_, n_] := Block[{t$95$0 = N[Power[x, N[Power[n, -1.0], $MachinePrecision]], $MachinePrecision]}, If[LessEqual[N[Power[n, -1.0], $MachinePrecision], -1e-6], N[(1.0 - t$95$0), $MachinePrecision], If[LessEqual[N[Power[n, -1.0], $MachinePrecision], 5e-9], N[(N[(N[(N[(N[Log[x], $MachinePrecision] / n), $MachinePrecision] + 1.0), $MachinePrecision] / x), $MachinePrecision] / n), $MachinePrecision], If[LessEqual[N[Power[n, -1.0], $MachinePrecision], 2e+158], N[(N[(N[(x / n), $MachinePrecision] + 1.0), $MachinePrecision] - t$95$0), $MachinePrecision], N[Power[N[(N[(n * x), $MachinePrecision] * N[(n * x), $MachinePrecision]), $MachinePrecision], -0.5], $MachinePrecision]]]]]
                    
                    \begin{array}{l}
                    
                    \\
                    \begin{array}{l}
                    t_0 := {x}^{\left({n}^{-1}\right)}\\
                    \mathbf{if}\;{n}^{-1} \leq -1 \cdot 10^{-6}:\\
                    \;\;\;\;1 - t\_0\\
                    
                    \mathbf{elif}\;{n}^{-1} \leq 5 \cdot 10^{-9}:\\
                    \;\;\;\;\frac{\frac{\frac{\log x}{n} + 1}{x}}{n}\\
                    
                    \mathbf{elif}\;{n}^{-1} \leq 2 \cdot 10^{+158}:\\
                    \;\;\;\;\left(\frac{x}{n} + 1\right) - t\_0\\
                    
                    \mathbf{else}:\\
                    \;\;\;\;{\left(\left(n \cdot x\right) \cdot \left(n \cdot x\right)\right)}^{-0.5}\\
                    
                    
                    \end{array}
                    \end{array}
                    
                    Derivation
                    1. Split input into 4 regimes
                    2. if (/.f64 #s(literal 1 binary64) n) < -9.99999999999999955e-7

                      1. Initial program 99.8%

                        \[{\left(x + 1\right)}^{\left(\frac{1}{n}\right)} - {x}^{\left(\frac{1}{n}\right)} \]
                      2. Add Preprocessing
                      3. Taylor expanded in x around 0

                        \[\leadsto \color{blue}{1} - {x}^{\left(\frac{1}{n}\right)} \]
                      4. Step-by-step derivation
                        1. Applied rewrites54.9%

                          \[\leadsto \color{blue}{1} - {x}^{\left(\frac{1}{n}\right)} \]

                        if -9.99999999999999955e-7 < (/.f64 #s(literal 1 binary64) n) < 5.0000000000000001e-9

                        1. Initial program 26.2%

                          \[{\left(x + 1\right)}^{\left(\frac{1}{n}\right)} - {x}^{\left(\frac{1}{n}\right)} \]
                        2. Add Preprocessing
                        3. Taylor expanded in x around inf

                          \[\leadsto \color{blue}{\frac{e^{-1 \cdot \frac{\log \left(\frac{1}{x}\right)}{n}}}{n \cdot x}} \]
                        4. Step-by-step derivation
                          1. lower-/.f64N/A

                            \[\leadsto \color{blue}{\frac{e^{-1 \cdot \frac{\log \left(\frac{1}{x}\right)}{n}}}{n \cdot x}} \]
                          2. *-commutativeN/A

                            \[\leadsto \frac{e^{\color{blue}{\frac{\log \left(\frac{1}{x}\right)}{n} \cdot -1}}}{n \cdot x} \]
                          3. log-recN/A

                            \[\leadsto \frac{e^{\frac{\color{blue}{\mathsf{neg}\left(\log x\right)}}{n} \cdot -1}}{n \cdot x} \]
                          4. mul-1-negN/A

                            \[\leadsto \frac{e^{\frac{\color{blue}{-1 \cdot \log x}}{n} \cdot -1}}{n \cdot x} \]
                          5. *-commutativeN/A

                            \[\leadsto \frac{e^{\color{blue}{-1 \cdot \frac{-1 \cdot \log x}{n}}}}{n \cdot x} \]
                          6. associate-*r/N/A

                            \[\leadsto \frac{e^{\color{blue}{\frac{-1 \cdot \left(-1 \cdot \log x\right)}{n}}}}{n \cdot x} \]
                          7. mul-1-negN/A

                            \[\leadsto \frac{e^{\frac{\color{blue}{\mathsf{neg}\left(-1 \cdot \log x\right)}}{n}}}{n \cdot x} \]
                          8. distribute-lft-neg-inN/A

                            \[\leadsto \frac{e^{\frac{\color{blue}{\left(\mathsf{neg}\left(-1\right)\right) \cdot \log x}}{n}}}{n \cdot x} \]
                          9. metadata-evalN/A

                            \[\leadsto \frac{e^{\frac{\color{blue}{1} \cdot \log x}{n}}}{n \cdot x} \]
                          10. *-lft-identityN/A

                            \[\leadsto \frac{e^{\frac{\color{blue}{\log x}}{n}}}{n \cdot x} \]
                          11. lower-exp.f64N/A

                            \[\leadsto \frac{\color{blue}{e^{\frac{\log x}{n}}}}{n \cdot x} \]
                          12. lower-/.f64N/A

                            \[\leadsto \frac{e^{\color{blue}{\frac{\log x}{n}}}}{n \cdot x} \]
                          13. lower-log.f64N/A

                            \[\leadsto \frac{e^{\frac{\color{blue}{\log x}}{n}}}{n \cdot x} \]
                          14. lower-*.f6448.9

                            \[\leadsto \frac{e^{\frac{\log x}{n}}}{\color{blue}{n \cdot x}} \]
                        5. Applied rewrites48.9%

                          \[\leadsto \color{blue}{\frac{e^{\frac{\log x}{n}}}{n \cdot x}} \]
                        6. Taylor expanded in n around inf

                          \[\leadsto \frac{\frac{1}{x} + \frac{\log x}{n \cdot x}}{\color{blue}{n}} \]
                        7. Step-by-step derivation
                          1. Applied rewrites48.9%

                            \[\leadsto \frac{\frac{\frac{\log x}{n} + 1}{x}}{\color{blue}{n}} \]

                          if 5.0000000000000001e-9 < (/.f64 #s(literal 1 binary64) n) < 1.99999999999999991e158

                          1. Initial program 70.0%

                            \[{\left(x + 1\right)}^{\left(\frac{1}{n}\right)} - {x}^{\left(\frac{1}{n}\right)} \]
                          2. Add Preprocessing
                          3. Taylor expanded in x around 0

                            \[\leadsto \color{blue}{\left(1 + \frac{x}{n}\right)} - {x}^{\left(\frac{1}{n}\right)} \]
                          4. Step-by-step derivation
                            1. +-commutativeN/A

                              \[\leadsto \color{blue}{\left(\frac{x}{n} + 1\right)} - {x}^{\left(\frac{1}{n}\right)} \]
                            2. *-rgt-identityN/A

                              \[\leadsto \left(\frac{\color{blue}{x \cdot 1}}{n} + 1\right) - {x}^{\left(\frac{1}{n}\right)} \]
                            3. associate-*r/N/A

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

                              \[\leadsto \color{blue}{\left(x \cdot \frac{1}{n} + 1\right)} - {x}^{\left(\frac{1}{n}\right)} \]
                            5. associate-*r/N/A

                              \[\leadsto \left(\color{blue}{\frac{x \cdot 1}{n}} + 1\right) - {x}^{\left(\frac{1}{n}\right)} \]
                            6. *-rgt-identityN/A

                              \[\leadsto \left(\frac{\color{blue}{x}}{n} + 1\right) - {x}^{\left(\frac{1}{n}\right)} \]
                            7. lower-/.f6462.6

                              \[\leadsto \left(\color{blue}{\frac{x}{n}} + 1\right) - {x}^{\left(\frac{1}{n}\right)} \]
                          5. Applied rewrites62.6%

                            \[\leadsto \color{blue}{\left(\frac{x}{n} + 1\right)} - {x}^{\left(\frac{1}{n}\right)} \]

                          if 1.99999999999999991e158 < (/.f64 #s(literal 1 binary64) n)

                          1. Initial program 32.8%

                            \[{\left(x + 1\right)}^{\left(\frac{1}{n}\right)} - {x}^{\left(\frac{1}{n}\right)} \]
                          2. Add Preprocessing
                          3. Taylor expanded in x around inf

                            \[\leadsto \color{blue}{\frac{e^{-1 \cdot \frac{\log \left(\frac{1}{x}\right)}{n}}}{n \cdot x}} \]
                          4. Step-by-step derivation
                            1. lower-/.f64N/A

                              \[\leadsto \color{blue}{\frac{e^{-1 \cdot \frac{\log \left(\frac{1}{x}\right)}{n}}}{n \cdot x}} \]
                            2. *-commutativeN/A

                              \[\leadsto \frac{e^{\color{blue}{\frac{\log \left(\frac{1}{x}\right)}{n} \cdot -1}}}{n \cdot x} \]
                            3. log-recN/A

                              \[\leadsto \frac{e^{\frac{\color{blue}{\mathsf{neg}\left(\log x\right)}}{n} \cdot -1}}{n \cdot x} \]
                            4. mul-1-negN/A

                              \[\leadsto \frac{e^{\frac{\color{blue}{-1 \cdot \log x}}{n} \cdot -1}}{n \cdot x} \]
                            5. *-commutativeN/A

                              \[\leadsto \frac{e^{\color{blue}{-1 \cdot \frac{-1 \cdot \log x}{n}}}}{n \cdot x} \]
                            6. associate-*r/N/A

                              \[\leadsto \frac{e^{\color{blue}{\frac{-1 \cdot \left(-1 \cdot \log x\right)}{n}}}}{n \cdot x} \]
                            7. mul-1-negN/A

                              \[\leadsto \frac{e^{\frac{\color{blue}{\mathsf{neg}\left(-1 \cdot \log x\right)}}{n}}}{n \cdot x} \]
                            8. distribute-lft-neg-inN/A

                              \[\leadsto \frac{e^{\frac{\color{blue}{\left(\mathsf{neg}\left(-1\right)\right) \cdot \log x}}{n}}}{n \cdot x} \]
                            9. metadata-evalN/A

                              \[\leadsto \frac{e^{\frac{\color{blue}{1} \cdot \log x}{n}}}{n \cdot x} \]
                            10. *-lft-identityN/A

                              \[\leadsto \frac{e^{\frac{\color{blue}{\log x}}{n}}}{n \cdot x} \]
                            11. lower-exp.f64N/A

                              \[\leadsto \frac{\color{blue}{e^{\frac{\log x}{n}}}}{n \cdot x} \]
                            12. lower-/.f64N/A

                              \[\leadsto \frac{e^{\color{blue}{\frac{\log x}{n}}}}{n \cdot x} \]
                            13. lower-log.f64N/A

                              \[\leadsto \frac{e^{\frac{\color{blue}{\log x}}{n}}}{n \cdot x} \]
                            14. lower-*.f640.5

                              \[\leadsto \frac{e^{\frac{\log x}{n}}}{\color{blue}{n \cdot x}} \]
                          5. Applied rewrites0.5%

                            \[\leadsto \color{blue}{\frac{e^{\frac{\log x}{n}}}{n \cdot x}} \]
                          6. Taylor expanded in n around inf

                            \[\leadsto \frac{1}{\color{blue}{n \cdot x}} \]
                          7. Step-by-step derivation
                            1. Applied rewrites52.5%

                              \[\leadsto \frac{\frac{1}{n}}{\color{blue}{x}} \]
                            2. Step-by-step derivation
                              1. Applied rewrites52.5%

                                \[\leadsto \frac{1}{n \cdot \color{blue}{x}} \]
                              2. Step-by-step derivation
                                1. Applied rewrites78.0%

                                  \[\leadsto {\left(\left(n \cdot x\right) \cdot \left(n \cdot x\right)\right)}^{-0.5} \]
                              3. Recombined 4 regimes into one program.
                              4. Final simplification54.1%

                                \[\leadsto \begin{array}{l} \mathbf{if}\;{n}^{-1} \leq -1 \cdot 10^{-6}:\\ \;\;\;\;1 - {x}^{\left({n}^{-1}\right)}\\ \mathbf{elif}\;{n}^{-1} \leq 5 \cdot 10^{-9}:\\ \;\;\;\;\frac{\frac{\frac{\log x}{n} + 1}{x}}{n}\\ \mathbf{elif}\;{n}^{-1} \leq 2 \cdot 10^{+158}:\\ \;\;\;\;\left(\frac{x}{n} + 1\right) - {x}^{\left({n}^{-1}\right)}\\ \mathbf{else}:\\ \;\;\;\;{\left(\left(n \cdot x\right) \cdot \left(n \cdot x\right)\right)}^{-0.5}\\ \end{array} \]
                              5. Add Preprocessing

                              Alternative 8: 54.7% accurate, 0.4× speedup?

                              \[\begin{array}{l} \\ \begin{array}{l} t_0 := {x}^{\left({n}^{-1}\right)}\\ \mathbf{if}\;{n}^{-1} \leq -1 \cdot 10^{-6}:\\ \;\;\;\;1 - t\_0\\ \mathbf{elif}\;{n}^{-1} \leq 5 \cdot 10^{-9}:\\ \;\;\;\;\frac{\mathsf{fma}\left(\frac{-\log x}{n}, -1, 1\right)}{n \cdot x}\\ \mathbf{elif}\;{n}^{-1} \leq 2 \cdot 10^{+158}:\\ \;\;\;\;\left(\frac{x}{n} + 1\right) - t\_0\\ \mathbf{else}:\\ \;\;\;\;{\left(\left(n \cdot x\right) \cdot \left(n \cdot x\right)\right)}^{-0.5}\\ \end{array} \end{array} \]
                              (FPCore (x n)
                               :precision binary64
                               (let* ((t_0 (pow x (pow n -1.0))))
                                 (if (<= (pow n -1.0) -1e-6)
                                   (- 1.0 t_0)
                                   (if (<= (pow n -1.0) 5e-9)
                                     (/ (fma (/ (- (log x)) n) -1.0 1.0) (* n x))
                                     (if (<= (pow n -1.0) 2e+158)
                                       (- (+ (/ x n) 1.0) t_0)
                                       (pow (* (* n x) (* n x)) -0.5))))))
                              double code(double x, double n) {
                              	double t_0 = pow(x, pow(n, -1.0));
                              	double tmp;
                              	if (pow(n, -1.0) <= -1e-6) {
                              		tmp = 1.0 - t_0;
                              	} else if (pow(n, -1.0) <= 5e-9) {
                              		tmp = fma((-log(x) / n), -1.0, 1.0) / (n * x);
                              	} else if (pow(n, -1.0) <= 2e+158) {
                              		tmp = ((x / n) + 1.0) - t_0;
                              	} else {
                              		tmp = pow(((n * x) * (n * x)), -0.5);
                              	}
                              	return tmp;
                              }
                              
                              function code(x, n)
                              	t_0 = x ^ (n ^ -1.0)
                              	tmp = 0.0
                              	if ((n ^ -1.0) <= -1e-6)
                              		tmp = Float64(1.0 - t_0);
                              	elseif ((n ^ -1.0) <= 5e-9)
                              		tmp = Float64(fma(Float64(Float64(-log(x)) / n), -1.0, 1.0) / Float64(n * x));
                              	elseif ((n ^ -1.0) <= 2e+158)
                              		tmp = Float64(Float64(Float64(x / n) + 1.0) - t_0);
                              	else
                              		tmp = Float64(Float64(n * x) * Float64(n * x)) ^ -0.5;
                              	end
                              	return tmp
                              end
                              
                              code[x_, n_] := Block[{t$95$0 = N[Power[x, N[Power[n, -1.0], $MachinePrecision]], $MachinePrecision]}, If[LessEqual[N[Power[n, -1.0], $MachinePrecision], -1e-6], N[(1.0 - t$95$0), $MachinePrecision], If[LessEqual[N[Power[n, -1.0], $MachinePrecision], 5e-9], N[(N[(N[((-N[Log[x], $MachinePrecision]) / n), $MachinePrecision] * -1.0 + 1.0), $MachinePrecision] / N[(n * x), $MachinePrecision]), $MachinePrecision], If[LessEqual[N[Power[n, -1.0], $MachinePrecision], 2e+158], N[(N[(N[(x / n), $MachinePrecision] + 1.0), $MachinePrecision] - t$95$0), $MachinePrecision], N[Power[N[(N[(n * x), $MachinePrecision] * N[(n * x), $MachinePrecision]), $MachinePrecision], -0.5], $MachinePrecision]]]]]
                              
                              \begin{array}{l}
                              
                              \\
                              \begin{array}{l}
                              t_0 := {x}^{\left({n}^{-1}\right)}\\
                              \mathbf{if}\;{n}^{-1} \leq -1 \cdot 10^{-6}:\\
                              \;\;\;\;1 - t\_0\\
                              
                              \mathbf{elif}\;{n}^{-1} \leq 5 \cdot 10^{-9}:\\
                              \;\;\;\;\frac{\mathsf{fma}\left(\frac{-\log x}{n}, -1, 1\right)}{n \cdot x}\\
                              
                              \mathbf{elif}\;{n}^{-1} \leq 2 \cdot 10^{+158}:\\
                              \;\;\;\;\left(\frac{x}{n} + 1\right) - t\_0\\
                              
                              \mathbf{else}:\\
                              \;\;\;\;{\left(\left(n \cdot x\right) \cdot \left(n \cdot x\right)\right)}^{-0.5}\\
                              
                              
                              \end{array}
                              \end{array}
                              
                              Derivation
                              1. Split input into 4 regimes
                              2. if (/.f64 #s(literal 1 binary64) n) < -9.99999999999999955e-7

                                1. Initial program 99.8%

                                  \[{\left(x + 1\right)}^{\left(\frac{1}{n}\right)} - {x}^{\left(\frac{1}{n}\right)} \]
                                2. Add Preprocessing
                                3. Taylor expanded in x around 0

                                  \[\leadsto \color{blue}{1} - {x}^{\left(\frac{1}{n}\right)} \]
                                4. Step-by-step derivation
                                  1. Applied rewrites54.9%

                                    \[\leadsto \color{blue}{1} - {x}^{\left(\frac{1}{n}\right)} \]

                                  if -9.99999999999999955e-7 < (/.f64 #s(literal 1 binary64) n) < 5.0000000000000001e-9

                                  1. Initial program 26.2%

                                    \[{\left(x + 1\right)}^{\left(\frac{1}{n}\right)} - {x}^{\left(\frac{1}{n}\right)} \]
                                  2. Add Preprocessing
                                  3. Taylor expanded in n around inf

                                    \[\leadsto \color{blue}{\frac{\left(\log \left(1 + x\right) + \frac{1}{2} \cdot \frac{{\log \left(1 + x\right)}^{2}}{n}\right) - \left(\log x + \frac{1}{2} \cdot \frac{{\log x}^{2}}{n}\right)}{n}} \]
                                  4. Step-by-step derivation
                                    1. lower-/.f64N/A

                                      \[\leadsto \color{blue}{\frac{\left(\log \left(1 + x\right) + \frac{1}{2} \cdot \frac{{\log \left(1 + x\right)}^{2}}{n}\right) - \left(\log x + \frac{1}{2} \cdot \frac{{\log x}^{2}}{n}\right)}{n}} \]
                                  5. Applied rewrites76.8%

                                    \[\leadsto \color{blue}{\frac{\mathsf{fma}\left(0.5, \frac{{\left(\mathsf{log1p}\left(x\right)\right)}^{2} - {\log x}^{2}}{n}, \mathsf{log1p}\left(x\right)\right) - \log x}{n}} \]
                                  6. Taylor expanded in x around inf

                                    \[\leadsto \frac{1 + -1 \cdot \frac{\log \left(\frac{1}{x}\right)}{n}}{\color{blue}{n \cdot x}} \]
                                  7. Step-by-step derivation
                                    1. Applied rewrites48.8%

                                      \[\leadsto \frac{\mathsf{fma}\left(\frac{-\log x}{n}, -1, 1\right)}{\color{blue}{n \cdot x}} \]

                                    if 5.0000000000000001e-9 < (/.f64 #s(literal 1 binary64) n) < 1.99999999999999991e158

                                    1. Initial program 70.0%

                                      \[{\left(x + 1\right)}^{\left(\frac{1}{n}\right)} - {x}^{\left(\frac{1}{n}\right)} \]
                                    2. Add Preprocessing
                                    3. Taylor expanded in x around 0

                                      \[\leadsto \color{blue}{\left(1 + \frac{x}{n}\right)} - {x}^{\left(\frac{1}{n}\right)} \]
                                    4. Step-by-step derivation
                                      1. +-commutativeN/A

                                        \[\leadsto \color{blue}{\left(\frac{x}{n} + 1\right)} - {x}^{\left(\frac{1}{n}\right)} \]
                                      2. *-rgt-identityN/A

                                        \[\leadsto \left(\frac{\color{blue}{x \cdot 1}}{n} + 1\right) - {x}^{\left(\frac{1}{n}\right)} \]
                                      3. associate-*r/N/A

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

                                        \[\leadsto \color{blue}{\left(x \cdot \frac{1}{n} + 1\right)} - {x}^{\left(\frac{1}{n}\right)} \]
                                      5. associate-*r/N/A

                                        \[\leadsto \left(\color{blue}{\frac{x \cdot 1}{n}} + 1\right) - {x}^{\left(\frac{1}{n}\right)} \]
                                      6. *-rgt-identityN/A

                                        \[\leadsto \left(\frac{\color{blue}{x}}{n} + 1\right) - {x}^{\left(\frac{1}{n}\right)} \]
                                      7. lower-/.f6462.6

                                        \[\leadsto \left(\color{blue}{\frac{x}{n}} + 1\right) - {x}^{\left(\frac{1}{n}\right)} \]
                                    5. Applied rewrites62.6%

                                      \[\leadsto \color{blue}{\left(\frac{x}{n} + 1\right)} - {x}^{\left(\frac{1}{n}\right)} \]

                                    if 1.99999999999999991e158 < (/.f64 #s(literal 1 binary64) n)

                                    1. Initial program 32.8%

                                      \[{\left(x + 1\right)}^{\left(\frac{1}{n}\right)} - {x}^{\left(\frac{1}{n}\right)} \]
                                    2. Add Preprocessing
                                    3. Taylor expanded in x around inf

                                      \[\leadsto \color{blue}{\frac{e^{-1 \cdot \frac{\log \left(\frac{1}{x}\right)}{n}}}{n \cdot x}} \]
                                    4. Step-by-step derivation
                                      1. lower-/.f64N/A

                                        \[\leadsto \color{blue}{\frac{e^{-1 \cdot \frac{\log \left(\frac{1}{x}\right)}{n}}}{n \cdot x}} \]
                                      2. *-commutativeN/A

                                        \[\leadsto \frac{e^{\color{blue}{\frac{\log \left(\frac{1}{x}\right)}{n} \cdot -1}}}{n \cdot x} \]
                                      3. log-recN/A

                                        \[\leadsto \frac{e^{\frac{\color{blue}{\mathsf{neg}\left(\log x\right)}}{n} \cdot -1}}{n \cdot x} \]
                                      4. mul-1-negN/A

                                        \[\leadsto \frac{e^{\frac{\color{blue}{-1 \cdot \log x}}{n} \cdot -1}}{n \cdot x} \]
                                      5. *-commutativeN/A

                                        \[\leadsto \frac{e^{\color{blue}{-1 \cdot \frac{-1 \cdot \log x}{n}}}}{n \cdot x} \]
                                      6. associate-*r/N/A

                                        \[\leadsto \frac{e^{\color{blue}{\frac{-1 \cdot \left(-1 \cdot \log x\right)}{n}}}}{n \cdot x} \]
                                      7. mul-1-negN/A

                                        \[\leadsto \frac{e^{\frac{\color{blue}{\mathsf{neg}\left(-1 \cdot \log x\right)}}{n}}}{n \cdot x} \]
                                      8. distribute-lft-neg-inN/A

                                        \[\leadsto \frac{e^{\frac{\color{blue}{\left(\mathsf{neg}\left(-1\right)\right) \cdot \log x}}{n}}}{n \cdot x} \]
                                      9. metadata-evalN/A

                                        \[\leadsto \frac{e^{\frac{\color{blue}{1} \cdot \log x}{n}}}{n \cdot x} \]
                                      10. *-lft-identityN/A

                                        \[\leadsto \frac{e^{\frac{\color{blue}{\log x}}{n}}}{n \cdot x} \]
                                      11. lower-exp.f64N/A

                                        \[\leadsto \frac{\color{blue}{e^{\frac{\log x}{n}}}}{n \cdot x} \]
                                      12. lower-/.f64N/A

                                        \[\leadsto \frac{e^{\color{blue}{\frac{\log x}{n}}}}{n \cdot x} \]
                                      13. lower-log.f64N/A

                                        \[\leadsto \frac{e^{\frac{\color{blue}{\log x}}{n}}}{n \cdot x} \]
                                      14. lower-*.f640.5

                                        \[\leadsto \frac{e^{\frac{\log x}{n}}}{\color{blue}{n \cdot x}} \]
                                    5. Applied rewrites0.5%

                                      \[\leadsto \color{blue}{\frac{e^{\frac{\log x}{n}}}{n \cdot x}} \]
                                    6. Taylor expanded in n around inf

                                      \[\leadsto \frac{1}{\color{blue}{n \cdot x}} \]
                                    7. Step-by-step derivation
                                      1. Applied rewrites52.5%

                                        \[\leadsto \frac{\frac{1}{n}}{\color{blue}{x}} \]
                                      2. Step-by-step derivation
                                        1. Applied rewrites52.5%

                                          \[\leadsto \frac{1}{n \cdot \color{blue}{x}} \]
                                        2. Step-by-step derivation
                                          1. Applied rewrites78.0%

                                            \[\leadsto {\left(\left(n \cdot x\right) \cdot \left(n \cdot x\right)\right)}^{-0.5} \]
                                        3. Recombined 4 regimes into one program.
                                        4. Final simplification54.0%

                                          \[\leadsto \begin{array}{l} \mathbf{if}\;{n}^{-1} \leq -1 \cdot 10^{-6}:\\ \;\;\;\;1 - {x}^{\left({n}^{-1}\right)}\\ \mathbf{elif}\;{n}^{-1} \leq 5 \cdot 10^{-9}:\\ \;\;\;\;\frac{\mathsf{fma}\left(\frac{-\log x}{n}, -1, 1\right)}{n \cdot x}\\ \mathbf{elif}\;{n}^{-1} \leq 2 \cdot 10^{+158}:\\ \;\;\;\;\left(\frac{x}{n} + 1\right) - {x}^{\left({n}^{-1}\right)}\\ \mathbf{else}:\\ \;\;\;\;{\left(\left(n \cdot x\right) \cdot \left(n \cdot x\right)\right)}^{-0.5}\\ \end{array} \]
                                        5. Add Preprocessing

                                        Alternative 9: 55.1% accurate, 0.4× speedup?

                                        \[\begin{array}{l} \\ \begin{array}{l} t_0 := {x}^{\left({n}^{-1}\right)}\\ \mathbf{if}\;{n}^{-1} \leq -1 \cdot 10^{-6}:\\ \;\;\;\;1 - t\_0\\ \mathbf{elif}\;{n}^{-1} \leq 5 \cdot 10^{-9}:\\ \;\;\;\;\frac{{x}^{-1}}{n}\\ \mathbf{elif}\;{n}^{-1} \leq 2 \cdot 10^{+158}:\\ \;\;\;\;\left(\frac{x}{n} + 1\right) - t\_0\\ \mathbf{else}:\\ \;\;\;\;{\left(\left(n \cdot x\right) \cdot \left(n \cdot x\right)\right)}^{-0.5}\\ \end{array} \end{array} \]
                                        (FPCore (x n)
                                         :precision binary64
                                         (let* ((t_0 (pow x (pow n -1.0))))
                                           (if (<= (pow n -1.0) -1e-6)
                                             (- 1.0 t_0)
                                             (if (<= (pow n -1.0) 5e-9)
                                               (/ (pow x -1.0) n)
                                               (if (<= (pow n -1.0) 2e+158)
                                                 (- (+ (/ x n) 1.0) t_0)
                                                 (pow (* (* n x) (* n x)) -0.5))))))
                                        double code(double x, double n) {
                                        	double t_0 = pow(x, pow(n, -1.0));
                                        	double tmp;
                                        	if (pow(n, -1.0) <= -1e-6) {
                                        		tmp = 1.0 - t_0;
                                        	} else if (pow(n, -1.0) <= 5e-9) {
                                        		tmp = pow(x, -1.0) / n;
                                        	} else if (pow(n, -1.0) <= 2e+158) {
                                        		tmp = ((x / n) + 1.0) - t_0;
                                        	} else {
                                        		tmp = pow(((n * x) * (n * x)), -0.5);
                                        	}
                                        	return tmp;
                                        }
                                        
                                        real(8) function code(x, n)
                                            real(8), intent (in) :: x
                                            real(8), intent (in) :: n
                                            real(8) :: t_0
                                            real(8) :: tmp
                                            t_0 = x ** (n ** (-1.0d0))
                                            if ((n ** (-1.0d0)) <= (-1d-6)) then
                                                tmp = 1.0d0 - t_0
                                            else if ((n ** (-1.0d0)) <= 5d-9) then
                                                tmp = (x ** (-1.0d0)) / n
                                            else if ((n ** (-1.0d0)) <= 2d+158) then
                                                tmp = ((x / n) + 1.0d0) - t_0
                                            else
                                                tmp = ((n * x) * (n * x)) ** (-0.5d0)
                                            end if
                                            code = tmp
                                        end function
                                        
                                        public static double code(double x, double n) {
                                        	double t_0 = Math.pow(x, Math.pow(n, -1.0));
                                        	double tmp;
                                        	if (Math.pow(n, -1.0) <= -1e-6) {
                                        		tmp = 1.0 - t_0;
                                        	} else if (Math.pow(n, -1.0) <= 5e-9) {
                                        		tmp = Math.pow(x, -1.0) / n;
                                        	} else if (Math.pow(n, -1.0) <= 2e+158) {
                                        		tmp = ((x / n) + 1.0) - t_0;
                                        	} else {
                                        		tmp = Math.pow(((n * x) * (n * x)), -0.5);
                                        	}
                                        	return tmp;
                                        }
                                        
                                        def code(x, n):
                                        	t_0 = math.pow(x, math.pow(n, -1.0))
                                        	tmp = 0
                                        	if math.pow(n, -1.0) <= -1e-6:
                                        		tmp = 1.0 - t_0
                                        	elif math.pow(n, -1.0) <= 5e-9:
                                        		tmp = math.pow(x, -1.0) / n
                                        	elif math.pow(n, -1.0) <= 2e+158:
                                        		tmp = ((x / n) + 1.0) - t_0
                                        	else:
                                        		tmp = math.pow(((n * x) * (n * x)), -0.5)
                                        	return tmp
                                        
                                        function code(x, n)
                                        	t_0 = x ^ (n ^ -1.0)
                                        	tmp = 0.0
                                        	if ((n ^ -1.0) <= -1e-6)
                                        		tmp = Float64(1.0 - t_0);
                                        	elseif ((n ^ -1.0) <= 5e-9)
                                        		tmp = Float64((x ^ -1.0) / n);
                                        	elseif ((n ^ -1.0) <= 2e+158)
                                        		tmp = Float64(Float64(Float64(x / n) + 1.0) - t_0);
                                        	else
                                        		tmp = Float64(Float64(n * x) * Float64(n * x)) ^ -0.5;
                                        	end
                                        	return tmp
                                        end
                                        
                                        function tmp_2 = code(x, n)
                                        	t_0 = x ^ (n ^ -1.0);
                                        	tmp = 0.0;
                                        	if ((n ^ -1.0) <= -1e-6)
                                        		tmp = 1.0 - t_0;
                                        	elseif ((n ^ -1.0) <= 5e-9)
                                        		tmp = (x ^ -1.0) / n;
                                        	elseif ((n ^ -1.0) <= 2e+158)
                                        		tmp = ((x / n) + 1.0) - t_0;
                                        	else
                                        		tmp = ((n * x) * (n * x)) ^ -0.5;
                                        	end
                                        	tmp_2 = tmp;
                                        end
                                        
                                        code[x_, n_] := Block[{t$95$0 = N[Power[x, N[Power[n, -1.0], $MachinePrecision]], $MachinePrecision]}, If[LessEqual[N[Power[n, -1.0], $MachinePrecision], -1e-6], N[(1.0 - t$95$0), $MachinePrecision], If[LessEqual[N[Power[n, -1.0], $MachinePrecision], 5e-9], N[(N[Power[x, -1.0], $MachinePrecision] / n), $MachinePrecision], If[LessEqual[N[Power[n, -1.0], $MachinePrecision], 2e+158], N[(N[(N[(x / n), $MachinePrecision] + 1.0), $MachinePrecision] - t$95$0), $MachinePrecision], N[Power[N[(N[(n * x), $MachinePrecision] * N[(n * x), $MachinePrecision]), $MachinePrecision], -0.5], $MachinePrecision]]]]]
                                        
                                        \begin{array}{l}
                                        
                                        \\
                                        \begin{array}{l}
                                        t_0 := {x}^{\left({n}^{-1}\right)}\\
                                        \mathbf{if}\;{n}^{-1} \leq -1 \cdot 10^{-6}:\\
                                        \;\;\;\;1 - t\_0\\
                                        
                                        \mathbf{elif}\;{n}^{-1} \leq 5 \cdot 10^{-9}:\\
                                        \;\;\;\;\frac{{x}^{-1}}{n}\\
                                        
                                        \mathbf{elif}\;{n}^{-1} \leq 2 \cdot 10^{+158}:\\
                                        \;\;\;\;\left(\frac{x}{n} + 1\right) - t\_0\\
                                        
                                        \mathbf{else}:\\
                                        \;\;\;\;{\left(\left(n \cdot x\right) \cdot \left(n \cdot x\right)\right)}^{-0.5}\\
                                        
                                        
                                        \end{array}
                                        \end{array}
                                        
                                        Derivation
                                        1. Split input into 4 regimes
                                        2. if (/.f64 #s(literal 1 binary64) n) < -9.99999999999999955e-7

                                          1. Initial program 99.8%

                                            \[{\left(x + 1\right)}^{\left(\frac{1}{n}\right)} - {x}^{\left(\frac{1}{n}\right)} \]
                                          2. Add Preprocessing
                                          3. Taylor expanded in x around 0

                                            \[\leadsto \color{blue}{1} - {x}^{\left(\frac{1}{n}\right)} \]
                                          4. Step-by-step derivation
                                            1. Applied rewrites54.9%

                                              \[\leadsto \color{blue}{1} - {x}^{\left(\frac{1}{n}\right)} \]

                                            if -9.99999999999999955e-7 < (/.f64 #s(literal 1 binary64) n) < 5.0000000000000001e-9

                                            1. Initial program 26.2%

                                              \[{\left(x + 1\right)}^{\left(\frac{1}{n}\right)} - {x}^{\left(\frac{1}{n}\right)} \]
                                            2. Add Preprocessing
                                            3. Taylor expanded in x around inf

                                              \[\leadsto \color{blue}{\frac{e^{-1 \cdot \frac{\log \left(\frac{1}{x}\right)}{n}}}{n \cdot x}} \]
                                            4. Step-by-step derivation
                                              1. lower-/.f64N/A

                                                \[\leadsto \color{blue}{\frac{e^{-1 \cdot \frac{\log \left(\frac{1}{x}\right)}{n}}}{n \cdot x}} \]
                                              2. *-commutativeN/A

                                                \[\leadsto \frac{e^{\color{blue}{\frac{\log \left(\frac{1}{x}\right)}{n} \cdot -1}}}{n \cdot x} \]
                                              3. log-recN/A

                                                \[\leadsto \frac{e^{\frac{\color{blue}{\mathsf{neg}\left(\log x\right)}}{n} \cdot -1}}{n \cdot x} \]
                                              4. mul-1-negN/A

                                                \[\leadsto \frac{e^{\frac{\color{blue}{-1 \cdot \log x}}{n} \cdot -1}}{n \cdot x} \]
                                              5. *-commutativeN/A

                                                \[\leadsto \frac{e^{\color{blue}{-1 \cdot \frac{-1 \cdot \log x}{n}}}}{n \cdot x} \]
                                              6. associate-*r/N/A

                                                \[\leadsto \frac{e^{\color{blue}{\frac{-1 \cdot \left(-1 \cdot \log x\right)}{n}}}}{n \cdot x} \]
                                              7. mul-1-negN/A

                                                \[\leadsto \frac{e^{\frac{\color{blue}{\mathsf{neg}\left(-1 \cdot \log x\right)}}{n}}}{n \cdot x} \]
                                              8. distribute-lft-neg-inN/A

                                                \[\leadsto \frac{e^{\frac{\color{blue}{\left(\mathsf{neg}\left(-1\right)\right) \cdot \log x}}{n}}}{n \cdot x} \]
                                              9. metadata-evalN/A

                                                \[\leadsto \frac{e^{\frac{\color{blue}{1} \cdot \log x}{n}}}{n \cdot x} \]
                                              10. *-lft-identityN/A

                                                \[\leadsto \frac{e^{\frac{\color{blue}{\log x}}{n}}}{n \cdot x} \]
                                              11. lower-exp.f64N/A

                                                \[\leadsto \frac{\color{blue}{e^{\frac{\log x}{n}}}}{n \cdot x} \]
                                              12. lower-/.f64N/A

                                                \[\leadsto \frac{e^{\color{blue}{\frac{\log x}{n}}}}{n \cdot x} \]
                                              13. lower-log.f64N/A

                                                \[\leadsto \frac{e^{\frac{\color{blue}{\log x}}{n}}}{n \cdot x} \]
                                              14. lower-*.f6448.9

                                                \[\leadsto \frac{e^{\frac{\log x}{n}}}{\color{blue}{n \cdot x}} \]
                                            5. Applied rewrites48.9%

                                              \[\leadsto \color{blue}{\frac{e^{\frac{\log x}{n}}}{n \cdot x}} \]
                                            6. Taylor expanded in n around inf

                                              \[\leadsto \frac{1}{\color{blue}{n \cdot x}} \]
                                            7. Step-by-step derivation
                                              1. Applied rewrites48.5%

                                                \[\leadsto \frac{\frac{1}{n}}{\color{blue}{x}} \]
                                              2. Step-by-step derivation
                                                1. Applied rewrites48.5%

                                                  \[\leadsto \frac{{x}^{-1}}{n} \]

                                                if 5.0000000000000001e-9 < (/.f64 #s(literal 1 binary64) n) < 1.99999999999999991e158

                                                1. Initial program 70.0%

                                                  \[{\left(x + 1\right)}^{\left(\frac{1}{n}\right)} - {x}^{\left(\frac{1}{n}\right)} \]
                                                2. Add Preprocessing
                                                3. Taylor expanded in x around 0

                                                  \[\leadsto \color{blue}{\left(1 + \frac{x}{n}\right)} - {x}^{\left(\frac{1}{n}\right)} \]
                                                4. Step-by-step derivation
                                                  1. +-commutativeN/A

                                                    \[\leadsto \color{blue}{\left(\frac{x}{n} + 1\right)} - {x}^{\left(\frac{1}{n}\right)} \]
                                                  2. *-rgt-identityN/A

                                                    \[\leadsto \left(\frac{\color{blue}{x \cdot 1}}{n} + 1\right) - {x}^{\left(\frac{1}{n}\right)} \]
                                                  3. associate-*r/N/A

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

                                                    \[\leadsto \color{blue}{\left(x \cdot \frac{1}{n} + 1\right)} - {x}^{\left(\frac{1}{n}\right)} \]
                                                  5. associate-*r/N/A

                                                    \[\leadsto \left(\color{blue}{\frac{x \cdot 1}{n}} + 1\right) - {x}^{\left(\frac{1}{n}\right)} \]
                                                  6. *-rgt-identityN/A

                                                    \[\leadsto \left(\frac{\color{blue}{x}}{n} + 1\right) - {x}^{\left(\frac{1}{n}\right)} \]
                                                  7. lower-/.f6462.6

                                                    \[\leadsto \left(\color{blue}{\frac{x}{n}} + 1\right) - {x}^{\left(\frac{1}{n}\right)} \]
                                                5. Applied rewrites62.6%

                                                  \[\leadsto \color{blue}{\left(\frac{x}{n} + 1\right)} - {x}^{\left(\frac{1}{n}\right)} \]

                                                if 1.99999999999999991e158 < (/.f64 #s(literal 1 binary64) n)

                                                1. Initial program 32.8%

                                                  \[{\left(x + 1\right)}^{\left(\frac{1}{n}\right)} - {x}^{\left(\frac{1}{n}\right)} \]
                                                2. Add Preprocessing
                                                3. Taylor expanded in x around inf

                                                  \[\leadsto \color{blue}{\frac{e^{-1 \cdot \frac{\log \left(\frac{1}{x}\right)}{n}}}{n \cdot x}} \]
                                                4. Step-by-step derivation
                                                  1. lower-/.f64N/A

                                                    \[\leadsto \color{blue}{\frac{e^{-1 \cdot \frac{\log \left(\frac{1}{x}\right)}{n}}}{n \cdot x}} \]
                                                  2. *-commutativeN/A

                                                    \[\leadsto \frac{e^{\color{blue}{\frac{\log \left(\frac{1}{x}\right)}{n} \cdot -1}}}{n \cdot x} \]
                                                  3. log-recN/A

                                                    \[\leadsto \frac{e^{\frac{\color{blue}{\mathsf{neg}\left(\log x\right)}}{n} \cdot -1}}{n \cdot x} \]
                                                  4. mul-1-negN/A

                                                    \[\leadsto \frac{e^{\frac{\color{blue}{-1 \cdot \log x}}{n} \cdot -1}}{n \cdot x} \]
                                                  5. *-commutativeN/A

                                                    \[\leadsto \frac{e^{\color{blue}{-1 \cdot \frac{-1 \cdot \log x}{n}}}}{n \cdot x} \]
                                                  6. associate-*r/N/A

                                                    \[\leadsto \frac{e^{\color{blue}{\frac{-1 \cdot \left(-1 \cdot \log x\right)}{n}}}}{n \cdot x} \]
                                                  7. mul-1-negN/A

                                                    \[\leadsto \frac{e^{\frac{\color{blue}{\mathsf{neg}\left(-1 \cdot \log x\right)}}{n}}}{n \cdot x} \]
                                                  8. distribute-lft-neg-inN/A

                                                    \[\leadsto \frac{e^{\frac{\color{blue}{\left(\mathsf{neg}\left(-1\right)\right) \cdot \log x}}{n}}}{n \cdot x} \]
                                                  9. metadata-evalN/A

                                                    \[\leadsto \frac{e^{\frac{\color{blue}{1} \cdot \log x}{n}}}{n \cdot x} \]
                                                  10. *-lft-identityN/A

                                                    \[\leadsto \frac{e^{\frac{\color{blue}{\log x}}{n}}}{n \cdot x} \]
                                                  11. lower-exp.f64N/A

                                                    \[\leadsto \frac{\color{blue}{e^{\frac{\log x}{n}}}}{n \cdot x} \]
                                                  12. lower-/.f64N/A

                                                    \[\leadsto \frac{e^{\color{blue}{\frac{\log x}{n}}}}{n \cdot x} \]
                                                  13. lower-log.f64N/A

                                                    \[\leadsto \frac{e^{\frac{\color{blue}{\log x}}{n}}}{n \cdot x} \]
                                                  14. lower-*.f640.5

                                                    \[\leadsto \frac{e^{\frac{\log x}{n}}}{\color{blue}{n \cdot x}} \]
                                                5. Applied rewrites0.5%

                                                  \[\leadsto \color{blue}{\frac{e^{\frac{\log x}{n}}}{n \cdot x}} \]
                                                6. Taylor expanded in n around inf

                                                  \[\leadsto \frac{1}{\color{blue}{n \cdot x}} \]
                                                7. Step-by-step derivation
                                                  1. Applied rewrites52.5%

                                                    \[\leadsto \frac{\frac{1}{n}}{\color{blue}{x}} \]
                                                  2. Step-by-step derivation
                                                    1. Applied rewrites52.5%

                                                      \[\leadsto \frac{1}{n \cdot \color{blue}{x}} \]
                                                    2. Step-by-step derivation
                                                      1. Applied rewrites78.0%

                                                        \[\leadsto {\left(\left(n \cdot x\right) \cdot \left(n \cdot x\right)\right)}^{-0.5} \]
                                                    3. Recombined 4 regimes into one program.
                                                    4. Final simplification53.9%

                                                      \[\leadsto \begin{array}{l} \mathbf{if}\;{n}^{-1} \leq -1 \cdot 10^{-6}:\\ \;\;\;\;1 - {x}^{\left({n}^{-1}\right)}\\ \mathbf{elif}\;{n}^{-1} \leq 5 \cdot 10^{-9}:\\ \;\;\;\;\frac{{x}^{-1}}{n}\\ \mathbf{elif}\;{n}^{-1} \leq 2 \cdot 10^{+158}:\\ \;\;\;\;\left(\frac{x}{n} + 1\right) - {x}^{\left({n}^{-1}\right)}\\ \mathbf{else}:\\ \;\;\;\;{\left(\left(n \cdot x\right) \cdot \left(n \cdot x\right)\right)}^{-0.5}\\ \end{array} \]
                                                    5. Add Preprocessing

                                                    Alternative 10: 85.8% accurate, 0.4× speedup?

                                                    \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;{n}^{-1} \leq -5 \cdot 10^{-82}:\\ \;\;\;\;\frac{e^{\frac{\log x}{n}}}{n \cdot x}\\ \mathbf{elif}\;{n}^{-1} \leq 5 \cdot 10^{-9}:\\ \;\;\;\;\frac{\mathsf{log1p}\left(x\right) - \log x}{n}\\ \mathbf{else}:\\ \;\;\;\;e^{\frac{x}{n}} - {x}^{\left({n}^{-1}\right)}\\ \end{array} \end{array} \]
                                                    (FPCore (x n)
                                                     :precision binary64
                                                     (if (<= (pow n -1.0) -5e-82)
                                                       (/ (exp (/ (log x) n)) (* n x))
                                                       (if (<= (pow n -1.0) 5e-9)
                                                         (/ (- (log1p x) (log x)) n)
                                                         (- (exp (/ x n)) (pow x (pow n -1.0))))))
                                                    double code(double x, double n) {
                                                    	double tmp;
                                                    	if (pow(n, -1.0) <= -5e-82) {
                                                    		tmp = exp((log(x) / n)) / (n * x);
                                                    	} else if (pow(n, -1.0) <= 5e-9) {
                                                    		tmp = (log1p(x) - log(x)) / n;
                                                    	} else {
                                                    		tmp = exp((x / n)) - pow(x, pow(n, -1.0));
                                                    	}
                                                    	return tmp;
                                                    }
                                                    
                                                    public static double code(double x, double n) {
                                                    	double tmp;
                                                    	if (Math.pow(n, -1.0) <= -5e-82) {
                                                    		tmp = Math.exp((Math.log(x) / n)) / (n * x);
                                                    	} else if (Math.pow(n, -1.0) <= 5e-9) {
                                                    		tmp = (Math.log1p(x) - Math.log(x)) / n;
                                                    	} else {
                                                    		tmp = Math.exp((x / n)) - Math.pow(x, Math.pow(n, -1.0));
                                                    	}
                                                    	return tmp;
                                                    }
                                                    
                                                    def code(x, n):
                                                    	tmp = 0
                                                    	if math.pow(n, -1.0) <= -5e-82:
                                                    		tmp = math.exp((math.log(x) / n)) / (n * x)
                                                    	elif math.pow(n, -1.0) <= 5e-9:
                                                    		tmp = (math.log1p(x) - math.log(x)) / n
                                                    	else:
                                                    		tmp = math.exp((x / n)) - math.pow(x, math.pow(n, -1.0))
                                                    	return tmp
                                                    
                                                    function code(x, n)
                                                    	tmp = 0.0
                                                    	if ((n ^ -1.0) <= -5e-82)
                                                    		tmp = Float64(exp(Float64(log(x) / n)) / Float64(n * x));
                                                    	elseif ((n ^ -1.0) <= 5e-9)
                                                    		tmp = Float64(Float64(log1p(x) - log(x)) / n);
                                                    	else
                                                    		tmp = Float64(exp(Float64(x / n)) - (x ^ (n ^ -1.0)));
                                                    	end
                                                    	return tmp
                                                    end
                                                    
                                                    code[x_, n_] := If[LessEqual[N[Power[n, -1.0], $MachinePrecision], -5e-82], N[(N[Exp[N[(N[Log[x], $MachinePrecision] / n), $MachinePrecision]], $MachinePrecision] / N[(n * x), $MachinePrecision]), $MachinePrecision], If[LessEqual[N[Power[n, -1.0], $MachinePrecision], 5e-9], N[(N[(N[Log[1 + x], $MachinePrecision] - N[Log[x], $MachinePrecision]), $MachinePrecision] / n), $MachinePrecision], N[(N[Exp[N[(x / n), $MachinePrecision]], $MachinePrecision] - N[Power[x, N[Power[n, -1.0], $MachinePrecision]], $MachinePrecision]), $MachinePrecision]]]
                                                    
                                                    \begin{array}{l}
                                                    
                                                    \\
                                                    \begin{array}{l}
                                                    \mathbf{if}\;{n}^{-1} \leq -5 \cdot 10^{-82}:\\
                                                    \;\;\;\;\frac{e^{\frac{\log x}{n}}}{n \cdot x}\\
                                                    
                                                    \mathbf{elif}\;{n}^{-1} \leq 5 \cdot 10^{-9}:\\
                                                    \;\;\;\;\frac{\mathsf{log1p}\left(x\right) - \log x}{n}\\
                                                    
                                                    \mathbf{else}:\\
                                                    \;\;\;\;e^{\frac{x}{n}} - {x}^{\left({n}^{-1}\right)}\\
                                                    
                                                    
                                                    \end{array}
                                                    \end{array}
                                                    
                                                    Derivation
                                                    1. Split input into 3 regimes
                                                    2. if (/.f64 #s(literal 1 binary64) n) < -4.9999999999999998e-82

                                                      1. Initial program 81.2%

                                                        \[{\left(x + 1\right)}^{\left(\frac{1}{n}\right)} - {x}^{\left(\frac{1}{n}\right)} \]
                                                      2. Add Preprocessing
                                                      3. Taylor expanded in x around inf

                                                        \[\leadsto \color{blue}{\frac{e^{-1 \cdot \frac{\log \left(\frac{1}{x}\right)}{n}}}{n \cdot x}} \]
                                                      4. Step-by-step derivation
                                                        1. lower-/.f64N/A

                                                          \[\leadsto \color{blue}{\frac{e^{-1 \cdot \frac{\log \left(\frac{1}{x}\right)}{n}}}{n \cdot x}} \]
                                                        2. *-commutativeN/A

                                                          \[\leadsto \frac{e^{\color{blue}{\frac{\log \left(\frac{1}{x}\right)}{n} \cdot -1}}}{n \cdot x} \]
                                                        3. log-recN/A

                                                          \[\leadsto \frac{e^{\frac{\color{blue}{\mathsf{neg}\left(\log x\right)}}{n} \cdot -1}}{n \cdot x} \]
                                                        4. mul-1-negN/A

                                                          \[\leadsto \frac{e^{\frac{\color{blue}{-1 \cdot \log x}}{n} \cdot -1}}{n \cdot x} \]
                                                        5. *-commutativeN/A

                                                          \[\leadsto \frac{e^{\color{blue}{-1 \cdot \frac{-1 \cdot \log x}{n}}}}{n \cdot x} \]
                                                        6. associate-*r/N/A

                                                          \[\leadsto \frac{e^{\color{blue}{\frac{-1 \cdot \left(-1 \cdot \log x\right)}{n}}}}{n \cdot x} \]
                                                        7. mul-1-negN/A

                                                          \[\leadsto \frac{e^{\frac{\color{blue}{\mathsf{neg}\left(-1 \cdot \log x\right)}}{n}}}{n \cdot x} \]
                                                        8. distribute-lft-neg-inN/A

                                                          \[\leadsto \frac{e^{\frac{\color{blue}{\left(\mathsf{neg}\left(-1\right)\right) \cdot \log x}}{n}}}{n \cdot x} \]
                                                        9. metadata-evalN/A

                                                          \[\leadsto \frac{e^{\frac{\color{blue}{1} \cdot \log x}{n}}}{n \cdot x} \]
                                                        10. *-lft-identityN/A

                                                          \[\leadsto \frac{e^{\frac{\color{blue}{\log x}}{n}}}{n \cdot x} \]
                                                        11. lower-exp.f64N/A

                                                          \[\leadsto \frac{\color{blue}{e^{\frac{\log x}{n}}}}{n \cdot x} \]
                                                        12. lower-/.f64N/A

                                                          \[\leadsto \frac{e^{\color{blue}{\frac{\log x}{n}}}}{n \cdot x} \]
                                                        13. lower-log.f64N/A

                                                          \[\leadsto \frac{e^{\frac{\color{blue}{\log x}}{n}}}{n \cdot x} \]
                                                        14. lower-*.f6493.4

                                                          \[\leadsto \frac{e^{\frac{\log x}{n}}}{\color{blue}{n \cdot x}} \]
                                                      5. Applied rewrites93.4%

                                                        \[\leadsto \color{blue}{\frac{e^{\frac{\log x}{n}}}{n \cdot x}} \]

                                                      if -4.9999999999999998e-82 < (/.f64 #s(literal 1 binary64) n) < 5.0000000000000001e-9

                                                      1. Initial program 29.0%

                                                        \[{\left(x + 1\right)}^{\left(\frac{1}{n}\right)} - {x}^{\left(\frac{1}{n}\right)} \]
                                                      2. Add Preprocessing
                                                      3. Taylor expanded in n around inf

                                                        \[\leadsto \color{blue}{\frac{\log \left(1 + x\right) - \log x}{n}} \]
                                                      4. Step-by-step derivation
                                                        1. lower-/.f64N/A

                                                          \[\leadsto \color{blue}{\frac{\log \left(1 + x\right) - \log x}{n}} \]
                                                        2. lower--.f64N/A

                                                          \[\leadsto \frac{\color{blue}{\log \left(1 + x\right) - \log x}}{n} \]
                                                        3. lower-log1p.f64N/A

                                                          \[\leadsto \frac{\color{blue}{\mathsf{log1p}\left(x\right)} - \log x}{n} \]
                                                        4. lower-log.f6482.4

                                                          \[\leadsto \frac{\mathsf{log1p}\left(x\right) - \color{blue}{\log x}}{n} \]
                                                      5. Applied rewrites82.4%

                                                        \[\leadsto \color{blue}{\frac{\mathsf{log1p}\left(x\right) - \log x}{n}} \]

                                                      if 5.0000000000000001e-9 < (/.f64 #s(literal 1 binary64) n)

                                                      1. Initial program 50.5%

                                                        \[{\left(x + 1\right)}^{\left(\frac{1}{n}\right)} - {x}^{\left(\frac{1}{n}\right)} \]
                                                      2. Add Preprocessing
                                                      3. Step-by-step derivation
                                                        1. lift-pow.f64N/A

                                                          \[\leadsto \color{blue}{{\left(x + 1\right)}^{\left(\frac{1}{n}\right)}} - {x}^{\left(\frac{1}{n}\right)} \]
                                                        2. pow-to-expN/A

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

                                                          \[\leadsto \color{blue}{e^{\log \left(x + 1\right) \cdot \frac{1}{n}}} - {x}^{\left(\frac{1}{n}\right)} \]
                                                        4. lift-/.f64N/A

                                                          \[\leadsto e^{\log \left(x + 1\right) \cdot \color{blue}{\frac{1}{n}}} - {x}^{\left(\frac{1}{n}\right)} \]
                                                        5. associate-*r/N/A

                                                          \[\leadsto e^{\color{blue}{\frac{\log \left(x + 1\right) \cdot 1}{n}}} - {x}^{\left(\frac{1}{n}\right)} \]
                                                        6. *-rgt-identityN/A

                                                          \[\leadsto e^{\frac{\color{blue}{\log \left(x + 1\right)}}{n}} - {x}^{\left(\frac{1}{n}\right)} \]
                                                        7. lower-/.f64N/A

                                                          \[\leadsto e^{\color{blue}{\frac{\log \left(x + 1\right)}{n}}} - {x}^{\left(\frac{1}{n}\right)} \]
                                                        8. lift-+.f64N/A

                                                          \[\leadsto e^{\frac{\log \color{blue}{\left(x + 1\right)}}{n}} - {x}^{\left(\frac{1}{n}\right)} \]
                                                        9. +-commutativeN/A

                                                          \[\leadsto e^{\frac{\log \color{blue}{\left(1 + x\right)}}{n}} - {x}^{\left(\frac{1}{n}\right)} \]
                                                        10. lower-log1p.f64100.0

                                                          \[\leadsto e^{\frac{\color{blue}{\mathsf{log1p}\left(x\right)}}{n}} - {x}^{\left(\frac{1}{n}\right)} \]
                                                      4. Applied rewrites100.0%

                                                        \[\leadsto \color{blue}{e^{\frac{\mathsf{log1p}\left(x\right)}{n}}} - {x}^{\left(\frac{1}{n}\right)} \]
                                                      5. Taylor expanded in x around 0

                                                        \[\leadsto e^{\color{blue}{\frac{x}{n}}} - {x}^{\left(\frac{1}{n}\right)} \]
                                                      6. Step-by-step derivation
                                                        1. lower-/.f64100.0

                                                          \[\leadsto e^{\color{blue}{\frac{x}{n}}} - {x}^{\left(\frac{1}{n}\right)} \]
                                                      7. Applied rewrites100.0%

                                                        \[\leadsto e^{\color{blue}{\frac{x}{n}}} - {x}^{\left(\frac{1}{n}\right)} \]
                                                    3. Recombined 3 regimes into one program.
                                                    4. Final simplification89.0%

                                                      \[\leadsto \begin{array}{l} \mathbf{if}\;{n}^{-1} \leq -5 \cdot 10^{-82}:\\ \;\;\;\;\frac{e^{\frac{\log x}{n}}}{n \cdot x}\\ \mathbf{elif}\;{n}^{-1} \leq 5 \cdot 10^{-9}:\\ \;\;\;\;\frac{\mathsf{log1p}\left(x\right) - \log x}{n}\\ \mathbf{else}:\\ \;\;\;\;e^{\frac{x}{n}} - {x}^{\left({n}^{-1}\right)}\\ \end{array} \]
                                                    5. Add Preprocessing

                                                    Alternative 11: 55.0% accurate, 0.4× speedup?

                                                    \[\begin{array}{l} \\ \begin{array}{l} t_0 := 1 - {x}^{\left({n}^{-1}\right)}\\ \mathbf{if}\;{n}^{-1} \leq -1 \cdot 10^{-6}:\\ \;\;\;\;t\_0\\ \mathbf{elif}\;{n}^{-1} \leq 5 \cdot 10^{-9}:\\ \;\;\;\;\frac{{x}^{-1}}{n}\\ \mathbf{elif}\;{n}^{-1} \leq 2 \cdot 10^{+158}:\\ \;\;\;\;t\_0\\ \mathbf{else}:\\ \;\;\;\;{\left(\left(n \cdot x\right) \cdot \left(n \cdot x\right)\right)}^{-0.5}\\ \end{array} \end{array} \]
                                                    (FPCore (x n)
                                                     :precision binary64
                                                     (let* ((t_0 (- 1.0 (pow x (pow n -1.0)))))
                                                       (if (<= (pow n -1.0) -1e-6)
                                                         t_0
                                                         (if (<= (pow n -1.0) 5e-9)
                                                           (/ (pow x -1.0) n)
                                                           (if (<= (pow n -1.0) 2e+158) t_0 (pow (* (* n x) (* n x)) -0.5))))))
                                                    double code(double x, double n) {
                                                    	double t_0 = 1.0 - pow(x, pow(n, -1.0));
                                                    	double tmp;
                                                    	if (pow(n, -1.0) <= -1e-6) {
                                                    		tmp = t_0;
                                                    	} else if (pow(n, -1.0) <= 5e-9) {
                                                    		tmp = pow(x, -1.0) / n;
                                                    	} else if (pow(n, -1.0) <= 2e+158) {
                                                    		tmp = t_0;
                                                    	} else {
                                                    		tmp = pow(((n * x) * (n * x)), -0.5);
                                                    	}
                                                    	return tmp;
                                                    }
                                                    
                                                    real(8) function code(x, n)
                                                        real(8), intent (in) :: x
                                                        real(8), intent (in) :: n
                                                        real(8) :: t_0
                                                        real(8) :: tmp
                                                        t_0 = 1.0d0 - (x ** (n ** (-1.0d0)))
                                                        if ((n ** (-1.0d0)) <= (-1d-6)) then
                                                            tmp = t_0
                                                        else if ((n ** (-1.0d0)) <= 5d-9) then
                                                            tmp = (x ** (-1.0d0)) / n
                                                        else if ((n ** (-1.0d0)) <= 2d+158) then
                                                            tmp = t_0
                                                        else
                                                            tmp = ((n * x) * (n * x)) ** (-0.5d0)
                                                        end if
                                                        code = tmp
                                                    end function
                                                    
                                                    public static double code(double x, double n) {
                                                    	double t_0 = 1.0 - Math.pow(x, Math.pow(n, -1.0));
                                                    	double tmp;
                                                    	if (Math.pow(n, -1.0) <= -1e-6) {
                                                    		tmp = t_0;
                                                    	} else if (Math.pow(n, -1.0) <= 5e-9) {
                                                    		tmp = Math.pow(x, -1.0) / n;
                                                    	} else if (Math.pow(n, -1.0) <= 2e+158) {
                                                    		tmp = t_0;
                                                    	} else {
                                                    		tmp = Math.pow(((n * x) * (n * x)), -0.5);
                                                    	}
                                                    	return tmp;
                                                    }
                                                    
                                                    def code(x, n):
                                                    	t_0 = 1.0 - math.pow(x, math.pow(n, -1.0))
                                                    	tmp = 0
                                                    	if math.pow(n, -1.0) <= -1e-6:
                                                    		tmp = t_0
                                                    	elif math.pow(n, -1.0) <= 5e-9:
                                                    		tmp = math.pow(x, -1.0) / n
                                                    	elif math.pow(n, -1.0) <= 2e+158:
                                                    		tmp = t_0
                                                    	else:
                                                    		tmp = math.pow(((n * x) * (n * x)), -0.5)
                                                    	return tmp
                                                    
                                                    function code(x, n)
                                                    	t_0 = Float64(1.0 - (x ^ (n ^ -1.0)))
                                                    	tmp = 0.0
                                                    	if ((n ^ -1.0) <= -1e-6)
                                                    		tmp = t_0;
                                                    	elseif ((n ^ -1.0) <= 5e-9)
                                                    		tmp = Float64((x ^ -1.0) / n);
                                                    	elseif ((n ^ -1.0) <= 2e+158)
                                                    		tmp = t_0;
                                                    	else
                                                    		tmp = Float64(Float64(n * x) * Float64(n * x)) ^ -0.5;
                                                    	end
                                                    	return tmp
                                                    end
                                                    
                                                    function tmp_2 = code(x, n)
                                                    	t_0 = 1.0 - (x ^ (n ^ -1.0));
                                                    	tmp = 0.0;
                                                    	if ((n ^ -1.0) <= -1e-6)
                                                    		tmp = t_0;
                                                    	elseif ((n ^ -1.0) <= 5e-9)
                                                    		tmp = (x ^ -1.0) / n;
                                                    	elseif ((n ^ -1.0) <= 2e+158)
                                                    		tmp = t_0;
                                                    	else
                                                    		tmp = ((n * x) * (n * x)) ^ -0.5;
                                                    	end
                                                    	tmp_2 = tmp;
                                                    end
                                                    
                                                    code[x_, n_] := Block[{t$95$0 = N[(1.0 - N[Power[x, N[Power[n, -1.0], $MachinePrecision]], $MachinePrecision]), $MachinePrecision]}, If[LessEqual[N[Power[n, -1.0], $MachinePrecision], -1e-6], t$95$0, If[LessEqual[N[Power[n, -1.0], $MachinePrecision], 5e-9], N[(N[Power[x, -1.0], $MachinePrecision] / n), $MachinePrecision], If[LessEqual[N[Power[n, -1.0], $MachinePrecision], 2e+158], t$95$0, N[Power[N[(N[(n * x), $MachinePrecision] * N[(n * x), $MachinePrecision]), $MachinePrecision], -0.5], $MachinePrecision]]]]]
                                                    
                                                    \begin{array}{l}
                                                    
                                                    \\
                                                    \begin{array}{l}
                                                    t_0 := 1 - {x}^{\left({n}^{-1}\right)}\\
                                                    \mathbf{if}\;{n}^{-1} \leq -1 \cdot 10^{-6}:\\
                                                    \;\;\;\;t\_0\\
                                                    
                                                    \mathbf{elif}\;{n}^{-1} \leq 5 \cdot 10^{-9}:\\
                                                    \;\;\;\;\frac{{x}^{-1}}{n}\\
                                                    
                                                    \mathbf{elif}\;{n}^{-1} \leq 2 \cdot 10^{+158}:\\
                                                    \;\;\;\;t\_0\\
                                                    
                                                    \mathbf{else}:\\
                                                    \;\;\;\;{\left(\left(n \cdot x\right) \cdot \left(n \cdot x\right)\right)}^{-0.5}\\
                                                    
                                                    
                                                    \end{array}
                                                    \end{array}
                                                    
                                                    Derivation
                                                    1. Split input into 3 regimes
                                                    2. if (/.f64 #s(literal 1 binary64) n) < -9.99999999999999955e-7 or 5.0000000000000001e-9 < (/.f64 #s(literal 1 binary64) n) < 1.99999999999999991e158

                                                      1. Initial program 93.1%

                                                        \[{\left(x + 1\right)}^{\left(\frac{1}{n}\right)} - {x}^{\left(\frac{1}{n}\right)} \]
                                                      2. Add Preprocessing
                                                      3. Taylor expanded in x around 0

                                                        \[\leadsto \color{blue}{1} - {x}^{\left(\frac{1}{n}\right)} \]
                                                      4. Step-by-step derivation
                                                        1. Applied rewrites56.1%

                                                          \[\leadsto \color{blue}{1} - {x}^{\left(\frac{1}{n}\right)} \]

                                                        if -9.99999999999999955e-7 < (/.f64 #s(literal 1 binary64) n) < 5.0000000000000001e-9

                                                        1. Initial program 26.2%

                                                          \[{\left(x + 1\right)}^{\left(\frac{1}{n}\right)} - {x}^{\left(\frac{1}{n}\right)} \]
                                                        2. Add Preprocessing
                                                        3. Taylor expanded in x around inf

                                                          \[\leadsto \color{blue}{\frac{e^{-1 \cdot \frac{\log \left(\frac{1}{x}\right)}{n}}}{n \cdot x}} \]
                                                        4. Step-by-step derivation
                                                          1. lower-/.f64N/A

                                                            \[\leadsto \color{blue}{\frac{e^{-1 \cdot \frac{\log \left(\frac{1}{x}\right)}{n}}}{n \cdot x}} \]
                                                          2. *-commutativeN/A

                                                            \[\leadsto \frac{e^{\color{blue}{\frac{\log \left(\frac{1}{x}\right)}{n} \cdot -1}}}{n \cdot x} \]
                                                          3. log-recN/A

                                                            \[\leadsto \frac{e^{\frac{\color{blue}{\mathsf{neg}\left(\log x\right)}}{n} \cdot -1}}{n \cdot x} \]
                                                          4. mul-1-negN/A

                                                            \[\leadsto \frac{e^{\frac{\color{blue}{-1 \cdot \log x}}{n} \cdot -1}}{n \cdot x} \]
                                                          5. *-commutativeN/A

                                                            \[\leadsto \frac{e^{\color{blue}{-1 \cdot \frac{-1 \cdot \log x}{n}}}}{n \cdot x} \]
                                                          6. associate-*r/N/A

                                                            \[\leadsto \frac{e^{\color{blue}{\frac{-1 \cdot \left(-1 \cdot \log x\right)}{n}}}}{n \cdot x} \]
                                                          7. mul-1-negN/A

                                                            \[\leadsto \frac{e^{\frac{\color{blue}{\mathsf{neg}\left(-1 \cdot \log x\right)}}{n}}}{n \cdot x} \]
                                                          8. distribute-lft-neg-inN/A

                                                            \[\leadsto \frac{e^{\frac{\color{blue}{\left(\mathsf{neg}\left(-1\right)\right) \cdot \log x}}{n}}}{n \cdot x} \]
                                                          9. metadata-evalN/A

                                                            \[\leadsto \frac{e^{\frac{\color{blue}{1} \cdot \log x}{n}}}{n \cdot x} \]
                                                          10. *-lft-identityN/A

                                                            \[\leadsto \frac{e^{\frac{\color{blue}{\log x}}{n}}}{n \cdot x} \]
                                                          11. lower-exp.f64N/A

                                                            \[\leadsto \frac{\color{blue}{e^{\frac{\log x}{n}}}}{n \cdot x} \]
                                                          12. lower-/.f64N/A

                                                            \[\leadsto \frac{e^{\color{blue}{\frac{\log x}{n}}}}{n \cdot x} \]
                                                          13. lower-log.f64N/A

                                                            \[\leadsto \frac{e^{\frac{\color{blue}{\log x}}{n}}}{n \cdot x} \]
                                                          14. lower-*.f6448.9

                                                            \[\leadsto \frac{e^{\frac{\log x}{n}}}{\color{blue}{n \cdot x}} \]
                                                        5. Applied rewrites48.9%

                                                          \[\leadsto \color{blue}{\frac{e^{\frac{\log x}{n}}}{n \cdot x}} \]
                                                        6. Taylor expanded in n around inf

                                                          \[\leadsto \frac{1}{\color{blue}{n \cdot x}} \]
                                                        7. Step-by-step derivation
                                                          1. Applied rewrites48.5%

                                                            \[\leadsto \frac{\frac{1}{n}}{\color{blue}{x}} \]
                                                          2. Step-by-step derivation
                                                            1. Applied rewrites48.5%

                                                              \[\leadsto \frac{{x}^{-1}}{n} \]

                                                            if 1.99999999999999991e158 < (/.f64 #s(literal 1 binary64) n)

                                                            1. Initial program 32.8%

                                                              \[{\left(x + 1\right)}^{\left(\frac{1}{n}\right)} - {x}^{\left(\frac{1}{n}\right)} \]
                                                            2. Add Preprocessing
                                                            3. Taylor expanded in x around inf

                                                              \[\leadsto \color{blue}{\frac{e^{-1 \cdot \frac{\log \left(\frac{1}{x}\right)}{n}}}{n \cdot x}} \]
                                                            4. Step-by-step derivation
                                                              1. lower-/.f64N/A

                                                                \[\leadsto \color{blue}{\frac{e^{-1 \cdot \frac{\log \left(\frac{1}{x}\right)}{n}}}{n \cdot x}} \]
                                                              2. *-commutativeN/A

                                                                \[\leadsto \frac{e^{\color{blue}{\frac{\log \left(\frac{1}{x}\right)}{n} \cdot -1}}}{n \cdot x} \]
                                                              3. log-recN/A

                                                                \[\leadsto \frac{e^{\frac{\color{blue}{\mathsf{neg}\left(\log x\right)}}{n} \cdot -1}}{n \cdot x} \]
                                                              4. mul-1-negN/A

                                                                \[\leadsto \frac{e^{\frac{\color{blue}{-1 \cdot \log x}}{n} \cdot -1}}{n \cdot x} \]
                                                              5. *-commutativeN/A

                                                                \[\leadsto \frac{e^{\color{blue}{-1 \cdot \frac{-1 \cdot \log x}{n}}}}{n \cdot x} \]
                                                              6. associate-*r/N/A

                                                                \[\leadsto \frac{e^{\color{blue}{\frac{-1 \cdot \left(-1 \cdot \log x\right)}{n}}}}{n \cdot x} \]
                                                              7. mul-1-negN/A

                                                                \[\leadsto \frac{e^{\frac{\color{blue}{\mathsf{neg}\left(-1 \cdot \log x\right)}}{n}}}{n \cdot x} \]
                                                              8. distribute-lft-neg-inN/A

                                                                \[\leadsto \frac{e^{\frac{\color{blue}{\left(\mathsf{neg}\left(-1\right)\right) \cdot \log x}}{n}}}{n \cdot x} \]
                                                              9. metadata-evalN/A

                                                                \[\leadsto \frac{e^{\frac{\color{blue}{1} \cdot \log x}{n}}}{n \cdot x} \]
                                                              10. *-lft-identityN/A

                                                                \[\leadsto \frac{e^{\frac{\color{blue}{\log x}}{n}}}{n \cdot x} \]
                                                              11. lower-exp.f64N/A

                                                                \[\leadsto \frac{\color{blue}{e^{\frac{\log x}{n}}}}{n \cdot x} \]
                                                              12. lower-/.f64N/A

                                                                \[\leadsto \frac{e^{\color{blue}{\frac{\log x}{n}}}}{n \cdot x} \]
                                                              13. lower-log.f64N/A

                                                                \[\leadsto \frac{e^{\frac{\color{blue}{\log x}}{n}}}{n \cdot x} \]
                                                              14. lower-*.f640.5

                                                                \[\leadsto \frac{e^{\frac{\log x}{n}}}{\color{blue}{n \cdot x}} \]
                                                            5. Applied rewrites0.5%

                                                              \[\leadsto \color{blue}{\frac{e^{\frac{\log x}{n}}}{n \cdot x}} \]
                                                            6. Taylor expanded in n around inf

                                                              \[\leadsto \frac{1}{\color{blue}{n \cdot x}} \]
                                                            7. Step-by-step derivation
                                                              1. Applied rewrites52.5%

                                                                \[\leadsto \frac{\frac{1}{n}}{\color{blue}{x}} \]
                                                              2. Step-by-step derivation
                                                                1. Applied rewrites52.5%

                                                                  \[\leadsto \frac{1}{n \cdot \color{blue}{x}} \]
                                                                2. Step-by-step derivation
                                                                  1. Applied rewrites78.0%

                                                                    \[\leadsto {\left(\left(n \cdot x\right) \cdot \left(n \cdot x\right)\right)}^{-0.5} \]
                                                                3. Recombined 3 regimes into one program.
                                                                4. Final simplification53.7%

                                                                  \[\leadsto \begin{array}{l} \mathbf{if}\;{n}^{-1} \leq -1 \cdot 10^{-6}:\\ \;\;\;\;1 - {x}^{\left({n}^{-1}\right)}\\ \mathbf{elif}\;{n}^{-1} \leq 5 \cdot 10^{-9}:\\ \;\;\;\;\frac{{x}^{-1}}{n}\\ \mathbf{elif}\;{n}^{-1} \leq 2 \cdot 10^{+158}:\\ \;\;\;\;1 - {x}^{\left({n}^{-1}\right)}\\ \mathbf{else}:\\ \;\;\;\;{\left(\left(n \cdot x\right) \cdot \left(n \cdot x\right)\right)}^{-0.5}\\ \end{array} \]
                                                                5. Add Preprocessing

                                                                Alternative 12: 52.3% accurate, 1.1× speedup?

                                                                \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;x \leq 210:\\ \;\;\;\;1 - {x}^{\left({n}^{-1}\right)}\\ \mathbf{else}:\\ \;\;\;\;\frac{\frac{1 - \frac{0.5}{x}}{n}}{x}\\ \end{array} \end{array} \]
                                                                (FPCore (x n)
                                                                 :precision binary64
                                                                 (if (<= x 210.0) (- 1.0 (pow x (pow n -1.0))) (/ (/ (- 1.0 (/ 0.5 x)) n) x)))
                                                                double code(double x, double n) {
                                                                	double tmp;
                                                                	if (x <= 210.0) {
                                                                		tmp = 1.0 - pow(x, pow(n, -1.0));
                                                                	} else {
                                                                		tmp = ((1.0 - (0.5 / x)) / n) / x;
                                                                	}
                                                                	return tmp;
                                                                }
                                                                
                                                                real(8) function code(x, n)
                                                                    real(8), intent (in) :: x
                                                                    real(8), intent (in) :: n
                                                                    real(8) :: tmp
                                                                    if (x <= 210.0d0) then
                                                                        tmp = 1.0d0 - (x ** (n ** (-1.0d0)))
                                                                    else
                                                                        tmp = ((1.0d0 - (0.5d0 / x)) / n) / x
                                                                    end if
                                                                    code = tmp
                                                                end function
                                                                
                                                                public static double code(double x, double n) {
                                                                	double tmp;
                                                                	if (x <= 210.0) {
                                                                		tmp = 1.0 - Math.pow(x, Math.pow(n, -1.0));
                                                                	} else {
                                                                		tmp = ((1.0 - (0.5 / x)) / n) / x;
                                                                	}
                                                                	return tmp;
                                                                }
                                                                
                                                                def code(x, n):
                                                                	tmp = 0
                                                                	if x <= 210.0:
                                                                		tmp = 1.0 - math.pow(x, math.pow(n, -1.0))
                                                                	else:
                                                                		tmp = ((1.0 - (0.5 / x)) / n) / x
                                                                	return tmp
                                                                
                                                                function code(x, n)
                                                                	tmp = 0.0
                                                                	if (x <= 210.0)
                                                                		tmp = Float64(1.0 - (x ^ (n ^ -1.0)));
                                                                	else
                                                                		tmp = Float64(Float64(Float64(1.0 - Float64(0.5 / x)) / n) / x);
                                                                	end
                                                                	return tmp
                                                                end
                                                                
                                                                function tmp_2 = code(x, n)
                                                                	tmp = 0.0;
                                                                	if (x <= 210.0)
                                                                		tmp = 1.0 - (x ^ (n ^ -1.0));
                                                                	else
                                                                		tmp = ((1.0 - (0.5 / x)) / n) / x;
                                                                	end
                                                                	tmp_2 = tmp;
                                                                end
                                                                
                                                                code[x_, n_] := If[LessEqual[x, 210.0], N[(1.0 - N[Power[x, N[Power[n, -1.0], $MachinePrecision]], $MachinePrecision]), $MachinePrecision], N[(N[(N[(1.0 - N[(0.5 / x), $MachinePrecision]), $MachinePrecision] / n), $MachinePrecision] / x), $MachinePrecision]]
                                                                
                                                                \begin{array}{l}
                                                                
                                                                \\
                                                                \begin{array}{l}
                                                                \mathbf{if}\;x \leq 210:\\
                                                                \;\;\;\;1 - {x}^{\left({n}^{-1}\right)}\\
                                                                
                                                                \mathbf{else}:\\
                                                                \;\;\;\;\frac{\frac{1 - \frac{0.5}{x}}{n}}{x}\\
                                                                
                                                                
                                                                \end{array}
                                                                \end{array}
                                                                
                                                                Derivation
                                                                1. Split input into 2 regimes
                                                                2. if x < 210

                                                                  1. Initial program 41.1%

                                                                    \[{\left(x + 1\right)}^{\left(\frac{1}{n}\right)} - {x}^{\left(\frac{1}{n}\right)} \]
                                                                  2. Add Preprocessing
                                                                  3. Taylor expanded in x around 0

                                                                    \[\leadsto \color{blue}{1} - {x}^{\left(\frac{1}{n}\right)} \]
                                                                  4. Step-by-step derivation
                                                                    1. Applied rewrites37.3%

                                                                      \[\leadsto \color{blue}{1} - {x}^{\left(\frac{1}{n}\right)} \]

                                                                    if 210 < x

                                                                    1. Initial program 64.3%

                                                                      \[{\left(x + 1\right)}^{\left(\frac{1}{n}\right)} - {x}^{\left(\frac{1}{n}\right)} \]
                                                                    2. Add Preprocessing
                                                                    3. Taylor expanded in x around inf

                                                                      \[\leadsto \color{blue}{\frac{\frac{e^{-1 \cdot \frac{\log \left(\frac{1}{x}\right)}{n}}}{n} + \frac{e^{-1 \cdot \frac{\log \left(\frac{1}{x}\right)}{n}} \cdot \left(\frac{1}{2} \cdot \frac{1}{{n}^{2}} - \frac{1}{2} \cdot \frac{1}{n}\right)}{x}}{x}} \]
                                                                    4. Applied rewrites84.4%

                                                                      \[\leadsto \color{blue}{\frac{\mathsf{fma}\left(\frac{\frac{-0.5 + \frac{0.5}{n}}{n}}{x}, e^{\frac{\log x}{n}}, \frac{e^{\frac{\log x}{n}}}{n}\right)}{x}} \]
                                                                    5. Taylor expanded in n around inf

                                                                      \[\leadsto \frac{\frac{1 - \frac{1}{2} \cdot \frac{1}{x}}{n}}{x} \]
                                                                    6. Step-by-step derivation
                                                                      1. Applied rewrites69.7%

                                                                        \[\leadsto \frac{\frac{1 - \frac{0.5}{x}}{n}}{x} \]
                                                                    7. Recombined 2 regimes into one program.
                                                                    8. Final simplification49.8%

                                                                      \[\leadsto \begin{array}{l} \mathbf{if}\;x \leq 210:\\ \;\;\;\;1 - {x}^{\left({n}^{-1}\right)}\\ \mathbf{else}:\\ \;\;\;\;\frac{\frac{1 - \frac{0.5}{x}}{n}}{x}\\ \end{array} \]
                                                                    9. Add Preprocessing

                                                                    Alternative 13: 40.6% accurate, 2.0× speedup?

                                                                    \[\begin{array}{l} \\ \frac{{x}^{-1}}{n} \end{array} \]
                                                                    (FPCore (x n) :precision binary64 (/ (pow x -1.0) n))
                                                                    double code(double x, double n) {
                                                                    	return pow(x, -1.0) / n;
                                                                    }
                                                                    
                                                                    real(8) function code(x, n)
                                                                        real(8), intent (in) :: x
                                                                        real(8), intent (in) :: n
                                                                        code = (x ** (-1.0d0)) / n
                                                                    end function
                                                                    
                                                                    public static double code(double x, double n) {
                                                                    	return Math.pow(x, -1.0) / n;
                                                                    }
                                                                    
                                                                    def code(x, n):
                                                                    	return math.pow(x, -1.0) / n
                                                                    
                                                                    function code(x, n)
                                                                    	return Float64((x ^ -1.0) / n)
                                                                    end
                                                                    
                                                                    function tmp = code(x, n)
                                                                    	tmp = (x ^ -1.0) / n;
                                                                    end
                                                                    
                                                                    code[x_, n_] := N[(N[Power[x, -1.0], $MachinePrecision] / n), $MachinePrecision]
                                                                    
                                                                    \begin{array}{l}
                                                                    
                                                                    \\
                                                                    \frac{{x}^{-1}}{n}
                                                                    \end{array}
                                                                    
                                                                    Derivation
                                                                    1. Initial program 50.0%

                                                                      \[{\left(x + 1\right)}^{\left(\frac{1}{n}\right)} - {x}^{\left(\frac{1}{n}\right)} \]
                                                                    2. Add Preprocessing
                                                                    3. Taylor expanded in x around inf

                                                                      \[\leadsto \color{blue}{\frac{e^{-1 \cdot \frac{\log \left(\frac{1}{x}\right)}{n}}}{n \cdot x}} \]
                                                                    4. Step-by-step derivation
                                                                      1. lower-/.f64N/A

                                                                        \[\leadsto \color{blue}{\frac{e^{-1 \cdot \frac{\log \left(\frac{1}{x}\right)}{n}}}{n \cdot x}} \]
                                                                      2. *-commutativeN/A

                                                                        \[\leadsto \frac{e^{\color{blue}{\frac{\log \left(\frac{1}{x}\right)}{n} \cdot -1}}}{n \cdot x} \]
                                                                      3. log-recN/A

                                                                        \[\leadsto \frac{e^{\frac{\color{blue}{\mathsf{neg}\left(\log x\right)}}{n} \cdot -1}}{n \cdot x} \]
                                                                      4. mul-1-negN/A

                                                                        \[\leadsto \frac{e^{\frac{\color{blue}{-1 \cdot \log x}}{n} \cdot -1}}{n \cdot x} \]
                                                                      5. *-commutativeN/A

                                                                        \[\leadsto \frac{e^{\color{blue}{-1 \cdot \frac{-1 \cdot \log x}{n}}}}{n \cdot x} \]
                                                                      6. associate-*r/N/A

                                                                        \[\leadsto \frac{e^{\color{blue}{\frac{-1 \cdot \left(-1 \cdot \log x\right)}{n}}}}{n \cdot x} \]
                                                                      7. mul-1-negN/A

                                                                        \[\leadsto \frac{e^{\frac{\color{blue}{\mathsf{neg}\left(-1 \cdot \log x\right)}}{n}}}{n \cdot x} \]
                                                                      8. distribute-lft-neg-inN/A

                                                                        \[\leadsto \frac{e^{\frac{\color{blue}{\left(\mathsf{neg}\left(-1\right)\right) \cdot \log x}}{n}}}{n \cdot x} \]
                                                                      9. metadata-evalN/A

                                                                        \[\leadsto \frac{e^{\frac{\color{blue}{1} \cdot \log x}{n}}}{n \cdot x} \]
                                                                      10. *-lft-identityN/A

                                                                        \[\leadsto \frac{e^{\frac{\color{blue}{\log x}}{n}}}{n \cdot x} \]
                                                                      11. lower-exp.f64N/A

                                                                        \[\leadsto \frac{\color{blue}{e^{\frac{\log x}{n}}}}{n \cdot x} \]
                                                                      12. lower-/.f64N/A

                                                                        \[\leadsto \frac{e^{\color{blue}{\frac{\log x}{n}}}}{n \cdot x} \]
                                                                      13. lower-log.f64N/A

                                                                        \[\leadsto \frac{e^{\frac{\color{blue}{\log x}}{n}}}{n \cdot x} \]
                                                                      14. lower-*.f6454.5

                                                                        \[\leadsto \frac{e^{\frac{\log x}{n}}}{\color{blue}{n \cdot x}} \]
                                                                    5. Applied rewrites54.5%

                                                                      \[\leadsto \color{blue}{\frac{e^{\frac{\log x}{n}}}{n \cdot x}} \]
                                                                    6. Taylor expanded in n around inf

                                                                      \[\leadsto \frac{1}{\color{blue}{n \cdot x}} \]
                                                                    7. Step-by-step derivation
                                                                      1. Applied rewrites40.3%

                                                                        \[\leadsto \frac{\frac{1}{n}}{\color{blue}{x}} \]
                                                                      2. Step-by-step derivation
                                                                        1. Applied rewrites40.3%

                                                                          \[\leadsto \frac{{x}^{-1}}{n} \]
                                                                        2. Add Preprocessing

                                                                        Alternative 14: 40.6% accurate, 2.0× speedup?

                                                                        \[\begin{array}{l} \\ \frac{{n}^{-1}}{x} \end{array} \]
                                                                        (FPCore (x n) :precision binary64 (/ (pow n -1.0) x))
                                                                        double code(double x, double n) {
                                                                        	return pow(n, -1.0) / x;
                                                                        }
                                                                        
                                                                        real(8) function code(x, n)
                                                                            real(8), intent (in) :: x
                                                                            real(8), intent (in) :: n
                                                                            code = (n ** (-1.0d0)) / x
                                                                        end function
                                                                        
                                                                        public static double code(double x, double n) {
                                                                        	return Math.pow(n, -1.0) / x;
                                                                        }
                                                                        
                                                                        def code(x, n):
                                                                        	return math.pow(n, -1.0) / x
                                                                        
                                                                        function code(x, n)
                                                                        	return Float64((n ^ -1.0) / x)
                                                                        end
                                                                        
                                                                        function tmp = code(x, n)
                                                                        	tmp = (n ^ -1.0) / x;
                                                                        end
                                                                        
                                                                        code[x_, n_] := N[(N[Power[n, -1.0], $MachinePrecision] / x), $MachinePrecision]
                                                                        
                                                                        \begin{array}{l}
                                                                        
                                                                        \\
                                                                        \frac{{n}^{-1}}{x}
                                                                        \end{array}
                                                                        
                                                                        Derivation
                                                                        1. Initial program 50.0%

                                                                          \[{\left(x + 1\right)}^{\left(\frac{1}{n}\right)} - {x}^{\left(\frac{1}{n}\right)} \]
                                                                        2. Add Preprocessing
                                                                        3. Taylor expanded in x around inf

                                                                          \[\leadsto \color{blue}{\frac{e^{-1 \cdot \frac{\log \left(\frac{1}{x}\right)}{n}}}{n \cdot x}} \]
                                                                        4. Step-by-step derivation
                                                                          1. lower-/.f64N/A

                                                                            \[\leadsto \color{blue}{\frac{e^{-1 \cdot \frac{\log \left(\frac{1}{x}\right)}{n}}}{n \cdot x}} \]
                                                                          2. *-commutativeN/A

                                                                            \[\leadsto \frac{e^{\color{blue}{\frac{\log \left(\frac{1}{x}\right)}{n} \cdot -1}}}{n \cdot x} \]
                                                                          3. log-recN/A

                                                                            \[\leadsto \frac{e^{\frac{\color{blue}{\mathsf{neg}\left(\log x\right)}}{n} \cdot -1}}{n \cdot x} \]
                                                                          4. mul-1-negN/A

                                                                            \[\leadsto \frac{e^{\frac{\color{blue}{-1 \cdot \log x}}{n} \cdot -1}}{n \cdot x} \]
                                                                          5. *-commutativeN/A

                                                                            \[\leadsto \frac{e^{\color{blue}{-1 \cdot \frac{-1 \cdot \log x}{n}}}}{n \cdot x} \]
                                                                          6. associate-*r/N/A

                                                                            \[\leadsto \frac{e^{\color{blue}{\frac{-1 \cdot \left(-1 \cdot \log x\right)}{n}}}}{n \cdot x} \]
                                                                          7. mul-1-negN/A

                                                                            \[\leadsto \frac{e^{\frac{\color{blue}{\mathsf{neg}\left(-1 \cdot \log x\right)}}{n}}}{n \cdot x} \]
                                                                          8. distribute-lft-neg-inN/A

                                                                            \[\leadsto \frac{e^{\frac{\color{blue}{\left(\mathsf{neg}\left(-1\right)\right) \cdot \log x}}{n}}}{n \cdot x} \]
                                                                          9. metadata-evalN/A

                                                                            \[\leadsto \frac{e^{\frac{\color{blue}{1} \cdot \log x}{n}}}{n \cdot x} \]
                                                                          10. *-lft-identityN/A

                                                                            \[\leadsto \frac{e^{\frac{\color{blue}{\log x}}{n}}}{n \cdot x} \]
                                                                          11. lower-exp.f64N/A

                                                                            \[\leadsto \frac{\color{blue}{e^{\frac{\log x}{n}}}}{n \cdot x} \]
                                                                          12. lower-/.f64N/A

                                                                            \[\leadsto \frac{e^{\color{blue}{\frac{\log x}{n}}}}{n \cdot x} \]
                                                                          13. lower-log.f64N/A

                                                                            \[\leadsto \frac{e^{\frac{\color{blue}{\log x}}{n}}}{n \cdot x} \]
                                                                          14. lower-*.f6454.5

                                                                            \[\leadsto \frac{e^{\frac{\log x}{n}}}{\color{blue}{n \cdot x}} \]
                                                                        5. Applied rewrites54.5%

                                                                          \[\leadsto \color{blue}{\frac{e^{\frac{\log x}{n}}}{n \cdot x}} \]
                                                                        6. Taylor expanded in n around inf

                                                                          \[\leadsto \frac{1}{\color{blue}{n \cdot x}} \]
                                                                        7. Step-by-step derivation
                                                                          1. Applied rewrites40.3%

                                                                            \[\leadsto \frac{\frac{1}{n}}{\color{blue}{x}} \]
                                                                          2. Final simplification40.3%

                                                                            \[\leadsto \frac{{n}^{-1}}{x} \]
                                                                          3. Add Preprocessing

                                                                          Alternative 15: 40.0% accurate, 2.2× speedup?

                                                                          \[\begin{array}{l} \\ {\left(n \cdot x\right)}^{-1} \end{array} \]
                                                                          (FPCore (x n) :precision binary64 (pow (* n x) -1.0))
                                                                          double code(double x, double n) {
                                                                          	return pow((n * x), -1.0);
                                                                          }
                                                                          
                                                                          real(8) function code(x, n)
                                                                              real(8), intent (in) :: x
                                                                              real(8), intent (in) :: n
                                                                              code = (n * x) ** (-1.0d0)
                                                                          end function
                                                                          
                                                                          public static double code(double x, double n) {
                                                                          	return Math.pow((n * x), -1.0);
                                                                          }
                                                                          
                                                                          def code(x, n):
                                                                          	return math.pow((n * x), -1.0)
                                                                          
                                                                          function code(x, n)
                                                                          	return Float64(n * x) ^ -1.0
                                                                          end
                                                                          
                                                                          function tmp = code(x, n)
                                                                          	tmp = (n * x) ^ -1.0;
                                                                          end
                                                                          
                                                                          code[x_, n_] := N[Power[N[(n * x), $MachinePrecision], -1.0], $MachinePrecision]
                                                                          
                                                                          \begin{array}{l}
                                                                          
                                                                          \\
                                                                          {\left(n \cdot x\right)}^{-1}
                                                                          \end{array}
                                                                          
                                                                          Derivation
                                                                          1. Initial program 50.0%

                                                                            \[{\left(x + 1\right)}^{\left(\frac{1}{n}\right)} - {x}^{\left(\frac{1}{n}\right)} \]
                                                                          2. Add Preprocessing
                                                                          3. Taylor expanded in x around inf

                                                                            \[\leadsto \color{blue}{\frac{e^{-1 \cdot \frac{\log \left(\frac{1}{x}\right)}{n}}}{n \cdot x}} \]
                                                                          4. Step-by-step derivation
                                                                            1. lower-/.f64N/A

                                                                              \[\leadsto \color{blue}{\frac{e^{-1 \cdot \frac{\log \left(\frac{1}{x}\right)}{n}}}{n \cdot x}} \]
                                                                            2. *-commutativeN/A

                                                                              \[\leadsto \frac{e^{\color{blue}{\frac{\log \left(\frac{1}{x}\right)}{n} \cdot -1}}}{n \cdot x} \]
                                                                            3. log-recN/A

                                                                              \[\leadsto \frac{e^{\frac{\color{blue}{\mathsf{neg}\left(\log x\right)}}{n} \cdot -1}}{n \cdot x} \]
                                                                            4. mul-1-negN/A

                                                                              \[\leadsto \frac{e^{\frac{\color{blue}{-1 \cdot \log x}}{n} \cdot -1}}{n \cdot x} \]
                                                                            5. *-commutativeN/A

                                                                              \[\leadsto \frac{e^{\color{blue}{-1 \cdot \frac{-1 \cdot \log x}{n}}}}{n \cdot x} \]
                                                                            6. associate-*r/N/A

                                                                              \[\leadsto \frac{e^{\color{blue}{\frac{-1 \cdot \left(-1 \cdot \log x\right)}{n}}}}{n \cdot x} \]
                                                                            7. mul-1-negN/A

                                                                              \[\leadsto \frac{e^{\frac{\color{blue}{\mathsf{neg}\left(-1 \cdot \log x\right)}}{n}}}{n \cdot x} \]
                                                                            8. distribute-lft-neg-inN/A

                                                                              \[\leadsto \frac{e^{\frac{\color{blue}{\left(\mathsf{neg}\left(-1\right)\right) \cdot \log x}}{n}}}{n \cdot x} \]
                                                                            9. metadata-evalN/A

                                                                              \[\leadsto \frac{e^{\frac{\color{blue}{1} \cdot \log x}{n}}}{n \cdot x} \]
                                                                            10. *-lft-identityN/A

                                                                              \[\leadsto \frac{e^{\frac{\color{blue}{\log x}}{n}}}{n \cdot x} \]
                                                                            11. lower-exp.f64N/A

                                                                              \[\leadsto \frac{\color{blue}{e^{\frac{\log x}{n}}}}{n \cdot x} \]
                                                                            12. lower-/.f64N/A

                                                                              \[\leadsto \frac{e^{\color{blue}{\frac{\log x}{n}}}}{n \cdot x} \]
                                                                            13. lower-log.f64N/A

                                                                              \[\leadsto \frac{e^{\frac{\color{blue}{\log x}}{n}}}{n \cdot x} \]
                                                                            14. lower-*.f6454.5

                                                                              \[\leadsto \frac{e^{\frac{\log x}{n}}}{\color{blue}{n \cdot x}} \]
                                                                          5. Applied rewrites54.5%

                                                                            \[\leadsto \color{blue}{\frac{e^{\frac{\log x}{n}}}{n \cdot x}} \]
                                                                          6. Taylor expanded in n around inf

                                                                            \[\leadsto \frac{1}{\color{blue}{n \cdot x}} \]
                                                                          7. Step-by-step derivation
                                                                            1. Applied rewrites40.3%

                                                                              \[\leadsto \frac{\frac{1}{n}}{\color{blue}{x}} \]
                                                                            2. Step-by-step derivation
                                                                              1. Applied rewrites40.3%

                                                                                \[\leadsto \frac{1}{n \cdot \color{blue}{x}} \]
                                                                              2. Final simplification40.3%

                                                                                \[\leadsto {\left(n \cdot x\right)}^{-1} \]
                                                                              3. Add Preprocessing

                                                                              Reproduce

                                                                              ?
                                                                              herbie shell --seed 2024332 
                                                                              (FPCore (x n)
                                                                                :name "2nthrt (problem 3.4.6)"
                                                                                :precision binary64
                                                                                (- (pow (+ x 1.0) (/ 1.0 n)) (pow x (/ 1.0 n))))