Octave 3.8, oct_fill_randg

Percentage Accurate: 99.8% → 99.8%
Time: 13.2s
Alternatives: 12
Speedup: N/A×

Specification

?
\[\begin{array}{l} \\ \begin{array}{l} t_0 := a - \frac{1}{3}\\ t_0 \cdot \left(1 + \frac{1}{\sqrt{9 \cdot t_0}} \cdot rand\right) \end{array} \end{array} \]
(FPCore (a rand)
 :precision binary64
 (let* ((t_0 (- a (/ 1.0 3.0))))
   (* t_0 (+ 1.0 (* (/ 1.0 (sqrt (* 9.0 t_0))) rand)))))
double code(double a, double rand) {
	double t_0 = a - (1.0 / 3.0);
	return t_0 * (1.0 + ((1.0 / sqrt((9.0 * t_0))) * rand));
}
real(8) function code(a, rand)
    real(8), intent (in) :: a
    real(8), intent (in) :: rand
    real(8) :: t_0
    t_0 = a - (1.0d0 / 3.0d0)
    code = t_0 * (1.0d0 + ((1.0d0 / sqrt((9.0d0 * t_0))) * rand))
end function
public static double code(double a, double rand) {
	double t_0 = a - (1.0 / 3.0);
	return t_0 * (1.0 + ((1.0 / Math.sqrt((9.0 * t_0))) * rand));
}
def code(a, rand):
	t_0 = a - (1.0 / 3.0)
	return t_0 * (1.0 + ((1.0 / math.sqrt((9.0 * t_0))) * rand))
function code(a, rand)
	t_0 = Float64(a - Float64(1.0 / 3.0))
	return Float64(t_0 * Float64(1.0 + Float64(Float64(1.0 / sqrt(Float64(9.0 * t_0))) * rand)))
end
function tmp = code(a, rand)
	t_0 = a - (1.0 / 3.0);
	tmp = t_0 * (1.0 + ((1.0 / sqrt((9.0 * t_0))) * rand));
end
code[a_, rand_] := Block[{t$95$0 = N[(a - N[(1.0 / 3.0), $MachinePrecision]), $MachinePrecision]}, N[(t$95$0 * N[(1.0 + N[(N[(1.0 / N[Sqrt[N[(9.0 * t$95$0), $MachinePrecision]], $MachinePrecision]), $MachinePrecision] * rand), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}

\\
\begin{array}{l}
t_0 := a - \frac{1}{3}\\
t_0 \cdot \left(1 + \frac{1}{\sqrt{9 \cdot t_0}} \cdot rand\right)
\end{array}
\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 12 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: 99.8% accurate, 1.0× speedup?

\[\begin{array}{l} \\ \begin{array}{l} t_0 := a - \frac{1}{3}\\ t_0 \cdot \left(1 + \frac{1}{\sqrt{9 \cdot t_0}} \cdot rand\right) \end{array} \end{array} \]
(FPCore (a rand)
 :precision binary64
 (let* ((t_0 (- a (/ 1.0 3.0))))
   (* t_0 (+ 1.0 (* (/ 1.0 (sqrt (* 9.0 t_0))) rand)))))
double code(double a, double rand) {
	double t_0 = a - (1.0 / 3.0);
	return t_0 * (1.0 + ((1.0 / sqrt((9.0 * t_0))) * rand));
}
real(8) function code(a, rand)
    real(8), intent (in) :: a
    real(8), intent (in) :: rand
    real(8) :: t_0
    t_0 = a - (1.0d0 / 3.0d0)
    code = t_0 * (1.0d0 + ((1.0d0 / sqrt((9.0d0 * t_0))) * rand))
end function
public static double code(double a, double rand) {
	double t_0 = a - (1.0 / 3.0);
	return t_0 * (1.0 + ((1.0 / Math.sqrt((9.0 * t_0))) * rand));
}
def code(a, rand):
	t_0 = a - (1.0 / 3.0)
	return t_0 * (1.0 + ((1.0 / math.sqrt((9.0 * t_0))) * rand))
function code(a, rand)
	t_0 = Float64(a - Float64(1.0 / 3.0))
	return Float64(t_0 * Float64(1.0 + Float64(Float64(1.0 / sqrt(Float64(9.0 * t_0))) * rand)))
end
function tmp = code(a, rand)
	t_0 = a - (1.0 / 3.0);
	tmp = t_0 * (1.0 + ((1.0 / sqrt((9.0 * t_0))) * rand));
end
code[a_, rand_] := Block[{t$95$0 = N[(a - N[(1.0 / 3.0), $MachinePrecision]), $MachinePrecision]}, N[(t$95$0 * N[(1.0 + N[(N[(1.0 / N[Sqrt[N[(9.0 * t$95$0), $MachinePrecision]], $MachinePrecision]), $MachinePrecision] * rand), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}

\\
\begin{array}{l}
t_0 := a - \frac{1}{3}\\
t_0 \cdot \left(1 + \frac{1}{\sqrt{9 \cdot t_0}} \cdot rand\right)
\end{array}
\end{array}

Alternative 1: 99.8% accurate, 1.1× speedup?

\[\begin{array}{l} \\ \left(a + 0.3333333333333333 \cdot \left(rand \cdot \sqrt{a - 0.3333333333333333}\right)\right) - 0.3333333333333333 \end{array} \]
(FPCore (a rand)
 :precision binary64
 (-
  (+ a (* 0.3333333333333333 (* rand (sqrt (- a 0.3333333333333333)))))
  0.3333333333333333))
double code(double a, double rand) {
	return (a + (0.3333333333333333 * (rand * sqrt((a - 0.3333333333333333))))) - 0.3333333333333333;
}
real(8) function code(a, rand)
    real(8), intent (in) :: a
    real(8), intent (in) :: rand
    code = (a + (0.3333333333333333d0 * (rand * sqrt((a - 0.3333333333333333d0))))) - 0.3333333333333333d0
end function
public static double code(double a, double rand) {
	return (a + (0.3333333333333333 * (rand * Math.sqrt((a - 0.3333333333333333))))) - 0.3333333333333333;
}
def code(a, rand):
	return (a + (0.3333333333333333 * (rand * math.sqrt((a - 0.3333333333333333))))) - 0.3333333333333333
function code(a, rand)
	return Float64(Float64(a + Float64(0.3333333333333333 * Float64(rand * sqrt(Float64(a - 0.3333333333333333))))) - 0.3333333333333333)
end
function tmp = code(a, rand)
	tmp = (a + (0.3333333333333333 * (rand * sqrt((a - 0.3333333333333333))))) - 0.3333333333333333;
end
code[a_, rand_] := N[(N[(a + N[(0.3333333333333333 * N[(rand * N[Sqrt[N[(a - 0.3333333333333333), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision] - 0.3333333333333333), $MachinePrecision]
\begin{array}{l}

\\
\left(a + 0.3333333333333333 \cdot \left(rand \cdot \sqrt{a - 0.3333333333333333}\right)\right) - 0.3333333333333333
\end{array}
Derivation
  1. Initial program 99.7%

    \[\left(a - \frac{1}{3}\right) \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
  2. Step-by-step derivation
    1. remove-double-neg99.7%

      \[\leadsto \color{blue}{\left(-\left(-\left(a - \frac{1}{3}\right)\right)\right)} \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
    2. remove-double-neg99.7%

      \[\leadsto \color{blue}{\left(a - \frac{1}{3}\right)} \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
    3. sub-neg99.7%

      \[\leadsto \color{blue}{\left(a + \left(-\frac{1}{3}\right)\right)} \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
    4. metadata-eval99.7%

      \[\leadsto \left(a + \left(-\color{blue}{0.3333333333333333}\right)\right) \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
    5. metadata-eval99.7%

      \[\leadsto \left(a + \color{blue}{-0.3333333333333333}\right) \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
    6. *-commutative99.7%

      \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\color{blue}{\left(a - \frac{1}{3}\right) \cdot 9}}} \cdot rand\right) \]
    7. sub-neg99.7%

      \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\color{blue}{\left(a + \left(-\frac{1}{3}\right)\right)} \cdot 9}} \cdot rand\right) \]
    8. metadata-eval99.7%

      \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\left(a + \left(-\color{blue}{0.3333333333333333}\right)\right) \cdot 9}} \cdot rand\right) \]
    9. metadata-eval99.7%

      \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\left(a + \color{blue}{-0.3333333333333333}\right) \cdot 9}} \cdot rand\right) \]
  3. Simplified99.7%

    \[\leadsto \color{blue}{\left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\left(a + -0.3333333333333333\right) \cdot 9}} \cdot rand\right)} \]
  4. Taylor expanded in rand around 0 99.8%

    \[\leadsto \color{blue}{\left(a + 0.3333333333333333 \cdot \left(rand \cdot \sqrt{a - 0.3333333333333333}\right)\right) - 0.3333333333333333} \]
  5. Final simplification99.8%

    \[\leadsto \left(a + 0.3333333333333333 \cdot \left(rand \cdot \sqrt{a - 0.3333333333333333}\right)\right) - 0.3333333333333333 \]

Alternative 2: 92.4% accurate, 1.1× speedup?

\[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;rand \leq -3.5 \cdot 10^{+103}:\\ \;\;\;\;rand \cdot \left(\left(a - 0.3333333333333333\right) \cdot \sqrt{\frac{0.1111111111111111}{a - 0.3333333333333333}}\right)\\ \mathbf{elif}\;rand \leq 1.8 \cdot 10^{+83}:\\ \;\;\;\;a - 0.3333333333333333\\ \mathbf{else}:\\ \;\;\;\;\sqrt{a + -0.3333333333333333} \cdot \left(0.3333333333333333 \cdot rand\right)\\ \end{array} \end{array} \]
(FPCore (a rand)
 :precision binary64
 (if (<= rand -3.5e+103)
   (*
    rand
    (*
     (- a 0.3333333333333333)
     (sqrt (/ 0.1111111111111111 (- a 0.3333333333333333)))))
   (if (<= rand 1.8e+83)
     (- a 0.3333333333333333)
     (* (sqrt (+ a -0.3333333333333333)) (* 0.3333333333333333 rand)))))
double code(double a, double rand) {
	double tmp;
	if (rand <= -3.5e+103) {
		tmp = rand * ((a - 0.3333333333333333) * sqrt((0.1111111111111111 / (a - 0.3333333333333333))));
	} else if (rand <= 1.8e+83) {
		tmp = a - 0.3333333333333333;
	} else {
		tmp = sqrt((a + -0.3333333333333333)) * (0.3333333333333333 * rand);
	}
	return tmp;
}
real(8) function code(a, rand)
    real(8), intent (in) :: a
    real(8), intent (in) :: rand
    real(8) :: tmp
    if (rand <= (-3.5d+103)) then
        tmp = rand * ((a - 0.3333333333333333d0) * sqrt((0.1111111111111111d0 / (a - 0.3333333333333333d0))))
    else if (rand <= 1.8d+83) then
        tmp = a - 0.3333333333333333d0
    else
        tmp = sqrt((a + (-0.3333333333333333d0))) * (0.3333333333333333d0 * rand)
    end if
    code = tmp
end function
public static double code(double a, double rand) {
	double tmp;
	if (rand <= -3.5e+103) {
		tmp = rand * ((a - 0.3333333333333333) * Math.sqrt((0.1111111111111111 / (a - 0.3333333333333333))));
	} else if (rand <= 1.8e+83) {
		tmp = a - 0.3333333333333333;
	} else {
		tmp = Math.sqrt((a + -0.3333333333333333)) * (0.3333333333333333 * rand);
	}
	return tmp;
}
def code(a, rand):
	tmp = 0
	if rand <= -3.5e+103:
		tmp = rand * ((a - 0.3333333333333333) * math.sqrt((0.1111111111111111 / (a - 0.3333333333333333))))
	elif rand <= 1.8e+83:
		tmp = a - 0.3333333333333333
	else:
		tmp = math.sqrt((a + -0.3333333333333333)) * (0.3333333333333333 * rand)
	return tmp
function code(a, rand)
	tmp = 0.0
	if (rand <= -3.5e+103)
		tmp = Float64(rand * Float64(Float64(a - 0.3333333333333333) * sqrt(Float64(0.1111111111111111 / Float64(a - 0.3333333333333333)))));
	elseif (rand <= 1.8e+83)
		tmp = Float64(a - 0.3333333333333333);
	else
		tmp = Float64(sqrt(Float64(a + -0.3333333333333333)) * Float64(0.3333333333333333 * rand));
	end
	return tmp
end
function tmp_2 = code(a, rand)
	tmp = 0.0;
	if (rand <= -3.5e+103)
		tmp = rand * ((a - 0.3333333333333333) * sqrt((0.1111111111111111 / (a - 0.3333333333333333))));
	elseif (rand <= 1.8e+83)
		tmp = a - 0.3333333333333333;
	else
		tmp = sqrt((a + -0.3333333333333333)) * (0.3333333333333333 * rand);
	end
	tmp_2 = tmp;
end
code[a_, rand_] := If[LessEqual[rand, -3.5e+103], N[(rand * N[(N[(a - 0.3333333333333333), $MachinePrecision] * N[Sqrt[N[(0.1111111111111111 / N[(a - 0.3333333333333333), $MachinePrecision]), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[rand, 1.8e+83], N[(a - 0.3333333333333333), $MachinePrecision], N[(N[Sqrt[N[(a + -0.3333333333333333), $MachinePrecision]], $MachinePrecision] * N[(0.3333333333333333 * rand), $MachinePrecision]), $MachinePrecision]]]
\begin{array}{l}

\\
\begin{array}{l}
\mathbf{if}\;rand \leq -3.5 \cdot 10^{+103}:\\
\;\;\;\;rand \cdot \left(\left(a - 0.3333333333333333\right) \cdot \sqrt{\frac{0.1111111111111111}{a - 0.3333333333333333}}\right)\\

\mathbf{elif}\;rand \leq 1.8 \cdot 10^{+83}:\\
\;\;\;\;a - 0.3333333333333333\\

\mathbf{else}:\\
\;\;\;\;\sqrt{a + -0.3333333333333333} \cdot \left(0.3333333333333333 \cdot rand\right)\\


\end{array}
\end{array}
Derivation
  1. Split input into 3 regimes
  2. if rand < -3.5e103

    1. Initial program 99.4%

      \[\left(a - \frac{1}{3}\right) \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
    2. Step-by-step derivation
      1. remove-double-neg99.4%

        \[\leadsto \color{blue}{\left(-\left(-\left(a - \frac{1}{3}\right)\right)\right)} \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      2. remove-double-neg99.4%

        \[\leadsto \color{blue}{\left(a - \frac{1}{3}\right)} \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      3. sub-neg99.4%

        \[\leadsto \color{blue}{\left(a + \left(-\frac{1}{3}\right)\right)} \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      4. metadata-eval99.4%

        \[\leadsto \left(a + \left(-\color{blue}{0.3333333333333333}\right)\right) \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      5. metadata-eval99.4%

        \[\leadsto \left(a + \color{blue}{-0.3333333333333333}\right) \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      6. associate-*l/99.5%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \color{blue}{\frac{1 \cdot rand}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}}}\right) \]
      7. *-lft-identity99.5%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{\color{blue}{rand}}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}}\right) \]
      8. sub-neg99.5%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{rand}{\sqrt{9 \cdot \color{blue}{\left(a + \left(-\frac{1}{3}\right)\right)}}}\right) \]
      9. distribute-rgt-in99.5%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{rand}{\sqrt{\color{blue}{a \cdot 9 + \left(-\frac{1}{3}\right) \cdot 9}}}\right) \]
      10. metadata-eval99.5%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{rand}{\sqrt{a \cdot 9 + \left(-\color{blue}{0.3333333333333333}\right) \cdot 9}}\right) \]
      11. metadata-eval99.5%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{rand}{\sqrt{a \cdot 9 + \color{blue}{-0.3333333333333333} \cdot 9}}\right) \]
      12. metadata-eval99.5%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{rand}{\sqrt{a \cdot 9 + \color{blue}{-3}}}\right) \]
    3. Simplified99.5%

      \[\leadsto \color{blue}{\left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{rand}{\sqrt{a \cdot 9 + -3}}\right)} \]
    4. Taylor expanded in rand around inf 67.7%

      \[\leadsto \color{blue}{\left(rand \cdot \left(a - 0.3333333333333333\right)\right) \cdot \sqrt{\frac{1}{9 \cdot a - 3}}} \]
    5. Step-by-step derivation
      1. sub-neg67.7%

        \[\leadsto \left(rand \cdot \color{blue}{\left(a + \left(-0.3333333333333333\right)\right)}\right) \cdot \sqrt{\frac{1}{9 \cdot a - 3}} \]
      2. metadata-eval67.7%

        \[\leadsto \left(rand \cdot \left(a + \color{blue}{-0.3333333333333333}\right)\right) \cdot \sqrt{\frac{1}{9 \cdot a - 3}} \]
      3. associate-*l*98.2%

        \[\leadsto \color{blue}{rand \cdot \left(\left(a + -0.3333333333333333\right) \cdot \sqrt{\frac{1}{9 \cdot a - 3}}\right)} \]
      4. *-commutative98.2%

        \[\leadsto rand \cdot \color{blue}{\left(\sqrt{\frac{1}{9 \cdot a - 3}} \cdot \left(a + -0.3333333333333333\right)\right)} \]
      5. sub-neg98.2%

        \[\leadsto rand \cdot \left(\sqrt{\frac{1}{\color{blue}{9 \cdot a + \left(-3\right)}}} \cdot \left(a + -0.3333333333333333\right)\right) \]
      6. metadata-eval98.2%

        \[\leadsto rand \cdot \left(\sqrt{\frac{1}{9 \cdot a + \color{blue}{-3}}} \cdot \left(a + -0.3333333333333333\right)\right) \]
      7. metadata-eval98.2%

        \[\leadsto rand \cdot \left(\sqrt{\frac{1}{9 \cdot a + \color{blue}{9 \cdot -0.3333333333333333}}} \cdot \left(a + -0.3333333333333333\right)\right) \]
      8. distribute-lft-in98.2%

        \[\leadsto rand \cdot \left(\sqrt{\frac{1}{\color{blue}{9 \cdot \left(a + -0.3333333333333333\right)}}} \cdot \left(a + -0.3333333333333333\right)\right) \]
      9. associate-/r*98.1%

        \[\leadsto rand \cdot \left(\sqrt{\color{blue}{\frac{\frac{1}{9}}{a + -0.3333333333333333}}} \cdot \left(a + -0.3333333333333333\right)\right) \]
      10. metadata-eval98.1%

        \[\leadsto rand \cdot \left(\sqrt{\frac{\color{blue}{0.1111111111111111}}{a + -0.3333333333333333}} \cdot \left(a + -0.3333333333333333\right)\right) \]
      11. metadata-eval98.1%

        \[\leadsto rand \cdot \left(\sqrt{\frac{0.1111111111111111}{a + \color{blue}{\left(-0.3333333333333333\right)}}} \cdot \left(a + -0.3333333333333333\right)\right) \]
      12. sub-neg98.1%

        \[\leadsto rand \cdot \left(\sqrt{\frac{0.1111111111111111}{\color{blue}{a - 0.3333333333333333}}} \cdot \left(a + -0.3333333333333333\right)\right) \]
      13. metadata-eval98.1%

        \[\leadsto rand \cdot \left(\sqrt{\frac{0.1111111111111111}{a - 0.3333333333333333}} \cdot \left(a + \color{blue}{\left(-0.3333333333333333\right)}\right)\right) \]
      14. sub-neg98.1%

        \[\leadsto rand \cdot \left(\sqrt{\frac{0.1111111111111111}{a - 0.3333333333333333}} \cdot \color{blue}{\left(a - 0.3333333333333333\right)}\right) \]
    6. Simplified98.1%

      \[\leadsto \color{blue}{rand \cdot \left(\sqrt{\frac{0.1111111111111111}{a - 0.3333333333333333}} \cdot \left(a - 0.3333333333333333\right)\right)} \]

    if -3.5e103 < rand < 1.7999999999999999e83

    1. Initial program 99.9%

      \[\left(a - \frac{1}{3}\right) \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
    2. Step-by-step derivation
      1. remove-double-neg99.9%

        \[\leadsto \color{blue}{\left(-\left(-\left(a - \frac{1}{3}\right)\right)\right)} \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      2. remove-double-neg99.9%

        \[\leadsto \color{blue}{\left(a - \frac{1}{3}\right)} \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      3. sub-neg99.9%

        \[\leadsto \color{blue}{\left(a + \left(-\frac{1}{3}\right)\right)} \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      4. metadata-eval99.9%

        \[\leadsto \left(a + \left(-\color{blue}{0.3333333333333333}\right)\right) \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      5. metadata-eval99.9%

        \[\leadsto \left(a + \color{blue}{-0.3333333333333333}\right) \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      6. *-commutative99.9%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\color{blue}{\left(a - \frac{1}{3}\right) \cdot 9}}} \cdot rand\right) \]
      7. sub-neg99.9%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\color{blue}{\left(a + \left(-\frac{1}{3}\right)\right)} \cdot 9}} \cdot rand\right) \]
      8. metadata-eval99.9%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\left(a + \left(-\color{blue}{0.3333333333333333}\right)\right) \cdot 9}} \cdot rand\right) \]
      9. metadata-eval99.9%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\left(a + \color{blue}{-0.3333333333333333}\right) \cdot 9}} \cdot rand\right) \]
    3. Simplified99.9%

      \[\leadsto \color{blue}{\left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\left(a + -0.3333333333333333\right) \cdot 9}} \cdot rand\right)} \]
    4. Taylor expanded in rand around 0 91.7%

      \[\leadsto \color{blue}{a - 0.3333333333333333} \]

    if 1.7999999999999999e83 < rand

    1. Initial program 99.4%

      \[\left(a - \frac{1}{3}\right) \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
    2. Step-by-step derivation
      1. remove-double-neg99.4%

        \[\leadsto \color{blue}{\left(-\left(-\left(a - \frac{1}{3}\right)\right)\right)} \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      2. remove-double-neg99.4%

        \[\leadsto \color{blue}{\left(a - \frac{1}{3}\right)} \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      3. sub-neg99.4%

        \[\leadsto \color{blue}{\left(a + \left(-\frac{1}{3}\right)\right)} \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      4. metadata-eval99.4%

        \[\leadsto \left(a + \left(-\color{blue}{0.3333333333333333}\right)\right) \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      5. metadata-eval99.4%

        \[\leadsto \left(a + \color{blue}{-0.3333333333333333}\right) \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      6. associate-*l/99.6%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \color{blue}{\frac{1 \cdot rand}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}}}\right) \]
      7. *-lft-identity99.6%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{\color{blue}{rand}}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}}\right) \]
      8. sub-neg99.6%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{rand}{\sqrt{9 \cdot \color{blue}{\left(a + \left(-\frac{1}{3}\right)\right)}}}\right) \]
      9. distribute-rgt-in99.5%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{rand}{\sqrt{\color{blue}{a \cdot 9 + \left(-\frac{1}{3}\right) \cdot 9}}}\right) \]
      10. metadata-eval99.5%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{rand}{\sqrt{a \cdot 9 + \left(-\color{blue}{0.3333333333333333}\right) \cdot 9}}\right) \]
      11. metadata-eval99.5%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{rand}{\sqrt{a \cdot 9 + \color{blue}{-0.3333333333333333} \cdot 9}}\right) \]
      12. metadata-eval99.5%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{rand}{\sqrt{a \cdot 9 + \color{blue}{-3}}}\right) \]
    3. Simplified99.5%

      \[\leadsto \color{blue}{\left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{rand}{\sqrt{a \cdot 9 + -3}}\right)} \]
    4. Step-by-step derivation
      1. add-sqr-sqrt99.2%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \color{blue}{\sqrt{\frac{rand}{\sqrt{a \cdot 9 + -3}}} \cdot \sqrt{\frac{rand}{\sqrt{a \cdot 9 + -3}}}}\right) \]
      2. sqrt-unprod89.6%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \color{blue}{\sqrt{\frac{rand}{\sqrt{a \cdot 9 + -3}} \cdot \frac{rand}{\sqrt{a \cdot 9 + -3}}}}\right) \]
      3. frac-times69.5%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \sqrt{\color{blue}{\frac{rand \cdot rand}{\sqrt{a \cdot 9 + -3} \cdot \sqrt{a \cdot 9 + -3}}}}\right) \]
      4. add-sqr-sqrt69.5%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \sqrt{\frac{rand \cdot rand}{\color{blue}{a \cdot 9 + -3}}}\right) \]
      5. metadata-eval69.5%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \sqrt{\frac{rand \cdot rand}{a \cdot 9 + \color{blue}{-0.3333333333333333 \cdot 9}}}\right) \]
      6. distribute-rgt-in69.5%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \sqrt{\frac{rand \cdot rand}{\color{blue}{9 \cdot \left(a + -0.3333333333333333\right)}}}\right) \]
      7. *-commutative69.5%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \sqrt{\frac{rand \cdot rand}{\color{blue}{\left(a + -0.3333333333333333\right) \cdot 9}}}\right) \]
      8. add-sqr-sqrt69.5%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \sqrt{\frac{rand \cdot rand}{\color{blue}{\sqrt{\left(a + -0.3333333333333333\right) \cdot 9} \cdot \sqrt{\left(a + -0.3333333333333333\right) \cdot 9}}}}\right) \]
      9. frac-times89.6%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \sqrt{\color{blue}{\frac{rand}{\sqrt{\left(a + -0.3333333333333333\right) \cdot 9}} \cdot \frac{rand}{\sqrt{\left(a + -0.3333333333333333\right) \cdot 9}}}}\right) \]
      10. *-un-lft-identity89.6%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \sqrt{\frac{\color{blue}{1 \cdot rand}}{\sqrt{\left(a + -0.3333333333333333\right) \cdot 9}} \cdot \frac{rand}{\sqrt{\left(a + -0.3333333333333333\right) \cdot 9}}}\right) \]
      11. associate-*l/89.6%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \sqrt{\color{blue}{\left(\frac{1}{\sqrt{\left(a + -0.3333333333333333\right) \cdot 9}} \cdot rand\right)} \cdot \frac{rand}{\sqrt{\left(a + -0.3333333333333333\right) \cdot 9}}}\right) \]
      12. *-un-lft-identity89.6%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \sqrt{\left(\frac{1}{\sqrt{\left(a + -0.3333333333333333\right) \cdot 9}} \cdot rand\right) \cdot \frac{\color{blue}{1 \cdot rand}}{\sqrt{\left(a + -0.3333333333333333\right) \cdot 9}}}\right) \]
      13. associate-*l/89.5%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \sqrt{\left(\frac{1}{\sqrt{\left(a + -0.3333333333333333\right) \cdot 9}} \cdot rand\right) \cdot \color{blue}{\left(\frac{1}{\sqrt{\left(a + -0.3333333333333333\right) \cdot 9}} \cdot rand\right)}}\right) \]
      14. sqrt-unprod99.1%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \color{blue}{\sqrt{\frac{1}{\sqrt{\left(a + -0.3333333333333333\right) \cdot 9}} \cdot rand} \cdot \sqrt{\frac{1}{\sqrt{\left(a + -0.3333333333333333\right) \cdot 9}} \cdot rand}}\right) \]
      15. add-sqr-sqrt99.4%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \color{blue}{\frac{1}{\sqrt{\left(a + -0.3333333333333333\right) \cdot 9}} \cdot rand}\right) \]
      16. associate-*l/99.6%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \color{blue}{\frac{1 \cdot rand}{\sqrt{\left(a + -0.3333333333333333\right) \cdot 9}}}\right) \]
      17. sqrt-prod99.6%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1 \cdot rand}{\color{blue}{\sqrt{a + -0.3333333333333333} \cdot \sqrt{9}}}\right) \]
    5. Applied egg-rr99.5%

      \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \color{blue}{\frac{1}{\sqrt{a + -0.3333333333333333}} \cdot \frac{rand}{3}}\right) \]
    6. Step-by-step derivation
      1. metadata-eval99.5%

        \[\leadsto \left(a + \color{blue}{\left(-0.3333333333333333\right)}\right) \cdot \left(1 + \frac{1}{\sqrt{a + -0.3333333333333333}} \cdot \frac{rand}{3}\right) \]
      2. sub-neg99.5%

        \[\leadsto \color{blue}{\left(a - 0.3333333333333333\right)} \cdot \left(1 + \frac{1}{\sqrt{a + -0.3333333333333333}} \cdot \frac{rand}{3}\right) \]
      3. distribute-lft-in99.5%

        \[\leadsto \color{blue}{\left(a - 0.3333333333333333\right) \cdot 1 + \left(a - 0.3333333333333333\right) \cdot \left(\frac{1}{\sqrt{a + -0.3333333333333333}} \cdot \frac{rand}{3}\right)} \]
      4. *-rgt-identity99.5%

        \[\leadsto \color{blue}{\left(a - 0.3333333333333333\right)} + \left(a - 0.3333333333333333\right) \cdot \left(\frac{1}{\sqrt{a + -0.3333333333333333}} \cdot \frac{rand}{3}\right) \]
      5. sub-neg99.5%

        \[\leadsto \color{blue}{\left(a + \left(-0.3333333333333333\right)\right)} + \left(a - 0.3333333333333333\right) \cdot \left(\frac{1}{\sqrt{a + -0.3333333333333333}} \cdot \frac{rand}{3}\right) \]
      6. metadata-eval99.5%

        \[\leadsto \left(a + \color{blue}{-0.3333333333333333}\right) + \left(a - 0.3333333333333333\right) \cdot \left(\frac{1}{\sqrt{a + -0.3333333333333333}} \cdot \frac{rand}{3}\right) \]
      7. sub-neg99.5%

        \[\leadsto \left(a + -0.3333333333333333\right) + \color{blue}{\left(a + \left(-0.3333333333333333\right)\right)} \cdot \left(\frac{1}{\sqrt{a + -0.3333333333333333}} \cdot \frac{rand}{3}\right) \]
      8. metadata-eval99.5%

        \[\leadsto \left(a + -0.3333333333333333\right) + \left(a + \color{blue}{-0.3333333333333333}\right) \cdot \left(\frac{1}{\sqrt{a + -0.3333333333333333}} \cdot \frac{rand}{3}\right) \]
      9. frac-times99.6%

        \[\leadsto \left(a + -0.3333333333333333\right) + \left(a + -0.3333333333333333\right) \cdot \color{blue}{\frac{1 \cdot rand}{\sqrt{a + -0.3333333333333333} \cdot 3}} \]
      10. *-un-lft-identity99.6%

        \[\leadsto \left(a + -0.3333333333333333\right) + \left(a + -0.3333333333333333\right) \cdot \frac{\color{blue}{rand}}{\sqrt{a + -0.3333333333333333} \cdot 3} \]
    7. Applied egg-rr99.6%

      \[\leadsto \color{blue}{\left(a + -0.3333333333333333\right) + \left(a + -0.3333333333333333\right) \cdot \frac{rand}{\sqrt{a + -0.3333333333333333} \cdot 3}} \]
    8. Step-by-step derivation
      1. *-commutative99.6%

        \[\leadsto \left(a + -0.3333333333333333\right) + \color{blue}{\frac{rand}{\sqrt{a + -0.3333333333333333} \cdot 3} \cdot \left(a + -0.3333333333333333\right)} \]
      2. distribute-rgt1-in99.6%

        \[\leadsto \color{blue}{\left(\frac{rand}{\sqrt{a + -0.3333333333333333} \cdot 3} + 1\right) \cdot \left(a + -0.3333333333333333\right)} \]
      3. *-rgt-identity99.6%

        \[\leadsto \left(\color{blue}{\frac{rand}{\sqrt{a + -0.3333333333333333} \cdot 3} \cdot 1} + 1\right) \cdot \left(a + -0.3333333333333333\right) \]
      4. *-commutative99.6%

        \[\leadsto \left(\color{blue}{1 \cdot \frac{rand}{\sqrt{a + -0.3333333333333333} \cdot 3}} + 1\right) \cdot \left(a + -0.3333333333333333\right) \]
      5. *-lft-identity99.6%

        \[\leadsto \left(\color{blue}{\frac{rand}{\sqrt{a + -0.3333333333333333} \cdot 3}} + 1\right) \cdot \left(a + -0.3333333333333333\right) \]
      6. *-commutative99.6%

        \[\leadsto \left(\frac{rand}{\color{blue}{3 \cdot \sqrt{a + -0.3333333333333333}}} + 1\right) \cdot \left(a + -0.3333333333333333\right) \]
      7. +-commutative99.6%

        \[\leadsto \left(\frac{rand}{3 \cdot \sqrt{\color{blue}{-0.3333333333333333 + a}}} + 1\right) \cdot \left(a + -0.3333333333333333\right) \]
      8. +-commutative99.6%

        \[\leadsto \left(\frac{rand}{3 \cdot \sqrt{-0.3333333333333333 + a}} + 1\right) \cdot \color{blue}{\left(-0.3333333333333333 + a\right)} \]
    9. Simplified99.6%

      \[\leadsto \color{blue}{\left(\frac{rand}{3 \cdot \sqrt{-0.3333333333333333 + a}} + 1\right) \cdot \left(-0.3333333333333333 + a\right)} \]
    10. Taylor expanded in rand around inf 98.1%

      \[\leadsto \color{blue}{0.3333333333333333 \cdot \left(rand \cdot \sqrt{a - 0.3333333333333333}\right)} \]
    11. Step-by-step derivation
      1. *-commutative98.1%

        \[\leadsto \color{blue}{\left(rand \cdot \sqrt{a - 0.3333333333333333}\right) \cdot 0.3333333333333333} \]
      2. *-commutative98.1%

        \[\leadsto \color{blue}{\left(\sqrt{a - 0.3333333333333333} \cdot rand\right)} \cdot 0.3333333333333333 \]
      3. sub-neg98.1%

        \[\leadsto \left(\sqrt{\color{blue}{a + \left(-0.3333333333333333\right)}} \cdot rand\right) \cdot 0.3333333333333333 \]
      4. metadata-eval98.1%

        \[\leadsto \left(\sqrt{a + \color{blue}{-0.3333333333333333}} \cdot rand\right) \cdot 0.3333333333333333 \]
      5. +-commutative98.1%

        \[\leadsto \left(\sqrt{\color{blue}{-0.3333333333333333 + a}} \cdot rand\right) \cdot 0.3333333333333333 \]
      6. associate-*l*98.1%

        \[\leadsto \color{blue}{\sqrt{-0.3333333333333333 + a} \cdot \left(rand \cdot 0.3333333333333333\right)} \]
      7. *-commutative98.1%

        \[\leadsto \sqrt{-0.3333333333333333 + a} \cdot \color{blue}{\left(0.3333333333333333 \cdot rand\right)} \]
    12. Simplified98.1%

      \[\leadsto \color{blue}{\sqrt{-0.3333333333333333 + a} \cdot \left(0.3333333333333333 \cdot rand\right)} \]
  3. Recombined 3 regimes into one program.
  4. Final simplification93.9%

    \[\leadsto \begin{array}{l} \mathbf{if}\;rand \leq -3.5 \cdot 10^{+103}:\\ \;\;\;\;rand \cdot \left(\left(a - 0.3333333333333333\right) \cdot \sqrt{\frac{0.1111111111111111}{a - 0.3333333333333333}}\right)\\ \mathbf{elif}\;rand \leq 1.8 \cdot 10^{+83}:\\ \;\;\;\;a - 0.3333333333333333\\ \mathbf{else}:\\ \;\;\;\;\sqrt{a + -0.3333333333333333} \cdot \left(0.3333333333333333 \cdot rand\right)\\ \end{array} \]

Alternative 3: 92.4% accurate, 1.1× speedup?

\[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;rand \leq -3.5 \cdot 10^{+103} \lor \neg \left(rand \leq 2.6 \cdot 10^{+82}\right):\\ \;\;\;\;0.3333333333333333 \cdot \left(rand \cdot \sqrt{a - 0.3333333333333333}\right)\\ \mathbf{else}:\\ \;\;\;\;a - 0.3333333333333333\\ \end{array} \end{array} \]
(FPCore (a rand)
 :precision binary64
 (if (or (<= rand -3.5e+103) (not (<= rand 2.6e+82)))
   (* 0.3333333333333333 (* rand (sqrt (- a 0.3333333333333333))))
   (- a 0.3333333333333333)))
double code(double a, double rand) {
	double tmp;
	if ((rand <= -3.5e+103) || !(rand <= 2.6e+82)) {
		tmp = 0.3333333333333333 * (rand * sqrt((a - 0.3333333333333333)));
	} else {
		tmp = a - 0.3333333333333333;
	}
	return tmp;
}
real(8) function code(a, rand)
    real(8), intent (in) :: a
    real(8), intent (in) :: rand
    real(8) :: tmp
    if ((rand <= (-3.5d+103)) .or. (.not. (rand <= 2.6d+82))) then
        tmp = 0.3333333333333333d0 * (rand * sqrt((a - 0.3333333333333333d0)))
    else
        tmp = a - 0.3333333333333333d0
    end if
    code = tmp
end function
public static double code(double a, double rand) {
	double tmp;
	if ((rand <= -3.5e+103) || !(rand <= 2.6e+82)) {
		tmp = 0.3333333333333333 * (rand * Math.sqrt((a - 0.3333333333333333)));
	} else {
		tmp = a - 0.3333333333333333;
	}
	return tmp;
}
def code(a, rand):
	tmp = 0
	if (rand <= -3.5e+103) or not (rand <= 2.6e+82):
		tmp = 0.3333333333333333 * (rand * math.sqrt((a - 0.3333333333333333)))
	else:
		tmp = a - 0.3333333333333333
	return tmp
function code(a, rand)
	tmp = 0.0
	if ((rand <= -3.5e+103) || !(rand <= 2.6e+82))
		tmp = Float64(0.3333333333333333 * Float64(rand * sqrt(Float64(a - 0.3333333333333333))));
	else
		tmp = Float64(a - 0.3333333333333333);
	end
	return tmp
end
function tmp_2 = code(a, rand)
	tmp = 0.0;
	if ((rand <= -3.5e+103) || ~((rand <= 2.6e+82)))
		tmp = 0.3333333333333333 * (rand * sqrt((a - 0.3333333333333333)));
	else
		tmp = a - 0.3333333333333333;
	end
	tmp_2 = tmp;
end
code[a_, rand_] := If[Or[LessEqual[rand, -3.5e+103], N[Not[LessEqual[rand, 2.6e+82]], $MachinePrecision]], N[(0.3333333333333333 * N[(rand * N[Sqrt[N[(a - 0.3333333333333333), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(a - 0.3333333333333333), $MachinePrecision]]
\begin{array}{l}

\\
\begin{array}{l}
\mathbf{if}\;rand \leq -3.5 \cdot 10^{+103} \lor \neg \left(rand \leq 2.6 \cdot 10^{+82}\right):\\
\;\;\;\;0.3333333333333333 \cdot \left(rand \cdot \sqrt{a - 0.3333333333333333}\right)\\

\mathbf{else}:\\
\;\;\;\;a - 0.3333333333333333\\


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if rand < -3.5e103 or 2.5999999999999998e82 < rand

    1. Initial program 99.4%

      \[\left(a - \frac{1}{3}\right) \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
    2. Step-by-step derivation
      1. remove-double-neg99.4%

        \[\leadsto \color{blue}{\left(-\left(-\left(a - \frac{1}{3}\right)\right)\right)} \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      2. remove-double-neg99.4%

        \[\leadsto \color{blue}{\left(a - \frac{1}{3}\right)} \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      3. sub-neg99.4%

        \[\leadsto \color{blue}{\left(a + \left(-\frac{1}{3}\right)\right)} \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      4. metadata-eval99.4%

        \[\leadsto \left(a + \left(-\color{blue}{0.3333333333333333}\right)\right) \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      5. metadata-eval99.4%

        \[\leadsto \left(a + \color{blue}{-0.3333333333333333}\right) \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      6. *-commutative99.4%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\color{blue}{\left(a - \frac{1}{3}\right) \cdot 9}}} \cdot rand\right) \]
      7. sub-neg99.4%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\color{blue}{\left(a + \left(-\frac{1}{3}\right)\right)} \cdot 9}} \cdot rand\right) \]
      8. metadata-eval99.4%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\left(a + \left(-\color{blue}{0.3333333333333333}\right)\right) \cdot 9}} \cdot rand\right) \]
      9. metadata-eval99.4%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\left(a + \color{blue}{-0.3333333333333333}\right) \cdot 9}} \cdot rand\right) \]
    3. Simplified99.4%

      \[\leadsto \color{blue}{\left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\left(a + -0.3333333333333333\right) \cdot 9}} \cdot rand\right)} \]
    4. Taylor expanded in rand around inf 98.1%

      \[\leadsto \color{blue}{0.3333333333333333 \cdot \left(rand \cdot \sqrt{a - 0.3333333333333333}\right)} \]

    if -3.5e103 < rand < 2.5999999999999998e82

    1. Initial program 99.9%

      \[\left(a - \frac{1}{3}\right) \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
    2. Step-by-step derivation
      1. remove-double-neg99.9%

        \[\leadsto \color{blue}{\left(-\left(-\left(a - \frac{1}{3}\right)\right)\right)} \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      2. remove-double-neg99.9%

        \[\leadsto \color{blue}{\left(a - \frac{1}{3}\right)} \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      3. sub-neg99.9%

        \[\leadsto \color{blue}{\left(a + \left(-\frac{1}{3}\right)\right)} \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      4. metadata-eval99.9%

        \[\leadsto \left(a + \left(-\color{blue}{0.3333333333333333}\right)\right) \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      5. metadata-eval99.9%

        \[\leadsto \left(a + \color{blue}{-0.3333333333333333}\right) \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      6. *-commutative99.9%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\color{blue}{\left(a - \frac{1}{3}\right) \cdot 9}}} \cdot rand\right) \]
      7. sub-neg99.9%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\color{blue}{\left(a + \left(-\frac{1}{3}\right)\right)} \cdot 9}} \cdot rand\right) \]
      8. metadata-eval99.9%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\left(a + \left(-\color{blue}{0.3333333333333333}\right)\right) \cdot 9}} \cdot rand\right) \]
      9. metadata-eval99.9%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\left(a + \color{blue}{-0.3333333333333333}\right) \cdot 9}} \cdot rand\right) \]
    3. Simplified99.9%

      \[\leadsto \color{blue}{\left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\left(a + -0.3333333333333333\right) \cdot 9}} \cdot rand\right)} \]
    4. Taylor expanded in rand around 0 91.7%

      \[\leadsto \color{blue}{a - 0.3333333333333333} \]
  3. Recombined 2 regimes into one program.
  4. Final simplification93.9%

    \[\leadsto \begin{array}{l} \mathbf{if}\;rand \leq -3.5 \cdot 10^{+103} \lor \neg \left(rand \leq 2.6 \cdot 10^{+82}\right):\\ \;\;\;\;0.3333333333333333 \cdot \left(rand \cdot \sqrt{a - 0.3333333333333333}\right)\\ \mathbf{else}:\\ \;\;\;\;a - 0.3333333333333333\\ \end{array} \]

Alternative 4: 92.4% accurate, 1.1× speedup?

\[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;rand \leq -3.5 \cdot 10^{+103}:\\ \;\;\;\;0.3333333333333333 \cdot \left(rand \cdot \sqrt{a - 0.3333333333333333}\right)\\ \mathbf{elif}\;rand \leq 1.65 \cdot 10^{+83}:\\ \;\;\;\;a - 0.3333333333333333\\ \mathbf{else}:\\ \;\;\;\;\sqrt{a + -0.3333333333333333} \cdot \left(0.3333333333333333 \cdot rand\right)\\ \end{array} \end{array} \]
(FPCore (a rand)
 :precision binary64
 (if (<= rand -3.5e+103)
   (* 0.3333333333333333 (* rand (sqrt (- a 0.3333333333333333))))
   (if (<= rand 1.65e+83)
     (- a 0.3333333333333333)
     (* (sqrt (+ a -0.3333333333333333)) (* 0.3333333333333333 rand)))))
double code(double a, double rand) {
	double tmp;
	if (rand <= -3.5e+103) {
		tmp = 0.3333333333333333 * (rand * sqrt((a - 0.3333333333333333)));
	} else if (rand <= 1.65e+83) {
		tmp = a - 0.3333333333333333;
	} else {
		tmp = sqrt((a + -0.3333333333333333)) * (0.3333333333333333 * rand);
	}
	return tmp;
}
real(8) function code(a, rand)
    real(8), intent (in) :: a
    real(8), intent (in) :: rand
    real(8) :: tmp
    if (rand <= (-3.5d+103)) then
        tmp = 0.3333333333333333d0 * (rand * sqrt((a - 0.3333333333333333d0)))
    else if (rand <= 1.65d+83) then
        tmp = a - 0.3333333333333333d0
    else
        tmp = sqrt((a + (-0.3333333333333333d0))) * (0.3333333333333333d0 * rand)
    end if
    code = tmp
end function
public static double code(double a, double rand) {
	double tmp;
	if (rand <= -3.5e+103) {
		tmp = 0.3333333333333333 * (rand * Math.sqrt((a - 0.3333333333333333)));
	} else if (rand <= 1.65e+83) {
		tmp = a - 0.3333333333333333;
	} else {
		tmp = Math.sqrt((a + -0.3333333333333333)) * (0.3333333333333333 * rand);
	}
	return tmp;
}
def code(a, rand):
	tmp = 0
	if rand <= -3.5e+103:
		tmp = 0.3333333333333333 * (rand * math.sqrt((a - 0.3333333333333333)))
	elif rand <= 1.65e+83:
		tmp = a - 0.3333333333333333
	else:
		tmp = math.sqrt((a + -0.3333333333333333)) * (0.3333333333333333 * rand)
	return tmp
function code(a, rand)
	tmp = 0.0
	if (rand <= -3.5e+103)
		tmp = Float64(0.3333333333333333 * Float64(rand * sqrt(Float64(a - 0.3333333333333333))));
	elseif (rand <= 1.65e+83)
		tmp = Float64(a - 0.3333333333333333);
	else
		tmp = Float64(sqrt(Float64(a + -0.3333333333333333)) * Float64(0.3333333333333333 * rand));
	end
	return tmp
end
function tmp_2 = code(a, rand)
	tmp = 0.0;
	if (rand <= -3.5e+103)
		tmp = 0.3333333333333333 * (rand * sqrt((a - 0.3333333333333333)));
	elseif (rand <= 1.65e+83)
		tmp = a - 0.3333333333333333;
	else
		tmp = sqrt((a + -0.3333333333333333)) * (0.3333333333333333 * rand);
	end
	tmp_2 = tmp;
end
code[a_, rand_] := If[LessEqual[rand, -3.5e+103], N[(0.3333333333333333 * N[(rand * N[Sqrt[N[(a - 0.3333333333333333), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]), $MachinePrecision], If[LessEqual[rand, 1.65e+83], N[(a - 0.3333333333333333), $MachinePrecision], N[(N[Sqrt[N[(a + -0.3333333333333333), $MachinePrecision]], $MachinePrecision] * N[(0.3333333333333333 * rand), $MachinePrecision]), $MachinePrecision]]]
\begin{array}{l}

\\
\begin{array}{l}
\mathbf{if}\;rand \leq -3.5 \cdot 10^{+103}:\\
\;\;\;\;0.3333333333333333 \cdot \left(rand \cdot \sqrt{a - 0.3333333333333333}\right)\\

\mathbf{elif}\;rand \leq 1.65 \cdot 10^{+83}:\\
\;\;\;\;a - 0.3333333333333333\\

\mathbf{else}:\\
\;\;\;\;\sqrt{a + -0.3333333333333333} \cdot \left(0.3333333333333333 \cdot rand\right)\\


\end{array}
\end{array}
Derivation
  1. Split input into 3 regimes
  2. if rand < -3.5e103

    1. Initial program 99.4%

      \[\left(a - \frac{1}{3}\right) \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
    2. Step-by-step derivation
      1. remove-double-neg99.4%

        \[\leadsto \color{blue}{\left(-\left(-\left(a - \frac{1}{3}\right)\right)\right)} \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      2. remove-double-neg99.4%

        \[\leadsto \color{blue}{\left(a - \frac{1}{3}\right)} \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      3. sub-neg99.4%

        \[\leadsto \color{blue}{\left(a + \left(-\frac{1}{3}\right)\right)} \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      4. metadata-eval99.4%

        \[\leadsto \left(a + \left(-\color{blue}{0.3333333333333333}\right)\right) \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      5. metadata-eval99.4%

        \[\leadsto \left(a + \color{blue}{-0.3333333333333333}\right) \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      6. *-commutative99.4%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\color{blue}{\left(a - \frac{1}{3}\right) \cdot 9}}} \cdot rand\right) \]
      7. sub-neg99.4%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\color{blue}{\left(a + \left(-\frac{1}{3}\right)\right)} \cdot 9}} \cdot rand\right) \]
      8. metadata-eval99.4%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\left(a + \left(-\color{blue}{0.3333333333333333}\right)\right) \cdot 9}} \cdot rand\right) \]
      9. metadata-eval99.4%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\left(a + \color{blue}{-0.3333333333333333}\right) \cdot 9}} \cdot rand\right) \]
    3. Simplified99.4%

      \[\leadsto \color{blue}{\left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\left(a + -0.3333333333333333\right) \cdot 9}} \cdot rand\right)} \]
    4. Taylor expanded in rand around inf 98.0%

      \[\leadsto \color{blue}{0.3333333333333333 \cdot \left(rand \cdot \sqrt{a - 0.3333333333333333}\right)} \]

    if -3.5e103 < rand < 1.64999999999999992e83

    1. Initial program 99.9%

      \[\left(a - \frac{1}{3}\right) \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
    2. Step-by-step derivation
      1. remove-double-neg99.9%

        \[\leadsto \color{blue}{\left(-\left(-\left(a - \frac{1}{3}\right)\right)\right)} \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      2. remove-double-neg99.9%

        \[\leadsto \color{blue}{\left(a - \frac{1}{3}\right)} \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      3. sub-neg99.9%

        \[\leadsto \color{blue}{\left(a + \left(-\frac{1}{3}\right)\right)} \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      4. metadata-eval99.9%

        \[\leadsto \left(a + \left(-\color{blue}{0.3333333333333333}\right)\right) \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      5. metadata-eval99.9%

        \[\leadsto \left(a + \color{blue}{-0.3333333333333333}\right) \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      6. *-commutative99.9%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\color{blue}{\left(a - \frac{1}{3}\right) \cdot 9}}} \cdot rand\right) \]
      7. sub-neg99.9%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\color{blue}{\left(a + \left(-\frac{1}{3}\right)\right)} \cdot 9}} \cdot rand\right) \]
      8. metadata-eval99.9%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\left(a + \left(-\color{blue}{0.3333333333333333}\right)\right) \cdot 9}} \cdot rand\right) \]
      9. metadata-eval99.9%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\left(a + \color{blue}{-0.3333333333333333}\right) \cdot 9}} \cdot rand\right) \]
    3. Simplified99.9%

      \[\leadsto \color{blue}{\left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\left(a + -0.3333333333333333\right) \cdot 9}} \cdot rand\right)} \]
    4. Taylor expanded in rand around 0 91.7%

      \[\leadsto \color{blue}{a - 0.3333333333333333} \]

    if 1.64999999999999992e83 < rand

    1. Initial program 99.4%

      \[\left(a - \frac{1}{3}\right) \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
    2. Step-by-step derivation
      1. remove-double-neg99.4%

        \[\leadsto \color{blue}{\left(-\left(-\left(a - \frac{1}{3}\right)\right)\right)} \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      2. remove-double-neg99.4%

        \[\leadsto \color{blue}{\left(a - \frac{1}{3}\right)} \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      3. sub-neg99.4%

        \[\leadsto \color{blue}{\left(a + \left(-\frac{1}{3}\right)\right)} \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      4. metadata-eval99.4%

        \[\leadsto \left(a + \left(-\color{blue}{0.3333333333333333}\right)\right) \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      5. metadata-eval99.4%

        \[\leadsto \left(a + \color{blue}{-0.3333333333333333}\right) \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      6. associate-*l/99.6%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \color{blue}{\frac{1 \cdot rand}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}}}\right) \]
      7. *-lft-identity99.6%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{\color{blue}{rand}}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}}\right) \]
      8. sub-neg99.6%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{rand}{\sqrt{9 \cdot \color{blue}{\left(a + \left(-\frac{1}{3}\right)\right)}}}\right) \]
      9. distribute-rgt-in99.5%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{rand}{\sqrt{\color{blue}{a \cdot 9 + \left(-\frac{1}{3}\right) \cdot 9}}}\right) \]
      10. metadata-eval99.5%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{rand}{\sqrt{a \cdot 9 + \left(-\color{blue}{0.3333333333333333}\right) \cdot 9}}\right) \]
      11. metadata-eval99.5%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{rand}{\sqrt{a \cdot 9 + \color{blue}{-0.3333333333333333} \cdot 9}}\right) \]
      12. metadata-eval99.5%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{rand}{\sqrt{a \cdot 9 + \color{blue}{-3}}}\right) \]
    3. Simplified99.5%

      \[\leadsto \color{blue}{\left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{rand}{\sqrt{a \cdot 9 + -3}}\right)} \]
    4. Step-by-step derivation
      1. add-sqr-sqrt99.2%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \color{blue}{\sqrt{\frac{rand}{\sqrt{a \cdot 9 + -3}}} \cdot \sqrt{\frac{rand}{\sqrt{a \cdot 9 + -3}}}}\right) \]
      2. sqrt-unprod89.6%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \color{blue}{\sqrt{\frac{rand}{\sqrt{a \cdot 9 + -3}} \cdot \frac{rand}{\sqrt{a \cdot 9 + -3}}}}\right) \]
      3. frac-times69.5%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \sqrt{\color{blue}{\frac{rand \cdot rand}{\sqrt{a \cdot 9 + -3} \cdot \sqrt{a \cdot 9 + -3}}}}\right) \]
      4. add-sqr-sqrt69.5%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \sqrt{\frac{rand \cdot rand}{\color{blue}{a \cdot 9 + -3}}}\right) \]
      5. metadata-eval69.5%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \sqrt{\frac{rand \cdot rand}{a \cdot 9 + \color{blue}{-0.3333333333333333 \cdot 9}}}\right) \]
      6. distribute-rgt-in69.5%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \sqrt{\frac{rand \cdot rand}{\color{blue}{9 \cdot \left(a + -0.3333333333333333\right)}}}\right) \]
      7. *-commutative69.5%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \sqrt{\frac{rand \cdot rand}{\color{blue}{\left(a + -0.3333333333333333\right) \cdot 9}}}\right) \]
      8. add-sqr-sqrt69.5%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \sqrt{\frac{rand \cdot rand}{\color{blue}{\sqrt{\left(a + -0.3333333333333333\right) \cdot 9} \cdot \sqrt{\left(a + -0.3333333333333333\right) \cdot 9}}}}\right) \]
      9. frac-times89.6%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \sqrt{\color{blue}{\frac{rand}{\sqrt{\left(a + -0.3333333333333333\right) \cdot 9}} \cdot \frac{rand}{\sqrt{\left(a + -0.3333333333333333\right) \cdot 9}}}}\right) \]
      10. *-un-lft-identity89.6%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \sqrt{\frac{\color{blue}{1 \cdot rand}}{\sqrt{\left(a + -0.3333333333333333\right) \cdot 9}} \cdot \frac{rand}{\sqrt{\left(a + -0.3333333333333333\right) \cdot 9}}}\right) \]
      11. associate-*l/89.6%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \sqrt{\color{blue}{\left(\frac{1}{\sqrt{\left(a + -0.3333333333333333\right) \cdot 9}} \cdot rand\right)} \cdot \frac{rand}{\sqrt{\left(a + -0.3333333333333333\right) \cdot 9}}}\right) \]
      12. *-un-lft-identity89.6%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \sqrt{\left(\frac{1}{\sqrt{\left(a + -0.3333333333333333\right) \cdot 9}} \cdot rand\right) \cdot \frac{\color{blue}{1 \cdot rand}}{\sqrt{\left(a + -0.3333333333333333\right) \cdot 9}}}\right) \]
      13. associate-*l/89.5%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \sqrt{\left(\frac{1}{\sqrt{\left(a + -0.3333333333333333\right) \cdot 9}} \cdot rand\right) \cdot \color{blue}{\left(\frac{1}{\sqrt{\left(a + -0.3333333333333333\right) \cdot 9}} \cdot rand\right)}}\right) \]
      14. sqrt-unprod99.1%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \color{blue}{\sqrt{\frac{1}{\sqrt{\left(a + -0.3333333333333333\right) \cdot 9}} \cdot rand} \cdot \sqrt{\frac{1}{\sqrt{\left(a + -0.3333333333333333\right) \cdot 9}} \cdot rand}}\right) \]
      15. add-sqr-sqrt99.4%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \color{blue}{\frac{1}{\sqrt{\left(a + -0.3333333333333333\right) \cdot 9}} \cdot rand}\right) \]
      16. associate-*l/99.6%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \color{blue}{\frac{1 \cdot rand}{\sqrt{\left(a + -0.3333333333333333\right) \cdot 9}}}\right) \]
      17. sqrt-prod99.6%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1 \cdot rand}{\color{blue}{\sqrt{a + -0.3333333333333333} \cdot \sqrt{9}}}\right) \]
    5. Applied egg-rr99.5%

      \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \color{blue}{\frac{1}{\sqrt{a + -0.3333333333333333}} \cdot \frac{rand}{3}}\right) \]
    6. Step-by-step derivation
      1. metadata-eval99.5%

        \[\leadsto \left(a + \color{blue}{\left(-0.3333333333333333\right)}\right) \cdot \left(1 + \frac{1}{\sqrt{a + -0.3333333333333333}} \cdot \frac{rand}{3}\right) \]
      2. sub-neg99.5%

        \[\leadsto \color{blue}{\left(a - 0.3333333333333333\right)} \cdot \left(1 + \frac{1}{\sqrt{a + -0.3333333333333333}} \cdot \frac{rand}{3}\right) \]
      3. distribute-lft-in99.5%

        \[\leadsto \color{blue}{\left(a - 0.3333333333333333\right) \cdot 1 + \left(a - 0.3333333333333333\right) \cdot \left(\frac{1}{\sqrt{a + -0.3333333333333333}} \cdot \frac{rand}{3}\right)} \]
      4. *-rgt-identity99.5%

        \[\leadsto \color{blue}{\left(a - 0.3333333333333333\right)} + \left(a - 0.3333333333333333\right) \cdot \left(\frac{1}{\sqrt{a + -0.3333333333333333}} \cdot \frac{rand}{3}\right) \]
      5. sub-neg99.5%

        \[\leadsto \color{blue}{\left(a + \left(-0.3333333333333333\right)\right)} + \left(a - 0.3333333333333333\right) \cdot \left(\frac{1}{\sqrt{a + -0.3333333333333333}} \cdot \frac{rand}{3}\right) \]
      6. metadata-eval99.5%

        \[\leadsto \left(a + \color{blue}{-0.3333333333333333}\right) + \left(a - 0.3333333333333333\right) \cdot \left(\frac{1}{\sqrt{a + -0.3333333333333333}} \cdot \frac{rand}{3}\right) \]
      7. sub-neg99.5%

        \[\leadsto \left(a + -0.3333333333333333\right) + \color{blue}{\left(a + \left(-0.3333333333333333\right)\right)} \cdot \left(\frac{1}{\sqrt{a + -0.3333333333333333}} \cdot \frac{rand}{3}\right) \]
      8. metadata-eval99.5%

        \[\leadsto \left(a + -0.3333333333333333\right) + \left(a + \color{blue}{-0.3333333333333333}\right) \cdot \left(\frac{1}{\sqrt{a + -0.3333333333333333}} \cdot \frac{rand}{3}\right) \]
      9. frac-times99.6%

        \[\leadsto \left(a + -0.3333333333333333\right) + \left(a + -0.3333333333333333\right) \cdot \color{blue}{\frac{1 \cdot rand}{\sqrt{a + -0.3333333333333333} \cdot 3}} \]
      10. *-un-lft-identity99.6%

        \[\leadsto \left(a + -0.3333333333333333\right) + \left(a + -0.3333333333333333\right) \cdot \frac{\color{blue}{rand}}{\sqrt{a + -0.3333333333333333} \cdot 3} \]
    7. Applied egg-rr99.6%

      \[\leadsto \color{blue}{\left(a + -0.3333333333333333\right) + \left(a + -0.3333333333333333\right) \cdot \frac{rand}{\sqrt{a + -0.3333333333333333} \cdot 3}} \]
    8. Step-by-step derivation
      1. *-commutative99.6%

        \[\leadsto \left(a + -0.3333333333333333\right) + \color{blue}{\frac{rand}{\sqrt{a + -0.3333333333333333} \cdot 3} \cdot \left(a + -0.3333333333333333\right)} \]
      2. distribute-rgt1-in99.6%

        \[\leadsto \color{blue}{\left(\frac{rand}{\sqrt{a + -0.3333333333333333} \cdot 3} + 1\right) \cdot \left(a + -0.3333333333333333\right)} \]
      3. *-rgt-identity99.6%

        \[\leadsto \left(\color{blue}{\frac{rand}{\sqrt{a + -0.3333333333333333} \cdot 3} \cdot 1} + 1\right) \cdot \left(a + -0.3333333333333333\right) \]
      4. *-commutative99.6%

        \[\leadsto \left(\color{blue}{1 \cdot \frac{rand}{\sqrt{a + -0.3333333333333333} \cdot 3}} + 1\right) \cdot \left(a + -0.3333333333333333\right) \]
      5. *-lft-identity99.6%

        \[\leadsto \left(\color{blue}{\frac{rand}{\sqrt{a + -0.3333333333333333} \cdot 3}} + 1\right) \cdot \left(a + -0.3333333333333333\right) \]
      6. *-commutative99.6%

        \[\leadsto \left(\frac{rand}{\color{blue}{3 \cdot \sqrt{a + -0.3333333333333333}}} + 1\right) \cdot \left(a + -0.3333333333333333\right) \]
      7. +-commutative99.6%

        \[\leadsto \left(\frac{rand}{3 \cdot \sqrt{\color{blue}{-0.3333333333333333 + a}}} + 1\right) \cdot \left(a + -0.3333333333333333\right) \]
      8. +-commutative99.6%

        \[\leadsto \left(\frac{rand}{3 \cdot \sqrt{-0.3333333333333333 + a}} + 1\right) \cdot \color{blue}{\left(-0.3333333333333333 + a\right)} \]
    9. Simplified99.6%

      \[\leadsto \color{blue}{\left(\frac{rand}{3 \cdot \sqrt{-0.3333333333333333 + a}} + 1\right) \cdot \left(-0.3333333333333333 + a\right)} \]
    10. Taylor expanded in rand around inf 98.1%

      \[\leadsto \color{blue}{0.3333333333333333 \cdot \left(rand \cdot \sqrt{a - 0.3333333333333333}\right)} \]
    11. Step-by-step derivation
      1. *-commutative98.1%

        \[\leadsto \color{blue}{\left(rand \cdot \sqrt{a - 0.3333333333333333}\right) \cdot 0.3333333333333333} \]
      2. *-commutative98.1%

        \[\leadsto \color{blue}{\left(\sqrt{a - 0.3333333333333333} \cdot rand\right)} \cdot 0.3333333333333333 \]
      3. sub-neg98.1%

        \[\leadsto \left(\sqrt{\color{blue}{a + \left(-0.3333333333333333\right)}} \cdot rand\right) \cdot 0.3333333333333333 \]
      4. metadata-eval98.1%

        \[\leadsto \left(\sqrt{a + \color{blue}{-0.3333333333333333}} \cdot rand\right) \cdot 0.3333333333333333 \]
      5. +-commutative98.1%

        \[\leadsto \left(\sqrt{\color{blue}{-0.3333333333333333 + a}} \cdot rand\right) \cdot 0.3333333333333333 \]
      6. associate-*l*98.1%

        \[\leadsto \color{blue}{\sqrt{-0.3333333333333333 + a} \cdot \left(rand \cdot 0.3333333333333333\right)} \]
      7. *-commutative98.1%

        \[\leadsto \sqrt{-0.3333333333333333 + a} \cdot \color{blue}{\left(0.3333333333333333 \cdot rand\right)} \]
    12. Simplified98.1%

      \[\leadsto \color{blue}{\sqrt{-0.3333333333333333 + a} \cdot \left(0.3333333333333333 \cdot rand\right)} \]
  3. Recombined 3 regimes into one program.
  4. Final simplification93.9%

    \[\leadsto \begin{array}{l} \mathbf{if}\;rand \leq -3.5 \cdot 10^{+103}:\\ \;\;\;\;0.3333333333333333 \cdot \left(rand \cdot \sqrt{a - 0.3333333333333333}\right)\\ \mathbf{elif}\;rand \leq 1.65 \cdot 10^{+83}:\\ \;\;\;\;a - 0.3333333333333333\\ \mathbf{else}:\\ \;\;\;\;\sqrt{a + -0.3333333333333333} \cdot \left(0.3333333333333333 \cdot rand\right)\\ \end{array} \]

Alternative 5: 98.7% accurate, 1.1× speedup?

\[\begin{array}{l} \\ \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{rand}{\sqrt{a \cdot 9}}\right) \end{array} \]
(FPCore (a rand)
 :precision binary64
 (* (+ a -0.3333333333333333) (+ 1.0 (/ rand (sqrt (* a 9.0))))))
double code(double a, double rand) {
	return (a + -0.3333333333333333) * (1.0 + (rand / sqrt((a * 9.0))));
}
real(8) function code(a, rand)
    real(8), intent (in) :: a
    real(8), intent (in) :: rand
    code = (a + (-0.3333333333333333d0)) * (1.0d0 + (rand / sqrt((a * 9.0d0))))
end function
public static double code(double a, double rand) {
	return (a + -0.3333333333333333) * (1.0 + (rand / Math.sqrt((a * 9.0))));
}
def code(a, rand):
	return (a + -0.3333333333333333) * (1.0 + (rand / math.sqrt((a * 9.0))))
function code(a, rand)
	return Float64(Float64(a + -0.3333333333333333) * Float64(1.0 + Float64(rand / sqrt(Float64(a * 9.0)))))
end
function tmp = code(a, rand)
	tmp = (a + -0.3333333333333333) * (1.0 + (rand / sqrt((a * 9.0))));
end
code[a_, rand_] := N[(N[(a + -0.3333333333333333), $MachinePrecision] * N[(1.0 + N[(rand / N[Sqrt[N[(a * 9.0), $MachinePrecision]], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
\left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{rand}{\sqrt{a \cdot 9}}\right)
\end{array}
Derivation
  1. Initial program 99.7%

    \[\left(a - \frac{1}{3}\right) \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
  2. Step-by-step derivation
    1. remove-double-neg99.7%

      \[\leadsto \color{blue}{\left(-\left(-\left(a - \frac{1}{3}\right)\right)\right)} \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
    2. remove-double-neg99.7%

      \[\leadsto \color{blue}{\left(a - \frac{1}{3}\right)} \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
    3. sub-neg99.7%

      \[\leadsto \color{blue}{\left(a + \left(-\frac{1}{3}\right)\right)} \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
    4. metadata-eval99.7%

      \[\leadsto \left(a + \left(-\color{blue}{0.3333333333333333}\right)\right) \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
    5. metadata-eval99.7%

      \[\leadsto \left(a + \color{blue}{-0.3333333333333333}\right) \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
    6. associate-*l/99.8%

      \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \color{blue}{\frac{1 \cdot rand}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}}}\right) \]
    7. *-lft-identity99.8%

      \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{\color{blue}{rand}}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}}\right) \]
    8. sub-neg99.8%

      \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{rand}{\sqrt{9 \cdot \color{blue}{\left(a + \left(-\frac{1}{3}\right)\right)}}}\right) \]
    9. distribute-rgt-in99.8%

      \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{rand}{\sqrt{\color{blue}{a \cdot 9 + \left(-\frac{1}{3}\right) \cdot 9}}}\right) \]
    10. metadata-eval99.8%

      \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{rand}{\sqrt{a \cdot 9 + \left(-\color{blue}{0.3333333333333333}\right) \cdot 9}}\right) \]
    11. metadata-eval99.8%

      \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{rand}{\sqrt{a \cdot 9 + \color{blue}{-0.3333333333333333} \cdot 9}}\right) \]
    12. metadata-eval99.8%

      \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{rand}{\sqrt{a \cdot 9 + \color{blue}{-3}}}\right) \]
  3. Simplified99.8%

    \[\leadsto \color{blue}{\left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{rand}{\sqrt{a \cdot 9 + -3}}\right)} \]
  4. Taylor expanded in a around inf 98.6%

    \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{rand}{\sqrt{\color{blue}{9 \cdot a}}}\right) \]
  5. Step-by-step derivation
    1. *-commutative98.6%

      \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{rand}{\sqrt{\color{blue}{a \cdot 9}}}\right) \]
  6. Simplified98.6%

    \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{rand}{\sqrt{\color{blue}{a \cdot 9}}}\right) \]
  7. Final simplification98.6%

    \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{rand}{\sqrt{a \cdot 9}}\right) \]

Alternative 6: 91.6% accurate, 1.1× speedup?

\[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;rand \leq -3.5 \cdot 10^{+103} \lor \neg \left(rand \leq 5.5 \cdot 10^{+82}\right):\\ \;\;\;\;0.3333333333333333 \cdot \left(rand \cdot \sqrt{a}\right)\\ \mathbf{else}:\\ \;\;\;\;a - 0.3333333333333333\\ \end{array} \end{array} \]
(FPCore (a rand)
 :precision binary64
 (if (or (<= rand -3.5e+103) (not (<= rand 5.5e+82)))
   (* 0.3333333333333333 (* rand (sqrt a)))
   (- a 0.3333333333333333)))
double code(double a, double rand) {
	double tmp;
	if ((rand <= -3.5e+103) || !(rand <= 5.5e+82)) {
		tmp = 0.3333333333333333 * (rand * sqrt(a));
	} else {
		tmp = a - 0.3333333333333333;
	}
	return tmp;
}
real(8) function code(a, rand)
    real(8), intent (in) :: a
    real(8), intent (in) :: rand
    real(8) :: tmp
    if ((rand <= (-3.5d+103)) .or. (.not. (rand <= 5.5d+82))) then
        tmp = 0.3333333333333333d0 * (rand * sqrt(a))
    else
        tmp = a - 0.3333333333333333d0
    end if
    code = tmp
end function
public static double code(double a, double rand) {
	double tmp;
	if ((rand <= -3.5e+103) || !(rand <= 5.5e+82)) {
		tmp = 0.3333333333333333 * (rand * Math.sqrt(a));
	} else {
		tmp = a - 0.3333333333333333;
	}
	return tmp;
}
def code(a, rand):
	tmp = 0
	if (rand <= -3.5e+103) or not (rand <= 5.5e+82):
		tmp = 0.3333333333333333 * (rand * math.sqrt(a))
	else:
		tmp = a - 0.3333333333333333
	return tmp
function code(a, rand)
	tmp = 0.0
	if ((rand <= -3.5e+103) || !(rand <= 5.5e+82))
		tmp = Float64(0.3333333333333333 * Float64(rand * sqrt(a)));
	else
		tmp = Float64(a - 0.3333333333333333);
	end
	return tmp
end
function tmp_2 = code(a, rand)
	tmp = 0.0;
	if ((rand <= -3.5e+103) || ~((rand <= 5.5e+82)))
		tmp = 0.3333333333333333 * (rand * sqrt(a));
	else
		tmp = a - 0.3333333333333333;
	end
	tmp_2 = tmp;
end
code[a_, rand_] := If[Or[LessEqual[rand, -3.5e+103], N[Not[LessEqual[rand, 5.5e+82]], $MachinePrecision]], N[(0.3333333333333333 * N[(rand * N[Sqrt[a], $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(a - 0.3333333333333333), $MachinePrecision]]
\begin{array}{l}

\\
\begin{array}{l}
\mathbf{if}\;rand \leq -3.5 \cdot 10^{+103} \lor \neg \left(rand \leq 5.5 \cdot 10^{+82}\right):\\
\;\;\;\;0.3333333333333333 \cdot \left(rand \cdot \sqrt{a}\right)\\

\mathbf{else}:\\
\;\;\;\;a - 0.3333333333333333\\


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if rand < -3.5e103 or 5.49999999999999997e82 < rand

    1. Initial program 99.4%

      \[\left(a - \frac{1}{3}\right) \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
    2. Step-by-step derivation
      1. remove-double-neg99.4%

        \[\leadsto \color{blue}{\left(-\left(-\left(a - \frac{1}{3}\right)\right)\right)} \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      2. remove-double-neg99.4%

        \[\leadsto \color{blue}{\left(a - \frac{1}{3}\right)} \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      3. sub-neg99.4%

        \[\leadsto \color{blue}{\left(a + \left(-\frac{1}{3}\right)\right)} \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      4. metadata-eval99.4%

        \[\leadsto \left(a + \left(-\color{blue}{0.3333333333333333}\right)\right) \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      5. metadata-eval99.4%

        \[\leadsto \left(a + \color{blue}{-0.3333333333333333}\right) \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      6. associate-*l/99.6%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \color{blue}{\frac{1 \cdot rand}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}}}\right) \]
      7. *-lft-identity99.6%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{\color{blue}{rand}}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}}\right) \]
      8. sub-neg99.6%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{rand}{\sqrt{9 \cdot \color{blue}{\left(a + \left(-\frac{1}{3}\right)\right)}}}\right) \]
      9. distribute-rgt-in99.5%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{rand}{\sqrt{\color{blue}{a \cdot 9 + \left(-\frac{1}{3}\right) \cdot 9}}}\right) \]
      10. metadata-eval99.5%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{rand}{\sqrt{a \cdot 9 + \left(-\color{blue}{0.3333333333333333}\right) \cdot 9}}\right) \]
      11. metadata-eval99.5%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{rand}{\sqrt{a \cdot 9 + \color{blue}{-0.3333333333333333} \cdot 9}}\right) \]
      12. metadata-eval99.5%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{rand}{\sqrt{a \cdot 9 + \color{blue}{-3}}}\right) \]
    3. Simplified99.5%

      \[\leadsto \color{blue}{\left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{rand}{\sqrt{a \cdot 9 + -3}}\right)} \]
    4. Taylor expanded in rand around inf 74.9%

      \[\leadsto \color{blue}{\left(rand \cdot \left(a - 0.3333333333333333\right)\right) \cdot \sqrt{\frac{1}{9 \cdot a - 3}}} \]
    5. Taylor expanded in a around inf 72.9%

      \[\leadsto \left(rand \cdot \left(a - 0.3333333333333333\right)\right) \cdot \sqrt{\frac{1}{\color{blue}{9 \cdot a}}} \]
    6. Step-by-step derivation
      1. *-commutative72.9%

        \[\leadsto \left(rand \cdot \left(a - 0.3333333333333333\right)\right) \cdot \sqrt{\frac{1}{\color{blue}{a \cdot 9}}} \]
    7. Simplified72.9%

      \[\leadsto \left(rand \cdot \left(a - 0.3333333333333333\right)\right) \cdot \sqrt{\frac{1}{\color{blue}{a \cdot 9}}} \]
    8. Taylor expanded in a around inf 72.9%

      \[\leadsto \color{blue}{\left(a \cdot rand\right)} \cdot \sqrt{\frac{1}{a \cdot 9}} \]
    9. Step-by-step derivation
      1. *-commutative72.9%

        \[\leadsto \color{blue}{\left(rand \cdot a\right)} \cdot \sqrt{\frac{1}{a \cdot 9}} \]
    10. Simplified72.9%

      \[\leadsto \color{blue}{\left(rand \cdot a\right)} \cdot \sqrt{\frac{1}{a \cdot 9}} \]
    11. Taylor expanded in rand around 0 95.6%

      \[\leadsto \color{blue}{0.3333333333333333 \cdot \left(\sqrt{a} \cdot rand\right)} \]

    if -3.5e103 < rand < 5.49999999999999997e82

    1. Initial program 99.9%

      \[\left(a - \frac{1}{3}\right) \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
    2. Step-by-step derivation
      1. remove-double-neg99.9%

        \[\leadsto \color{blue}{\left(-\left(-\left(a - \frac{1}{3}\right)\right)\right)} \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      2. remove-double-neg99.9%

        \[\leadsto \color{blue}{\left(a - \frac{1}{3}\right)} \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      3. sub-neg99.9%

        \[\leadsto \color{blue}{\left(a + \left(-\frac{1}{3}\right)\right)} \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      4. metadata-eval99.9%

        \[\leadsto \left(a + \left(-\color{blue}{0.3333333333333333}\right)\right) \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      5. metadata-eval99.9%

        \[\leadsto \left(a + \color{blue}{-0.3333333333333333}\right) \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      6. *-commutative99.9%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\color{blue}{\left(a - \frac{1}{3}\right) \cdot 9}}} \cdot rand\right) \]
      7. sub-neg99.9%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\color{blue}{\left(a + \left(-\frac{1}{3}\right)\right)} \cdot 9}} \cdot rand\right) \]
      8. metadata-eval99.9%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\left(a + \left(-\color{blue}{0.3333333333333333}\right)\right) \cdot 9}} \cdot rand\right) \]
      9. metadata-eval99.9%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\left(a + \color{blue}{-0.3333333333333333}\right) \cdot 9}} \cdot rand\right) \]
    3. Simplified99.9%

      \[\leadsto \color{blue}{\left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\left(a + -0.3333333333333333\right) \cdot 9}} \cdot rand\right)} \]
    4. Taylor expanded in rand around 0 91.7%

      \[\leadsto \color{blue}{a - 0.3333333333333333} \]
  3. Recombined 2 regimes into one program.
  4. Final simplification93.1%

    \[\leadsto \begin{array}{l} \mathbf{if}\;rand \leq -3.5 \cdot 10^{+103} \lor \neg \left(rand \leq 5.5 \cdot 10^{+82}\right):\\ \;\;\;\;0.3333333333333333 \cdot \left(rand \cdot \sqrt{a}\right)\\ \mathbf{else}:\\ \;\;\;\;a - 0.3333333333333333\\ \end{array} \]

Alternative 7: 91.7% accurate, 1.1× speedup?

\[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;rand \leq -3.5 \cdot 10^{+103} \lor \neg \left(rand \leq 2.4 \cdot 10^{+82}\right):\\ \;\;\;\;rand \cdot \left(0.3333333333333333 \cdot \sqrt{a}\right)\\ \mathbf{else}:\\ \;\;\;\;a - 0.3333333333333333\\ \end{array} \end{array} \]
(FPCore (a rand)
 :precision binary64
 (if (or (<= rand -3.5e+103) (not (<= rand 2.4e+82)))
   (* rand (* 0.3333333333333333 (sqrt a)))
   (- a 0.3333333333333333)))
double code(double a, double rand) {
	double tmp;
	if ((rand <= -3.5e+103) || !(rand <= 2.4e+82)) {
		tmp = rand * (0.3333333333333333 * sqrt(a));
	} else {
		tmp = a - 0.3333333333333333;
	}
	return tmp;
}
real(8) function code(a, rand)
    real(8), intent (in) :: a
    real(8), intent (in) :: rand
    real(8) :: tmp
    if ((rand <= (-3.5d+103)) .or. (.not. (rand <= 2.4d+82))) then
        tmp = rand * (0.3333333333333333d0 * sqrt(a))
    else
        tmp = a - 0.3333333333333333d0
    end if
    code = tmp
end function
public static double code(double a, double rand) {
	double tmp;
	if ((rand <= -3.5e+103) || !(rand <= 2.4e+82)) {
		tmp = rand * (0.3333333333333333 * Math.sqrt(a));
	} else {
		tmp = a - 0.3333333333333333;
	}
	return tmp;
}
def code(a, rand):
	tmp = 0
	if (rand <= -3.5e+103) or not (rand <= 2.4e+82):
		tmp = rand * (0.3333333333333333 * math.sqrt(a))
	else:
		tmp = a - 0.3333333333333333
	return tmp
function code(a, rand)
	tmp = 0.0
	if ((rand <= -3.5e+103) || !(rand <= 2.4e+82))
		tmp = Float64(rand * Float64(0.3333333333333333 * sqrt(a)));
	else
		tmp = Float64(a - 0.3333333333333333);
	end
	return tmp
end
function tmp_2 = code(a, rand)
	tmp = 0.0;
	if ((rand <= -3.5e+103) || ~((rand <= 2.4e+82)))
		tmp = rand * (0.3333333333333333 * sqrt(a));
	else
		tmp = a - 0.3333333333333333;
	end
	tmp_2 = tmp;
end
code[a_, rand_] := If[Or[LessEqual[rand, -3.5e+103], N[Not[LessEqual[rand, 2.4e+82]], $MachinePrecision]], N[(rand * N[(0.3333333333333333 * N[Sqrt[a], $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(a - 0.3333333333333333), $MachinePrecision]]
\begin{array}{l}

\\
\begin{array}{l}
\mathbf{if}\;rand \leq -3.5 \cdot 10^{+103} \lor \neg \left(rand \leq 2.4 \cdot 10^{+82}\right):\\
\;\;\;\;rand \cdot \left(0.3333333333333333 \cdot \sqrt{a}\right)\\

\mathbf{else}:\\
\;\;\;\;a - 0.3333333333333333\\


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if rand < -3.5e103 or 2.39999999999999998e82 < rand

    1. Initial program 99.4%

      \[\left(a - \frac{1}{3}\right) \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
    2. Step-by-step derivation
      1. remove-double-neg99.4%

        \[\leadsto \color{blue}{\left(-\left(-\left(a - \frac{1}{3}\right)\right)\right)} \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      2. remove-double-neg99.4%

        \[\leadsto \color{blue}{\left(a - \frac{1}{3}\right)} \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      3. sub-neg99.4%

        \[\leadsto \color{blue}{\left(a + \left(-\frac{1}{3}\right)\right)} \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      4. metadata-eval99.4%

        \[\leadsto \left(a + \left(-\color{blue}{0.3333333333333333}\right)\right) \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      5. metadata-eval99.4%

        \[\leadsto \left(a + \color{blue}{-0.3333333333333333}\right) \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      6. associate-*l/99.6%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \color{blue}{\frac{1 \cdot rand}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}}}\right) \]
      7. *-lft-identity99.6%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{\color{blue}{rand}}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}}\right) \]
      8. sub-neg99.6%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{rand}{\sqrt{9 \cdot \color{blue}{\left(a + \left(-\frac{1}{3}\right)\right)}}}\right) \]
      9. distribute-rgt-in99.5%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{rand}{\sqrt{\color{blue}{a \cdot 9 + \left(-\frac{1}{3}\right) \cdot 9}}}\right) \]
      10. metadata-eval99.5%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{rand}{\sqrt{a \cdot 9 + \left(-\color{blue}{0.3333333333333333}\right) \cdot 9}}\right) \]
      11. metadata-eval99.5%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{rand}{\sqrt{a \cdot 9 + \color{blue}{-0.3333333333333333} \cdot 9}}\right) \]
      12. metadata-eval99.5%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{rand}{\sqrt{a \cdot 9 + \color{blue}{-3}}}\right) \]
    3. Simplified99.5%

      \[\leadsto \color{blue}{\left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{rand}{\sqrt{a \cdot 9 + -3}}\right)} \]
    4. Taylor expanded in rand around inf 74.9%

      \[\leadsto \color{blue}{\left(rand \cdot \left(a - 0.3333333333333333\right)\right) \cdot \sqrt{\frac{1}{9 \cdot a - 3}}} \]
    5. Taylor expanded in a around inf 72.9%

      \[\leadsto \left(rand \cdot \left(a - 0.3333333333333333\right)\right) \cdot \sqrt{\frac{1}{\color{blue}{9 \cdot a}}} \]
    6. Step-by-step derivation
      1. *-commutative72.9%

        \[\leadsto \left(rand \cdot \left(a - 0.3333333333333333\right)\right) \cdot \sqrt{\frac{1}{\color{blue}{a \cdot 9}}} \]
    7. Simplified72.9%

      \[\leadsto \left(rand \cdot \left(a - 0.3333333333333333\right)\right) \cdot \sqrt{\frac{1}{\color{blue}{a \cdot 9}}} \]
    8. Taylor expanded in a around inf 72.9%

      \[\leadsto \color{blue}{\left(a \cdot rand\right)} \cdot \sqrt{\frac{1}{a \cdot 9}} \]
    9. Step-by-step derivation
      1. *-commutative72.9%

        \[\leadsto \color{blue}{\left(rand \cdot a\right)} \cdot \sqrt{\frac{1}{a \cdot 9}} \]
    10. Simplified72.9%

      \[\leadsto \color{blue}{\left(rand \cdot a\right)} \cdot \sqrt{\frac{1}{a \cdot 9}} \]
    11. Taylor expanded in rand around 0 95.6%

      \[\leadsto \color{blue}{0.3333333333333333 \cdot \left(\sqrt{a} \cdot rand\right)} \]
    12. Step-by-step derivation
      1. associate-*r*95.7%

        \[\leadsto \color{blue}{\left(0.3333333333333333 \cdot \sqrt{a}\right) \cdot rand} \]
      2. *-commutative95.7%

        \[\leadsto \color{blue}{rand \cdot \left(0.3333333333333333 \cdot \sqrt{a}\right)} \]
    13. Simplified95.7%

      \[\leadsto \color{blue}{rand \cdot \left(0.3333333333333333 \cdot \sqrt{a}\right)} \]

    if -3.5e103 < rand < 2.39999999999999998e82

    1. Initial program 99.9%

      \[\left(a - \frac{1}{3}\right) \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
    2. Step-by-step derivation
      1. remove-double-neg99.9%

        \[\leadsto \color{blue}{\left(-\left(-\left(a - \frac{1}{3}\right)\right)\right)} \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      2. remove-double-neg99.9%

        \[\leadsto \color{blue}{\left(a - \frac{1}{3}\right)} \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      3. sub-neg99.9%

        \[\leadsto \color{blue}{\left(a + \left(-\frac{1}{3}\right)\right)} \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      4. metadata-eval99.9%

        \[\leadsto \left(a + \left(-\color{blue}{0.3333333333333333}\right)\right) \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      5. metadata-eval99.9%

        \[\leadsto \left(a + \color{blue}{-0.3333333333333333}\right) \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      6. *-commutative99.9%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\color{blue}{\left(a - \frac{1}{3}\right) \cdot 9}}} \cdot rand\right) \]
      7. sub-neg99.9%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\color{blue}{\left(a + \left(-\frac{1}{3}\right)\right)} \cdot 9}} \cdot rand\right) \]
      8. metadata-eval99.9%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\left(a + \left(-\color{blue}{0.3333333333333333}\right)\right) \cdot 9}} \cdot rand\right) \]
      9. metadata-eval99.9%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\left(a + \color{blue}{-0.3333333333333333}\right) \cdot 9}} \cdot rand\right) \]
    3. Simplified99.9%

      \[\leadsto \color{blue}{\left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\left(a + -0.3333333333333333\right) \cdot 9}} \cdot rand\right)} \]
    4. Taylor expanded in rand around 0 91.7%

      \[\leadsto \color{blue}{a - 0.3333333333333333} \]
  3. Recombined 2 regimes into one program.
  4. Final simplification93.1%

    \[\leadsto \begin{array}{l} \mathbf{if}\;rand \leq -3.5 \cdot 10^{+103} \lor \neg \left(rand \leq 2.4 \cdot 10^{+82}\right):\\ \;\;\;\;rand \cdot \left(0.3333333333333333 \cdot \sqrt{a}\right)\\ \mathbf{else}:\\ \;\;\;\;a - 0.3333333333333333\\ \end{array} \]

Alternative 8: 71.0% accurate, 10.7× speedup?

\[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;rand \leq -2.65 \cdot 10^{+104}:\\ \;\;\;\;\frac{-0.1111111111111111 - a \cdot a}{a}\\ \mathbf{elif}\;rand \leq 5.1 \cdot 10^{+154}:\\ \;\;\;\;a - 0.3333333333333333\\ \mathbf{else}:\\ \;\;\;\;\frac{a \cdot \left(-a\right)}{-a}\\ \end{array} \end{array} \]
(FPCore (a rand)
 :precision binary64
 (if (<= rand -2.65e+104)
   (/ (- -0.1111111111111111 (* a a)) a)
   (if (<= rand 5.1e+154) (- a 0.3333333333333333) (/ (* a (- a)) (- a)))))
double code(double a, double rand) {
	double tmp;
	if (rand <= -2.65e+104) {
		tmp = (-0.1111111111111111 - (a * a)) / a;
	} else if (rand <= 5.1e+154) {
		tmp = a - 0.3333333333333333;
	} else {
		tmp = (a * -a) / -a;
	}
	return tmp;
}
real(8) function code(a, rand)
    real(8), intent (in) :: a
    real(8), intent (in) :: rand
    real(8) :: tmp
    if (rand <= (-2.65d+104)) then
        tmp = ((-0.1111111111111111d0) - (a * a)) / a
    else if (rand <= 5.1d+154) then
        tmp = a - 0.3333333333333333d0
    else
        tmp = (a * -a) / -a
    end if
    code = tmp
end function
public static double code(double a, double rand) {
	double tmp;
	if (rand <= -2.65e+104) {
		tmp = (-0.1111111111111111 - (a * a)) / a;
	} else if (rand <= 5.1e+154) {
		tmp = a - 0.3333333333333333;
	} else {
		tmp = (a * -a) / -a;
	}
	return tmp;
}
def code(a, rand):
	tmp = 0
	if rand <= -2.65e+104:
		tmp = (-0.1111111111111111 - (a * a)) / a
	elif rand <= 5.1e+154:
		tmp = a - 0.3333333333333333
	else:
		tmp = (a * -a) / -a
	return tmp
function code(a, rand)
	tmp = 0.0
	if (rand <= -2.65e+104)
		tmp = Float64(Float64(-0.1111111111111111 - Float64(a * a)) / a);
	elseif (rand <= 5.1e+154)
		tmp = Float64(a - 0.3333333333333333);
	else
		tmp = Float64(Float64(a * Float64(-a)) / Float64(-a));
	end
	return tmp
end
function tmp_2 = code(a, rand)
	tmp = 0.0;
	if (rand <= -2.65e+104)
		tmp = (-0.1111111111111111 - (a * a)) / a;
	elseif (rand <= 5.1e+154)
		tmp = a - 0.3333333333333333;
	else
		tmp = (a * -a) / -a;
	end
	tmp_2 = tmp;
end
code[a_, rand_] := If[LessEqual[rand, -2.65e+104], N[(N[(-0.1111111111111111 - N[(a * a), $MachinePrecision]), $MachinePrecision] / a), $MachinePrecision], If[LessEqual[rand, 5.1e+154], N[(a - 0.3333333333333333), $MachinePrecision], N[(N[(a * (-a)), $MachinePrecision] / (-a)), $MachinePrecision]]]
\begin{array}{l}

\\
\begin{array}{l}
\mathbf{if}\;rand \leq -2.65 \cdot 10^{+104}:\\
\;\;\;\;\frac{-0.1111111111111111 - a \cdot a}{a}\\

\mathbf{elif}\;rand \leq 5.1 \cdot 10^{+154}:\\
\;\;\;\;a - 0.3333333333333333\\

\mathbf{else}:\\
\;\;\;\;\frac{a \cdot \left(-a\right)}{-a}\\


\end{array}
\end{array}
Derivation
  1. Split input into 3 regimes
  2. if rand < -2.6499999999999999e104

    1. Initial program 99.4%

      \[\left(a - \frac{1}{3}\right) \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
    2. Step-by-step derivation
      1. remove-double-neg99.4%

        \[\leadsto \color{blue}{\left(-\left(-\left(a - \frac{1}{3}\right)\right)\right)} \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      2. remove-double-neg99.4%

        \[\leadsto \color{blue}{\left(a - \frac{1}{3}\right)} \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      3. sub-neg99.4%

        \[\leadsto \color{blue}{\left(a + \left(-\frac{1}{3}\right)\right)} \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      4. metadata-eval99.4%

        \[\leadsto \left(a + \left(-\color{blue}{0.3333333333333333}\right)\right) \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      5. metadata-eval99.4%

        \[\leadsto \left(a + \color{blue}{-0.3333333333333333}\right) \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      6. *-commutative99.4%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\color{blue}{\left(a - \frac{1}{3}\right) \cdot 9}}} \cdot rand\right) \]
      7. sub-neg99.4%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\color{blue}{\left(a + \left(-\frac{1}{3}\right)\right)} \cdot 9}} \cdot rand\right) \]
      8. metadata-eval99.4%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\left(a + \left(-\color{blue}{0.3333333333333333}\right)\right) \cdot 9}} \cdot rand\right) \]
      9. metadata-eval99.4%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\left(a + \color{blue}{-0.3333333333333333}\right) \cdot 9}} \cdot rand\right) \]
    3. Simplified99.4%

      \[\leadsto \color{blue}{\left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\left(a + -0.3333333333333333\right) \cdot 9}} \cdot rand\right)} \]
    4. Taylor expanded in rand around 0 0.4%

      \[\leadsto \color{blue}{a - 0.3333333333333333} \]
    5. Step-by-step derivation
      1. sub-neg0.4%

        \[\leadsto \color{blue}{a + \left(-0.3333333333333333\right)} \]
      2. metadata-eval0.4%

        \[\leadsto a + \color{blue}{-0.3333333333333333} \]
      3. +-commutative0.4%

        \[\leadsto \color{blue}{-0.3333333333333333 + a} \]
      4. flip-+0.3%

        \[\leadsto \color{blue}{\frac{-0.3333333333333333 \cdot -0.3333333333333333 - a \cdot a}{-0.3333333333333333 - a}} \]
      5. metadata-eval0.3%

        \[\leadsto \frac{\color{blue}{0.1111111111111111} - a \cdot a}{-0.3333333333333333 - a} \]
    6. Applied egg-rr0.3%

      \[\leadsto \color{blue}{\frac{0.1111111111111111 - a \cdot a}{-0.3333333333333333 - a}} \]
    7. Taylor expanded in a around inf 0.3%

      \[\leadsto \frac{0.1111111111111111 - a \cdot a}{\color{blue}{-1 \cdot a}} \]
    8. Step-by-step derivation
      1. neg-mul-10.3%

        \[\leadsto \frac{0.1111111111111111 - a \cdot a}{\color{blue}{-a}} \]
    9. Simplified0.3%

      \[\leadsto \frac{0.1111111111111111 - a \cdot a}{\color{blue}{-a}} \]
    10. Step-by-step derivation
      1. frac-2neg0.3%

        \[\leadsto \color{blue}{\frac{-\left(0.1111111111111111 - a \cdot a\right)}{-\left(-a\right)}} \]
      2. div-inv0.3%

        \[\leadsto \color{blue}{\left(-\left(0.1111111111111111 - a \cdot a\right)\right) \cdot \frac{1}{-\left(-a\right)}} \]
      3. cancel-sign-sub-inv0.3%

        \[\leadsto \left(-\color{blue}{\left(0.1111111111111111 + \left(-a\right) \cdot a\right)}\right) \cdot \frac{1}{-\left(-a\right)} \]
      4. add-sqr-sqrt0.0%

        \[\leadsto \left(-\left(0.1111111111111111 + \color{blue}{\left(\sqrt{-a} \cdot \sqrt{-a}\right)} \cdot a\right)\right) \cdot \frac{1}{-\left(-a\right)} \]
      5. sqrt-unprod23.4%

        \[\leadsto \left(-\left(0.1111111111111111 + \color{blue}{\sqrt{\left(-a\right) \cdot \left(-a\right)}} \cdot a\right)\right) \cdot \frac{1}{-\left(-a\right)} \]
      6. sqr-neg23.4%

        \[\leadsto \left(-\left(0.1111111111111111 + \sqrt{\color{blue}{a \cdot a}} \cdot a\right)\right) \cdot \frac{1}{-\left(-a\right)} \]
      7. sqrt-prod23.4%

        \[\leadsto \left(-\left(0.1111111111111111 + \color{blue}{\left(\sqrt{a} \cdot \sqrt{a}\right)} \cdot a\right)\right) \cdot \frac{1}{-\left(-a\right)} \]
      8. add-sqr-sqrt23.4%

        \[\leadsto \left(-\left(0.1111111111111111 + \color{blue}{a} \cdot a\right)\right) \cdot \frac{1}{-\left(-a\right)} \]
      9. remove-double-neg23.4%

        \[\leadsto \left(-\left(0.1111111111111111 + a \cdot a\right)\right) \cdot \frac{1}{\color{blue}{a}} \]
    11. Applied egg-rr23.4%

      \[\leadsto \color{blue}{\left(-\left(0.1111111111111111 + a \cdot a\right)\right) \cdot \frac{1}{a}} \]
    12. Step-by-step derivation
      1. associate-*r/23.4%

        \[\leadsto \color{blue}{\frac{\left(-\left(0.1111111111111111 + a \cdot a\right)\right) \cdot 1}{a}} \]
      2. *-rgt-identity23.4%

        \[\leadsto \frac{\color{blue}{-\left(0.1111111111111111 + a \cdot a\right)}}{a} \]
      3. distribute-neg-in23.4%

        \[\leadsto \frac{\color{blue}{\left(-0.1111111111111111\right) + \left(-a \cdot a\right)}}{a} \]
      4. metadata-eval23.4%

        \[\leadsto \frac{\color{blue}{-0.1111111111111111} + \left(-a \cdot a\right)}{a} \]
      5. unsub-neg23.4%

        \[\leadsto \frac{\color{blue}{-0.1111111111111111 - a \cdot a}}{a} \]
    13. Simplified23.4%

      \[\leadsto \color{blue}{\frac{-0.1111111111111111 - a \cdot a}{a}} \]

    if -2.6499999999999999e104 < rand < 5.0999999999999999e154

    1. Initial program 99.8%

      \[\left(a - \frac{1}{3}\right) \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
    2. Step-by-step derivation
      1. remove-double-neg99.8%

        \[\leadsto \color{blue}{\left(-\left(-\left(a - \frac{1}{3}\right)\right)\right)} \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      2. remove-double-neg99.8%

        \[\leadsto \color{blue}{\left(a - \frac{1}{3}\right)} \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      3. sub-neg99.8%

        \[\leadsto \color{blue}{\left(a + \left(-\frac{1}{3}\right)\right)} \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      4. metadata-eval99.8%

        \[\leadsto \left(a + \left(-\color{blue}{0.3333333333333333}\right)\right) \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      5. metadata-eval99.8%

        \[\leadsto \left(a + \color{blue}{-0.3333333333333333}\right) \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      6. *-commutative99.8%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\color{blue}{\left(a - \frac{1}{3}\right) \cdot 9}}} \cdot rand\right) \]
      7. sub-neg99.8%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\color{blue}{\left(a + \left(-\frac{1}{3}\right)\right)} \cdot 9}} \cdot rand\right) \]
      8. metadata-eval99.8%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\left(a + \left(-\color{blue}{0.3333333333333333}\right)\right) \cdot 9}} \cdot rand\right) \]
      9. metadata-eval99.8%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\left(a + \color{blue}{-0.3333333333333333}\right) \cdot 9}} \cdot rand\right) \]
    3. Simplified99.8%

      \[\leadsto \color{blue}{\left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\left(a + -0.3333333333333333\right) \cdot 9}} \cdot rand\right)} \]
    4. Taylor expanded in rand around 0 83.5%

      \[\leadsto \color{blue}{a - 0.3333333333333333} \]

    if 5.0999999999999999e154 < rand

    1. Initial program 99.6%

      \[\left(a - \frac{1}{3}\right) \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
    2. Step-by-step derivation
      1. remove-double-neg99.6%

        \[\leadsto \color{blue}{\left(-\left(-\left(a - \frac{1}{3}\right)\right)\right)} \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      2. remove-double-neg99.6%

        \[\leadsto \color{blue}{\left(a - \frac{1}{3}\right)} \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      3. sub-neg99.6%

        \[\leadsto \color{blue}{\left(a + \left(-\frac{1}{3}\right)\right)} \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      4. metadata-eval99.6%

        \[\leadsto \left(a + \left(-\color{blue}{0.3333333333333333}\right)\right) \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      5. metadata-eval99.6%

        \[\leadsto \left(a + \color{blue}{-0.3333333333333333}\right) \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      6. *-commutative99.6%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\color{blue}{\left(a - \frac{1}{3}\right) \cdot 9}}} \cdot rand\right) \]
      7. sub-neg99.6%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\color{blue}{\left(a + \left(-\frac{1}{3}\right)\right)} \cdot 9}} \cdot rand\right) \]
      8. metadata-eval99.6%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\left(a + \left(-\color{blue}{0.3333333333333333}\right)\right) \cdot 9}} \cdot rand\right) \]
      9. metadata-eval99.6%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\left(a + \color{blue}{-0.3333333333333333}\right) \cdot 9}} \cdot rand\right) \]
    3. Simplified99.6%

      \[\leadsto \color{blue}{\left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\left(a + -0.3333333333333333\right) \cdot 9}} \cdot rand\right)} \]
    4. Taylor expanded in rand around 0 5.7%

      \[\leadsto \color{blue}{a - 0.3333333333333333} \]
    5. Step-by-step derivation
      1. sub-neg5.7%

        \[\leadsto \color{blue}{a + \left(-0.3333333333333333\right)} \]
      2. metadata-eval5.7%

        \[\leadsto a + \color{blue}{-0.3333333333333333} \]
      3. +-commutative5.7%

        \[\leadsto \color{blue}{-0.3333333333333333 + a} \]
      4. flip-+39.0%

        \[\leadsto \color{blue}{\frac{-0.3333333333333333 \cdot -0.3333333333333333 - a \cdot a}{-0.3333333333333333 - a}} \]
      5. metadata-eval39.0%

        \[\leadsto \frac{\color{blue}{0.1111111111111111} - a \cdot a}{-0.3333333333333333 - a} \]
    6. Applied egg-rr39.0%

      \[\leadsto \color{blue}{\frac{0.1111111111111111 - a \cdot a}{-0.3333333333333333 - a}} \]
    7. Taylor expanded in a around inf 39.0%

      \[\leadsto \frac{0.1111111111111111 - a \cdot a}{\color{blue}{-1 \cdot a}} \]
    8. Step-by-step derivation
      1. neg-mul-139.0%

        \[\leadsto \frac{0.1111111111111111 - a \cdot a}{\color{blue}{-a}} \]
    9. Simplified39.0%

      \[\leadsto \frac{0.1111111111111111 - a \cdot a}{\color{blue}{-a}} \]
    10. Taylor expanded in a around inf 39.0%

      \[\leadsto \frac{\color{blue}{-1 \cdot {a}^{2}}}{-a} \]
    11. Step-by-step derivation
      1. unpow239.0%

        \[\leadsto \frac{-1 \cdot \color{blue}{\left(a \cdot a\right)}}{-a} \]
      2. neg-mul-139.0%

        \[\leadsto \frac{\color{blue}{-a \cdot a}}{-a} \]
      3. distribute-rgt-neg-in39.0%

        \[\leadsto \frac{\color{blue}{a \cdot \left(-a\right)}}{-a} \]
    12. Simplified39.0%

      \[\leadsto \frac{\color{blue}{a \cdot \left(-a\right)}}{-a} \]
  3. Recombined 3 regimes into one program.
  4. Final simplification68.6%

    \[\leadsto \begin{array}{l} \mathbf{if}\;rand \leq -2.65 \cdot 10^{+104}:\\ \;\;\;\;\frac{-0.1111111111111111 - a \cdot a}{a}\\ \mathbf{elif}\;rand \leq 5.1 \cdot 10^{+154}:\\ \;\;\;\;a - 0.3333333333333333\\ \mathbf{else}:\\ \;\;\;\;\frac{a \cdot \left(-a\right)}{-a}\\ \end{array} \]

Alternative 9: 66.6% accurate, 13.1× speedup?

\[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;rand \leq 5.1 \cdot 10^{+154}:\\ \;\;\;\;a - 0.3333333333333333\\ \mathbf{else}:\\ \;\;\;\;\frac{a \cdot \left(-a\right)}{-a}\\ \end{array} \end{array} \]
(FPCore (a rand)
 :precision binary64
 (if (<= rand 5.1e+154) (- a 0.3333333333333333) (/ (* a (- a)) (- a))))
double code(double a, double rand) {
	double tmp;
	if (rand <= 5.1e+154) {
		tmp = a - 0.3333333333333333;
	} else {
		tmp = (a * -a) / -a;
	}
	return tmp;
}
real(8) function code(a, rand)
    real(8), intent (in) :: a
    real(8), intent (in) :: rand
    real(8) :: tmp
    if (rand <= 5.1d+154) then
        tmp = a - 0.3333333333333333d0
    else
        tmp = (a * -a) / -a
    end if
    code = tmp
end function
public static double code(double a, double rand) {
	double tmp;
	if (rand <= 5.1e+154) {
		tmp = a - 0.3333333333333333;
	} else {
		tmp = (a * -a) / -a;
	}
	return tmp;
}
def code(a, rand):
	tmp = 0
	if rand <= 5.1e+154:
		tmp = a - 0.3333333333333333
	else:
		tmp = (a * -a) / -a
	return tmp
function code(a, rand)
	tmp = 0.0
	if (rand <= 5.1e+154)
		tmp = Float64(a - 0.3333333333333333);
	else
		tmp = Float64(Float64(a * Float64(-a)) / Float64(-a));
	end
	return tmp
end
function tmp_2 = code(a, rand)
	tmp = 0.0;
	if (rand <= 5.1e+154)
		tmp = a - 0.3333333333333333;
	else
		tmp = (a * -a) / -a;
	end
	tmp_2 = tmp;
end
code[a_, rand_] := If[LessEqual[rand, 5.1e+154], N[(a - 0.3333333333333333), $MachinePrecision], N[(N[(a * (-a)), $MachinePrecision] / (-a)), $MachinePrecision]]
\begin{array}{l}

\\
\begin{array}{l}
\mathbf{if}\;rand \leq 5.1 \cdot 10^{+154}:\\
\;\;\;\;a - 0.3333333333333333\\

\mathbf{else}:\\
\;\;\;\;\frac{a \cdot \left(-a\right)}{-a}\\


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

    1. Initial program 99.7%

      \[\left(a - \frac{1}{3}\right) \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
    2. Step-by-step derivation
      1. remove-double-neg99.7%

        \[\leadsto \color{blue}{\left(-\left(-\left(a - \frac{1}{3}\right)\right)\right)} \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      2. remove-double-neg99.7%

        \[\leadsto \color{blue}{\left(a - \frac{1}{3}\right)} \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      3. sub-neg99.7%

        \[\leadsto \color{blue}{\left(a + \left(-\frac{1}{3}\right)\right)} \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      4. metadata-eval99.7%

        \[\leadsto \left(a + \left(-\color{blue}{0.3333333333333333}\right)\right) \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      5. metadata-eval99.7%

        \[\leadsto \left(a + \color{blue}{-0.3333333333333333}\right) \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      6. *-commutative99.7%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\color{blue}{\left(a - \frac{1}{3}\right) \cdot 9}}} \cdot rand\right) \]
      7. sub-neg99.7%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\color{blue}{\left(a + \left(-\frac{1}{3}\right)\right)} \cdot 9}} \cdot rand\right) \]
      8. metadata-eval99.7%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\left(a + \left(-\color{blue}{0.3333333333333333}\right)\right) \cdot 9}} \cdot rand\right) \]
      9. metadata-eval99.7%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\left(a + \color{blue}{-0.3333333333333333}\right) \cdot 9}} \cdot rand\right) \]
    3. Simplified99.7%

      \[\leadsto \color{blue}{\left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\left(a + -0.3333333333333333\right) \cdot 9}} \cdot rand\right)} \]
    4. Taylor expanded in rand around 0 67.8%

      \[\leadsto \color{blue}{a - 0.3333333333333333} \]

    if 5.0999999999999999e154 < rand

    1. Initial program 99.6%

      \[\left(a - \frac{1}{3}\right) \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
    2. Step-by-step derivation
      1. remove-double-neg99.6%

        \[\leadsto \color{blue}{\left(-\left(-\left(a - \frac{1}{3}\right)\right)\right)} \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      2. remove-double-neg99.6%

        \[\leadsto \color{blue}{\left(a - \frac{1}{3}\right)} \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      3. sub-neg99.6%

        \[\leadsto \color{blue}{\left(a + \left(-\frac{1}{3}\right)\right)} \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      4. metadata-eval99.6%

        \[\leadsto \left(a + \left(-\color{blue}{0.3333333333333333}\right)\right) \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      5. metadata-eval99.6%

        \[\leadsto \left(a + \color{blue}{-0.3333333333333333}\right) \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
      6. *-commutative99.6%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\color{blue}{\left(a - \frac{1}{3}\right) \cdot 9}}} \cdot rand\right) \]
      7. sub-neg99.6%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\color{blue}{\left(a + \left(-\frac{1}{3}\right)\right)} \cdot 9}} \cdot rand\right) \]
      8. metadata-eval99.6%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\left(a + \left(-\color{blue}{0.3333333333333333}\right)\right) \cdot 9}} \cdot rand\right) \]
      9. metadata-eval99.6%

        \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\left(a + \color{blue}{-0.3333333333333333}\right) \cdot 9}} \cdot rand\right) \]
    3. Simplified99.6%

      \[\leadsto \color{blue}{\left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\left(a + -0.3333333333333333\right) \cdot 9}} \cdot rand\right)} \]
    4. Taylor expanded in rand around 0 5.7%

      \[\leadsto \color{blue}{a - 0.3333333333333333} \]
    5. Step-by-step derivation
      1. sub-neg5.7%

        \[\leadsto \color{blue}{a + \left(-0.3333333333333333\right)} \]
      2. metadata-eval5.7%

        \[\leadsto a + \color{blue}{-0.3333333333333333} \]
      3. +-commutative5.7%

        \[\leadsto \color{blue}{-0.3333333333333333 + a} \]
      4. flip-+39.0%

        \[\leadsto \color{blue}{\frac{-0.3333333333333333 \cdot -0.3333333333333333 - a \cdot a}{-0.3333333333333333 - a}} \]
      5. metadata-eval39.0%

        \[\leadsto \frac{\color{blue}{0.1111111111111111} - a \cdot a}{-0.3333333333333333 - a} \]
    6. Applied egg-rr39.0%

      \[\leadsto \color{blue}{\frac{0.1111111111111111 - a \cdot a}{-0.3333333333333333 - a}} \]
    7. Taylor expanded in a around inf 39.0%

      \[\leadsto \frac{0.1111111111111111 - a \cdot a}{\color{blue}{-1 \cdot a}} \]
    8. Step-by-step derivation
      1. neg-mul-139.0%

        \[\leadsto \frac{0.1111111111111111 - a \cdot a}{\color{blue}{-a}} \]
    9. Simplified39.0%

      \[\leadsto \frac{0.1111111111111111 - a \cdot a}{\color{blue}{-a}} \]
    10. Taylor expanded in a around inf 39.0%

      \[\leadsto \frac{\color{blue}{-1 \cdot {a}^{2}}}{-a} \]
    11. Step-by-step derivation
      1. unpow239.0%

        \[\leadsto \frac{-1 \cdot \color{blue}{\left(a \cdot a\right)}}{-a} \]
      2. neg-mul-139.0%

        \[\leadsto \frac{\color{blue}{-a \cdot a}}{-a} \]
      3. distribute-rgt-neg-in39.0%

        \[\leadsto \frac{\color{blue}{a \cdot \left(-a\right)}}{-a} \]
    12. Simplified39.0%

      \[\leadsto \frac{\color{blue}{a \cdot \left(-a\right)}}{-a} \]
  3. Recombined 2 regimes into one program.
  4. Final simplification64.7%

    \[\leadsto \begin{array}{l} \mathbf{if}\;rand \leq 5.1 \cdot 10^{+154}:\\ \;\;\;\;a - 0.3333333333333333\\ \mathbf{else}:\\ \;\;\;\;\frac{a \cdot \left(-a\right)}{-a}\\ \end{array} \]

Alternative 10: 62.3% accurate, 39.7× speedup?

\[\begin{array}{l} \\ a - 0.3333333333333333 \end{array} \]
(FPCore (a rand) :precision binary64 (- a 0.3333333333333333))
double code(double a, double rand) {
	return a - 0.3333333333333333;
}
real(8) function code(a, rand)
    real(8), intent (in) :: a
    real(8), intent (in) :: rand
    code = a - 0.3333333333333333d0
end function
public static double code(double a, double rand) {
	return a - 0.3333333333333333;
}
def code(a, rand):
	return a - 0.3333333333333333
function code(a, rand)
	return Float64(a - 0.3333333333333333)
end
function tmp = code(a, rand)
	tmp = a - 0.3333333333333333;
end
code[a_, rand_] := N[(a - 0.3333333333333333), $MachinePrecision]
\begin{array}{l}

\\
a - 0.3333333333333333
\end{array}
Derivation
  1. Initial program 99.7%

    \[\left(a - \frac{1}{3}\right) \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
  2. Step-by-step derivation
    1. remove-double-neg99.7%

      \[\leadsto \color{blue}{\left(-\left(-\left(a - \frac{1}{3}\right)\right)\right)} \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
    2. remove-double-neg99.7%

      \[\leadsto \color{blue}{\left(a - \frac{1}{3}\right)} \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
    3. sub-neg99.7%

      \[\leadsto \color{blue}{\left(a + \left(-\frac{1}{3}\right)\right)} \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
    4. metadata-eval99.7%

      \[\leadsto \left(a + \left(-\color{blue}{0.3333333333333333}\right)\right) \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
    5. metadata-eval99.7%

      \[\leadsto \left(a + \color{blue}{-0.3333333333333333}\right) \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
    6. *-commutative99.7%

      \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\color{blue}{\left(a - \frac{1}{3}\right) \cdot 9}}} \cdot rand\right) \]
    7. sub-neg99.7%

      \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\color{blue}{\left(a + \left(-\frac{1}{3}\right)\right)} \cdot 9}} \cdot rand\right) \]
    8. metadata-eval99.7%

      \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\left(a + \left(-\color{blue}{0.3333333333333333}\right)\right) \cdot 9}} \cdot rand\right) \]
    9. metadata-eval99.7%

      \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\left(a + \color{blue}{-0.3333333333333333}\right) \cdot 9}} \cdot rand\right) \]
  3. Simplified99.7%

    \[\leadsto \color{blue}{\left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\left(a + -0.3333333333333333\right) \cdot 9}} \cdot rand\right)} \]
  4. Taylor expanded in rand around 0 61.0%

    \[\leadsto \color{blue}{a - 0.3333333333333333} \]
  5. Final simplification61.0%

    \[\leadsto a - 0.3333333333333333 \]

Alternative 11: 1.5% accurate, 119.0× speedup?

\[\begin{array}{l} \\ -0.3333333333333333 \end{array} \]
(FPCore (a rand) :precision binary64 -0.3333333333333333)
double code(double a, double rand) {
	return -0.3333333333333333;
}
real(8) function code(a, rand)
    real(8), intent (in) :: a
    real(8), intent (in) :: rand
    code = -0.3333333333333333d0
end function
public static double code(double a, double rand) {
	return -0.3333333333333333;
}
def code(a, rand):
	return -0.3333333333333333
function code(a, rand)
	return -0.3333333333333333
end
function tmp = code(a, rand)
	tmp = -0.3333333333333333;
end
code[a_, rand_] := -0.3333333333333333
\begin{array}{l}

\\
-0.3333333333333333
\end{array}
Derivation
  1. Initial program 99.7%

    \[\left(a - \frac{1}{3}\right) \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
  2. Step-by-step derivation
    1. remove-double-neg99.7%

      \[\leadsto \color{blue}{\left(-\left(-\left(a - \frac{1}{3}\right)\right)\right)} \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
    2. remove-double-neg99.7%

      \[\leadsto \color{blue}{\left(a - \frac{1}{3}\right)} \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
    3. sub-neg99.7%

      \[\leadsto \color{blue}{\left(a + \left(-\frac{1}{3}\right)\right)} \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
    4. metadata-eval99.7%

      \[\leadsto \left(a + \left(-\color{blue}{0.3333333333333333}\right)\right) \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
    5. metadata-eval99.7%

      \[\leadsto \left(a + \color{blue}{-0.3333333333333333}\right) \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
    6. *-commutative99.7%

      \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\color{blue}{\left(a - \frac{1}{3}\right) \cdot 9}}} \cdot rand\right) \]
    7. sub-neg99.7%

      \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\color{blue}{\left(a + \left(-\frac{1}{3}\right)\right)} \cdot 9}} \cdot rand\right) \]
    8. metadata-eval99.7%

      \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\left(a + \left(-\color{blue}{0.3333333333333333}\right)\right) \cdot 9}} \cdot rand\right) \]
    9. metadata-eval99.7%

      \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\left(a + \color{blue}{-0.3333333333333333}\right) \cdot 9}} \cdot rand\right) \]
  3. Simplified99.7%

    \[\leadsto \color{blue}{\left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\left(a + -0.3333333333333333\right) \cdot 9}} \cdot rand\right)} \]
  4. Taylor expanded in rand around 0 61.0%

    \[\leadsto \color{blue}{a - 0.3333333333333333} \]
  5. Taylor expanded in a around 0 1.6%

    \[\leadsto \color{blue}{-0.3333333333333333} \]
  6. Final simplification1.6%

    \[\leadsto -0.3333333333333333 \]

Alternative 12: 61.3% accurate, 119.0× speedup?

\[\begin{array}{l} \\ a \end{array} \]
(FPCore (a rand) :precision binary64 a)
double code(double a, double rand) {
	return a;
}
real(8) function code(a, rand)
    real(8), intent (in) :: a
    real(8), intent (in) :: rand
    code = a
end function
public static double code(double a, double rand) {
	return a;
}
def code(a, rand):
	return a
function code(a, rand)
	return a
end
function tmp = code(a, rand)
	tmp = a;
end
code[a_, rand_] := a
\begin{array}{l}

\\
a
\end{array}
Derivation
  1. Initial program 99.7%

    \[\left(a - \frac{1}{3}\right) \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
  2. Step-by-step derivation
    1. remove-double-neg99.7%

      \[\leadsto \color{blue}{\left(-\left(-\left(a - \frac{1}{3}\right)\right)\right)} \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
    2. remove-double-neg99.7%

      \[\leadsto \color{blue}{\left(a - \frac{1}{3}\right)} \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
    3. sub-neg99.7%

      \[\leadsto \color{blue}{\left(a + \left(-\frac{1}{3}\right)\right)} \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
    4. metadata-eval99.7%

      \[\leadsto \left(a + \left(-\color{blue}{0.3333333333333333}\right)\right) \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
    5. metadata-eval99.7%

      \[\leadsto \left(a + \color{blue}{-0.3333333333333333}\right) \cdot \left(1 + \frac{1}{\sqrt{9 \cdot \left(a - \frac{1}{3}\right)}} \cdot rand\right) \]
    6. *-commutative99.7%

      \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\color{blue}{\left(a - \frac{1}{3}\right) \cdot 9}}} \cdot rand\right) \]
    7. sub-neg99.7%

      \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\color{blue}{\left(a + \left(-\frac{1}{3}\right)\right)} \cdot 9}} \cdot rand\right) \]
    8. metadata-eval99.7%

      \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\left(a + \left(-\color{blue}{0.3333333333333333}\right)\right) \cdot 9}} \cdot rand\right) \]
    9. metadata-eval99.7%

      \[\leadsto \left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\left(a + \color{blue}{-0.3333333333333333}\right) \cdot 9}} \cdot rand\right) \]
  3. Simplified99.7%

    \[\leadsto \color{blue}{\left(a + -0.3333333333333333\right) \cdot \left(1 + \frac{1}{\sqrt{\left(a + -0.3333333333333333\right) \cdot 9}} \cdot rand\right)} \]
  4. Taylor expanded in a around inf 60.6%

    \[\leadsto \color{blue}{a} \]
  5. Final simplification60.6%

    \[\leadsto a \]

Reproduce

?
herbie shell --seed 2023283 
(FPCore (a rand)
  :name "Octave 3.8, oct_fill_randg"
  :precision binary64
  (* (- a (/ 1.0 3.0)) (+ 1.0 (* (/ 1.0 (sqrt (* 9.0 (- a (/ 1.0 3.0))))) rand))))