b parameter of renormalized beta distribution

Percentage Accurate: 99.9% → 99.9%
Time: 10.6s
Alternatives: 12
Speedup: 1.0×

Specification

?
\[\left(0 < m \land 0 < v\right) \land v < 0.25\]
\[\begin{array}{l} \\ \left(\frac{m \cdot \left(1 - m\right)}{v} - 1\right) \cdot \left(1 - m\right) \end{array} \]
(FPCore (m v) :precision binary64 (* (- (/ (* m (- 1.0 m)) v) 1.0) (- 1.0 m)))
double code(double m, double v) {
	return (((m * (1.0 - m)) / v) - 1.0) * (1.0 - m);
}
real(8) function code(m, v)
    real(8), intent (in) :: m
    real(8), intent (in) :: v
    code = (((m * (1.0d0 - m)) / v) - 1.0d0) * (1.0d0 - m)
end function
public static double code(double m, double v) {
	return (((m * (1.0 - m)) / v) - 1.0) * (1.0 - m);
}
def code(m, v):
	return (((m * (1.0 - m)) / v) - 1.0) * (1.0 - m)
function code(m, v)
	return Float64(Float64(Float64(Float64(m * Float64(1.0 - m)) / v) - 1.0) * Float64(1.0 - m))
end
function tmp = code(m, v)
	tmp = (((m * (1.0 - m)) / v) - 1.0) * (1.0 - m);
end
code[m_, v_] := N[(N[(N[(N[(m * N[(1.0 - m), $MachinePrecision]), $MachinePrecision] / v), $MachinePrecision] - 1.0), $MachinePrecision] * N[(1.0 - m), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
\left(\frac{m \cdot \left(1 - m\right)}{v} - 1\right) \cdot \left(1 - m\right)
\end{array}

Sampling outcomes in binary64 precision:

Local Percentage Accuracy vs ?

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

Accuracy vs Speed?

Herbie found 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.9% accurate, 1.0× speedup?

\[\begin{array}{l} \\ \left(\frac{m \cdot \left(1 - m\right)}{v} - 1\right) \cdot \left(1 - m\right) \end{array} \]
(FPCore (m v) :precision binary64 (* (- (/ (* m (- 1.0 m)) v) 1.0) (- 1.0 m)))
double code(double m, double v) {
	return (((m * (1.0 - m)) / v) - 1.0) * (1.0 - m);
}
real(8) function code(m, v)
    real(8), intent (in) :: m
    real(8), intent (in) :: v
    code = (((m * (1.0d0 - m)) / v) - 1.0d0) * (1.0d0 - m)
end function
public static double code(double m, double v) {
	return (((m * (1.0 - m)) / v) - 1.0) * (1.0 - m);
}
def code(m, v):
	return (((m * (1.0 - m)) / v) - 1.0) * (1.0 - m)
function code(m, v)
	return Float64(Float64(Float64(Float64(m * Float64(1.0 - m)) / v) - 1.0) * Float64(1.0 - m))
end
function tmp = code(m, v)
	tmp = (((m * (1.0 - m)) / v) - 1.0) * (1.0 - m);
end
code[m_, v_] := N[(N[(N[(N[(m * N[(1.0 - m), $MachinePrecision]), $MachinePrecision] / v), $MachinePrecision] - 1.0), $MachinePrecision] * N[(1.0 - m), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
\left(\frac{m \cdot \left(1 - m\right)}{v} - 1\right) \cdot \left(1 - m\right)
\end{array}

Alternative 1: 99.9% accurate, 0.8× speedup?

\[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;m \leq 5.5 \cdot 10^{-16}:\\ \;\;\;\;-1 + \left(m + \frac{m}{v}\right)\\ \mathbf{else}:\\ \;\;\;\;\left(m \cdot \left(1 - m\right)\right) \cdot \frac{1 - m}{v}\\ \end{array} \end{array} \]
(FPCore (m v)
 :precision binary64
 (if (<= m 5.5e-16)
   (+ -1.0 (+ m (/ m v)))
   (* (* m (- 1.0 m)) (/ (- 1.0 m) v))))
double code(double m, double v) {
	double tmp;
	if (m <= 5.5e-16) {
		tmp = -1.0 + (m + (m / v));
	} else {
		tmp = (m * (1.0 - m)) * ((1.0 - m) / v);
	}
	return tmp;
}
real(8) function code(m, v)
    real(8), intent (in) :: m
    real(8), intent (in) :: v
    real(8) :: tmp
    if (m <= 5.5d-16) then
        tmp = (-1.0d0) + (m + (m / v))
    else
        tmp = (m * (1.0d0 - m)) * ((1.0d0 - m) / v)
    end if
    code = tmp
end function
public static double code(double m, double v) {
	double tmp;
	if (m <= 5.5e-16) {
		tmp = -1.0 + (m + (m / v));
	} else {
		tmp = (m * (1.0 - m)) * ((1.0 - m) / v);
	}
	return tmp;
}
def code(m, v):
	tmp = 0
	if m <= 5.5e-16:
		tmp = -1.0 + (m + (m / v))
	else:
		tmp = (m * (1.0 - m)) * ((1.0 - m) / v)
	return tmp
function code(m, v)
	tmp = 0.0
	if (m <= 5.5e-16)
		tmp = Float64(-1.0 + Float64(m + Float64(m / v)));
	else
		tmp = Float64(Float64(m * Float64(1.0 - m)) * Float64(Float64(1.0 - m) / v));
	end
	return tmp
end
function tmp_2 = code(m, v)
	tmp = 0.0;
	if (m <= 5.5e-16)
		tmp = -1.0 + (m + (m / v));
	else
		tmp = (m * (1.0 - m)) * ((1.0 - m) / v);
	end
	tmp_2 = tmp;
end
code[m_, v_] := If[LessEqual[m, 5.5e-16], N[(-1.0 + N[(m + N[(m / v), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(N[(m * N[(1.0 - m), $MachinePrecision]), $MachinePrecision] * N[(N[(1.0 - m), $MachinePrecision] / v), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}

\\
\begin{array}{l}
\mathbf{if}\;m \leq 5.5 \cdot 10^{-16}:\\
\;\;\;\;-1 + \left(m + \frac{m}{v}\right)\\

\mathbf{else}:\\
\;\;\;\;\left(m \cdot \left(1 - m\right)\right) \cdot \frac{1 - m}{v}\\


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if m < 5.49999999999999964e-16

    1. Initial program 100.0%

      \[\left(\frac{m \cdot \left(1 - m\right)}{v} - 1\right) \cdot \left(1 - m\right) \]
    2. Step-by-step derivation
      1. *-commutativeN/A

        \[\leadsto \left(1 - m\right) \cdot \color{blue}{\left(\frac{m \cdot \left(1 - m\right)}{v} - 1\right)} \]
      2. *-lowering-*.f64N/A

        \[\leadsto \mathsf{*.f64}\left(\left(1 - m\right), \color{blue}{\left(\frac{m \cdot \left(1 - m\right)}{v} - 1\right)}\right) \]
      3. --lowering--.f64N/A

        \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \left(\color{blue}{\frac{m \cdot \left(1 - m\right)}{v}} - 1\right)\right) \]
      4. sub-negN/A

        \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \left(\frac{m \cdot \left(1 - m\right)}{v} + \color{blue}{\left(\mathsf{neg}\left(1\right)\right)}\right)\right) \]
      5. +-lowering-+.f64N/A

        \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\left(\frac{m \cdot \left(1 - m\right)}{v}\right), \color{blue}{\left(\mathsf{neg}\left(1\right)\right)}\right)\right) \]
      6. associate-/l*N/A

        \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\left(m \cdot \frac{1 - m}{v}\right), \left(\mathsf{neg}\left(\color{blue}{1}\right)\right)\right)\right) \]
      7. *-lowering-*.f64N/A

        \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(m, \left(\frac{1 - m}{v}\right)\right), \left(\mathsf{neg}\left(\color{blue}{1}\right)\right)\right)\right) \]
      8. /-lowering-/.f64N/A

        \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(m, \mathsf{/.f64}\left(\left(1 - m\right), v\right)\right), \left(\mathsf{neg}\left(1\right)\right)\right)\right) \]
      9. --lowering--.f64N/A

        \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(m, \mathsf{/.f64}\left(\mathsf{\_.f64}\left(1, m\right), v\right)\right), \left(\mathsf{neg}\left(1\right)\right)\right)\right) \]
      10. metadata-eval99.8%

        \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(m, \mathsf{/.f64}\left(\mathsf{\_.f64}\left(1, m\right), v\right)\right), -1\right)\right) \]
    3. Simplified99.8%

      \[\leadsto \color{blue}{\left(1 - m\right) \cdot \left(m \cdot \frac{1 - m}{v} + -1\right)} \]
    4. Add Preprocessing
    5. Taylor expanded in m around 0

      \[\leadsto \color{blue}{m \cdot \left(1 + \frac{1}{v}\right) - 1} \]
    6. Step-by-step derivation
      1. sub-negN/A

        \[\leadsto m \cdot \left(1 + \frac{1}{v}\right) + \color{blue}{\left(\mathsf{neg}\left(1\right)\right)} \]
      2. metadata-evalN/A

        \[\leadsto m \cdot \left(1 + \frac{1}{v}\right) + -1 \]
      3. +-commutativeN/A

        \[\leadsto -1 + \color{blue}{m \cdot \left(1 + \frac{1}{v}\right)} \]
      4. +-lowering-+.f64N/A

        \[\leadsto \mathsf{+.f64}\left(-1, \color{blue}{\left(m \cdot \left(1 + \frac{1}{v}\right)\right)}\right) \]
      5. distribute-rgt-inN/A

        \[\leadsto \mathsf{+.f64}\left(-1, \left(1 \cdot m + \color{blue}{\frac{1}{v} \cdot m}\right)\right) \]
      6. *-lft-identityN/A

        \[\leadsto \mathsf{+.f64}\left(-1, \left(m + \color{blue}{\frac{1}{v}} \cdot m\right)\right) \]
      7. associate-*l/N/A

        \[\leadsto \mathsf{+.f64}\left(-1, \left(m + \frac{1 \cdot m}{\color{blue}{v}}\right)\right) \]
      8. *-lft-identityN/A

        \[\leadsto \mathsf{+.f64}\left(-1, \left(m + \frac{m}{v}\right)\right) \]
      9. +-lowering-+.f64N/A

        \[\leadsto \mathsf{+.f64}\left(-1, \mathsf{+.f64}\left(m, \color{blue}{\left(\frac{m}{v}\right)}\right)\right) \]
      10. /-lowering-/.f64100.0%

        \[\leadsto \mathsf{+.f64}\left(-1, \mathsf{+.f64}\left(m, \mathsf{/.f64}\left(m, \color{blue}{v}\right)\right)\right) \]
    7. Simplified100.0%

      \[\leadsto \color{blue}{-1 + \left(m + \frac{m}{v}\right)} \]

    if 5.49999999999999964e-16 < m

    1. Initial program 99.9%

      \[\left(\frac{m \cdot \left(1 - m\right)}{v} - 1\right) \cdot \left(1 - m\right) \]
    2. Add Preprocessing
    3. Taylor expanded in m around inf

      \[\leadsto \mathsf{*.f64}\left(\color{blue}{\left({m}^{2} \cdot \left(\frac{1}{m \cdot v} - \frac{1}{v}\right)\right)}, \mathsf{\_.f64}\left(1, m\right)\right) \]
    4. Step-by-step derivation
      1. distribute-lft-out--N/A

        \[\leadsto \mathsf{*.f64}\left(\left({m}^{2} \cdot \frac{1}{m \cdot v} - {m}^{2} \cdot \frac{1}{v}\right), \mathsf{\_.f64}\left(\color{blue}{1}, m\right)\right) \]
      2. unpow2N/A

        \[\leadsto \mathsf{*.f64}\left(\left(\left(m \cdot m\right) \cdot \frac{1}{m \cdot v} - {m}^{2} \cdot \frac{1}{v}\right), \mathsf{\_.f64}\left(1, m\right)\right) \]
      3. associate-*l*N/A

        \[\leadsto \mathsf{*.f64}\left(\left(m \cdot \left(m \cdot \frac{1}{m \cdot v}\right) - {m}^{2} \cdot \frac{1}{v}\right), \mathsf{\_.f64}\left(1, m\right)\right) \]
      4. associate-/r*N/A

        \[\leadsto \mathsf{*.f64}\left(\left(m \cdot \left(m \cdot \frac{\frac{1}{m}}{v}\right) - {m}^{2} \cdot \frac{1}{v}\right), \mathsf{\_.f64}\left(1, m\right)\right) \]
      5. associate-*r/N/A

        \[\leadsto \mathsf{*.f64}\left(\left(m \cdot \frac{m \cdot \frac{1}{m}}{v} - {m}^{2} \cdot \frac{1}{v}\right), \mathsf{\_.f64}\left(1, m\right)\right) \]
      6. rgt-mult-inverseN/A

        \[\leadsto \mathsf{*.f64}\left(\left(m \cdot \frac{1}{v} - {m}^{2} \cdot \frac{1}{v}\right), \mathsf{\_.f64}\left(1, m\right)\right) \]
      7. unpow2N/A

        \[\leadsto \mathsf{*.f64}\left(\left(m \cdot \frac{1}{v} - \left(m \cdot m\right) \cdot \frac{1}{v}\right), \mathsf{\_.f64}\left(1, m\right)\right) \]
      8. associate-*r*N/A

        \[\leadsto \mathsf{*.f64}\left(\left(m \cdot \frac{1}{v} - m \cdot \left(m \cdot \frac{1}{v}\right)\right), \mathsf{\_.f64}\left(1, m\right)\right) \]
      9. associate-*r/N/A

        \[\leadsto \mathsf{*.f64}\left(\left(m \cdot \frac{1}{v} - m \cdot \frac{m \cdot 1}{v}\right), \mathsf{\_.f64}\left(1, m\right)\right) \]
      10. *-rgt-identityN/A

        \[\leadsto \mathsf{*.f64}\left(\left(m \cdot \frac{1}{v} - m \cdot \frac{m}{v}\right), \mathsf{\_.f64}\left(1, m\right)\right) \]
      11. distribute-lft-out--N/A

        \[\leadsto \mathsf{*.f64}\left(\left(m \cdot \left(\frac{1}{v} - \frac{m}{v}\right)\right), \mathsf{\_.f64}\left(\color{blue}{1}, m\right)\right) \]
      12. div-subN/A

        \[\leadsto \mathsf{*.f64}\left(\left(m \cdot \frac{1 - m}{v}\right), \mathsf{\_.f64}\left(1, m\right)\right) \]
      13. associate-/l*N/A

        \[\leadsto \mathsf{*.f64}\left(\left(\frac{m \cdot \left(1 - m\right)}{v}\right), \mathsf{\_.f64}\left(\color{blue}{1}, m\right)\right) \]
      14. /-lowering-/.f64N/A

        \[\leadsto \mathsf{*.f64}\left(\mathsf{/.f64}\left(\left(m \cdot \left(1 - m\right)\right), v\right), \mathsf{\_.f64}\left(\color{blue}{1}, m\right)\right) \]
      15. *-lowering-*.f64N/A

        \[\leadsto \mathsf{*.f64}\left(\mathsf{/.f64}\left(\mathsf{*.f64}\left(m, \left(1 - m\right)\right), v\right), \mathsf{\_.f64}\left(1, m\right)\right) \]
      16. --lowering--.f6499.9%

        \[\leadsto \mathsf{*.f64}\left(\mathsf{/.f64}\left(\mathsf{*.f64}\left(m, \mathsf{\_.f64}\left(1, m\right)\right), v\right), \mathsf{\_.f64}\left(1, m\right)\right) \]
    5. Simplified99.9%

      \[\leadsto \color{blue}{\frac{m \cdot \left(1 - m\right)}{v}} \cdot \left(1 - m\right) \]
    6. Step-by-step derivation
      1. associate-*l/N/A

        \[\leadsto \frac{\left(m \cdot \left(1 - m\right)\right) \cdot \left(1 - m\right)}{\color{blue}{v}} \]
      2. associate-/l*N/A

        \[\leadsto \left(m \cdot \left(1 - m\right)\right) \cdot \color{blue}{\frac{1 - m}{v}} \]
      3. *-lowering-*.f64N/A

        \[\leadsto \mathsf{*.f64}\left(\left(m \cdot \left(1 - m\right)\right), \color{blue}{\left(\frac{1 - m}{v}\right)}\right) \]
      4. *-lowering-*.f64N/A

        \[\leadsto \mathsf{*.f64}\left(\mathsf{*.f64}\left(m, \left(1 - m\right)\right), \left(\frac{\color{blue}{1 - m}}{v}\right)\right) \]
      5. --lowering--.f64N/A

        \[\leadsto \mathsf{*.f64}\left(\mathsf{*.f64}\left(m, \mathsf{\_.f64}\left(1, m\right)\right), \left(\frac{1 - \color{blue}{m}}{v}\right)\right) \]
      6. /-lowering-/.f64N/A

        \[\leadsto \mathsf{*.f64}\left(\mathsf{*.f64}\left(m, \mathsf{\_.f64}\left(1, m\right)\right), \mathsf{/.f64}\left(\left(1 - m\right), \color{blue}{v}\right)\right) \]
      7. --lowering--.f6499.9%

        \[\leadsto \mathsf{*.f64}\left(\mathsf{*.f64}\left(m, \mathsf{\_.f64}\left(1, m\right)\right), \mathsf{/.f64}\left(\mathsf{\_.f64}\left(1, m\right), v\right)\right) \]
    7. Applied egg-rr99.9%

      \[\leadsto \color{blue}{\left(m \cdot \left(1 - m\right)\right) \cdot \frac{1 - m}{v}} \]
  3. Recombined 2 regimes into one program.
  4. Add Preprocessing

Alternative 2: 98.3% accurate, 0.9× speedup?

\[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;m \leq 1.6:\\ \;\;\;\;\left(1 - m\right) \cdot \left(-1 + \frac{m}{v}\right)\\ \mathbf{else}:\\ \;\;\;\;m \cdot \left(\frac{m}{v} \cdot \left(m + -2\right)\right)\\ \end{array} \end{array} \]
(FPCore (m v)
 :precision binary64
 (if (<= m 1.6) (* (- 1.0 m) (+ -1.0 (/ m v))) (* m (* (/ m v) (+ m -2.0)))))
double code(double m, double v) {
	double tmp;
	if (m <= 1.6) {
		tmp = (1.0 - m) * (-1.0 + (m / v));
	} else {
		tmp = m * ((m / v) * (m + -2.0));
	}
	return tmp;
}
real(8) function code(m, v)
    real(8), intent (in) :: m
    real(8), intent (in) :: v
    real(8) :: tmp
    if (m <= 1.6d0) then
        tmp = (1.0d0 - m) * ((-1.0d0) + (m / v))
    else
        tmp = m * ((m / v) * (m + (-2.0d0)))
    end if
    code = tmp
end function
public static double code(double m, double v) {
	double tmp;
	if (m <= 1.6) {
		tmp = (1.0 - m) * (-1.0 + (m / v));
	} else {
		tmp = m * ((m / v) * (m + -2.0));
	}
	return tmp;
}
def code(m, v):
	tmp = 0
	if m <= 1.6:
		tmp = (1.0 - m) * (-1.0 + (m / v))
	else:
		tmp = m * ((m / v) * (m + -2.0))
	return tmp
function code(m, v)
	tmp = 0.0
	if (m <= 1.6)
		tmp = Float64(Float64(1.0 - m) * Float64(-1.0 + Float64(m / v)));
	else
		tmp = Float64(m * Float64(Float64(m / v) * Float64(m + -2.0)));
	end
	return tmp
end
function tmp_2 = code(m, v)
	tmp = 0.0;
	if (m <= 1.6)
		tmp = (1.0 - m) * (-1.0 + (m / v));
	else
		tmp = m * ((m / v) * (m + -2.0));
	end
	tmp_2 = tmp;
end
code[m_, v_] := If[LessEqual[m, 1.6], N[(N[(1.0 - m), $MachinePrecision] * N[(-1.0 + N[(m / v), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(m * N[(N[(m / v), $MachinePrecision] * N[(m + -2.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}

\\
\begin{array}{l}
\mathbf{if}\;m \leq 1.6:\\
\;\;\;\;\left(1 - m\right) \cdot \left(-1 + \frac{m}{v}\right)\\

\mathbf{else}:\\
\;\;\;\;m \cdot \left(\frac{m}{v} \cdot \left(m + -2\right)\right)\\


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if m < 1.6000000000000001

    1. Initial program 100.0%

      \[\left(\frac{m \cdot \left(1 - m\right)}{v} - 1\right) \cdot \left(1 - m\right) \]
    2. Add Preprocessing
    3. Taylor expanded in m around 0

      \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(\color{blue}{\left(\frac{m}{v}\right)}, 1\right), \mathsf{\_.f64}\left(1, m\right)\right) \]
    4. Step-by-step derivation
      1. /-lowering-/.f6497.7%

        \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(\mathsf{/.f64}\left(m, v\right), 1\right), \mathsf{\_.f64}\left(1, m\right)\right) \]
    5. Simplified97.7%

      \[\leadsto \left(\color{blue}{\frac{m}{v}} - 1\right) \cdot \left(1 - m\right) \]

    if 1.6000000000000001 < m

    1. Initial program 99.9%

      \[\left(\frac{m \cdot \left(1 - m\right)}{v} - 1\right) \cdot \left(1 - m\right) \]
    2. Step-by-step derivation
      1. *-commutativeN/A

        \[\leadsto \left(1 - m\right) \cdot \color{blue}{\left(\frac{m \cdot \left(1 - m\right)}{v} - 1\right)} \]
      2. *-lowering-*.f64N/A

        \[\leadsto \mathsf{*.f64}\left(\left(1 - m\right), \color{blue}{\left(\frac{m \cdot \left(1 - m\right)}{v} - 1\right)}\right) \]
      3. --lowering--.f64N/A

        \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \left(\color{blue}{\frac{m \cdot \left(1 - m\right)}{v}} - 1\right)\right) \]
      4. sub-negN/A

        \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \left(\frac{m \cdot \left(1 - m\right)}{v} + \color{blue}{\left(\mathsf{neg}\left(1\right)\right)}\right)\right) \]
      5. +-lowering-+.f64N/A

        \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\left(\frac{m \cdot \left(1 - m\right)}{v}\right), \color{blue}{\left(\mathsf{neg}\left(1\right)\right)}\right)\right) \]
      6. associate-/l*N/A

        \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\left(m \cdot \frac{1 - m}{v}\right), \left(\mathsf{neg}\left(\color{blue}{1}\right)\right)\right)\right) \]
      7. *-lowering-*.f64N/A

        \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(m, \left(\frac{1 - m}{v}\right)\right), \left(\mathsf{neg}\left(\color{blue}{1}\right)\right)\right)\right) \]
      8. /-lowering-/.f64N/A

        \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(m, \mathsf{/.f64}\left(\left(1 - m\right), v\right)\right), \left(\mathsf{neg}\left(1\right)\right)\right)\right) \]
      9. --lowering--.f64N/A

        \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(m, \mathsf{/.f64}\left(\mathsf{\_.f64}\left(1, m\right), v\right)\right), \left(\mathsf{neg}\left(1\right)\right)\right)\right) \]
      10. metadata-eval99.9%

        \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(m, \mathsf{/.f64}\left(\mathsf{\_.f64}\left(1, m\right), v\right)\right), -1\right)\right) \]
    3. Simplified99.9%

      \[\leadsto \color{blue}{\left(1 - m\right) \cdot \left(m \cdot \frac{1 - m}{v} + -1\right)} \]
    4. Add Preprocessing
    5. Taylor expanded in m around inf

      \[\leadsto \color{blue}{{m}^{3} \cdot \left(\frac{1}{v} - 2 \cdot \frac{1}{m \cdot v}\right)} \]
    6. Step-by-step derivation
      1. cube-multN/A

        \[\leadsto \left(m \cdot \left(m \cdot m\right)\right) \cdot \left(\color{blue}{\frac{1}{v}} - 2 \cdot \frac{1}{m \cdot v}\right) \]
      2. unpow2N/A

        \[\leadsto \left(m \cdot {m}^{2}\right) \cdot \left(\frac{1}{\color{blue}{v}} - 2 \cdot \frac{1}{m \cdot v}\right) \]
      3. associate-*l*N/A

        \[\leadsto m \cdot \color{blue}{\left({m}^{2} \cdot \left(\frac{1}{v} - 2 \cdot \frac{1}{m \cdot v}\right)\right)} \]
      4. *-lowering-*.f64N/A

        \[\leadsto \mathsf{*.f64}\left(m, \color{blue}{\left({m}^{2} \cdot \left(\frac{1}{v} - 2 \cdot \frac{1}{m \cdot v}\right)\right)}\right) \]
      5. sub-negN/A

        \[\leadsto \mathsf{*.f64}\left(m, \left({m}^{2} \cdot \left(\frac{1}{v} + \color{blue}{\left(\mathsf{neg}\left(2 \cdot \frac{1}{m \cdot v}\right)\right)}\right)\right)\right) \]
      6. associate-*r/N/A

        \[\leadsto \mathsf{*.f64}\left(m, \left({m}^{2} \cdot \left(\frac{1}{v} + \left(\mathsf{neg}\left(\frac{2 \cdot 1}{m \cdot v}\right)\right)\right)\right)\right) \]
      7. metadata-evalN/A

        \[\leadsto \mathsf{*.f64}\left(m, \left({m}^{2} \cdot \left(\frac{1}{v} + \left(\mathsf{neg}\left(\frac{2}{m \cdot v}\right)\right)\right)\right)\right) \]
      8. +-commutativeN/A

        \[\leadsto \mathsf{*.f64}\left(m, \left({m}^{2} \cdot \left(\left(\mathsf{neg}\left(\frac{2}{m \cdot v}\right)\right) + \color{blue}{\frac{1}{v}}\right)\right)\right) \]
      9. distribute-rgt-inN/A

        \[\leadsto \mathsf{*.f64}\left(m, \left(\left(\mathsf{neg}\left(\frac{2}{m \cdot v}\right)\right) \cdot {m}^{2} + \color{blue}{\frac{1}{v} \cdot {m}^{2}}\right)\right) \]
    7. Simplified99.0%

      \[\leadsto \color{blue}{m \cdot \left(\frac{m}{v} \cdot \left(-2 + m\right)\right)} \]
  3. Recombined 2 regimes into one program.
  4. Final simplification98.4%

    \[\leadsto \begin{array}{l} \mathbf{if}\;m \leq 1.6:\\ \;\;\;\;\left(1 - m\right) \cdot \left(-1 + \frac{m}{v}\right)\\ \mathbf{else}:\\ \;\;\;\;m \cdot \left(\frac{m}{v} \cdot \left(m + -2\right)\right)\\ \end{array} \]
  5. Add Preprocessing

Alternative 3: 98.2% accurate, 0.9× speedup?

\[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;m \leq 2.45:\\ \;\;\;\;-1 + \left(m + \frac{m}{v}\right)\\ \mathbf{else}:\\ \;\;\;\;m \cdot \left(\frac{m}{v} \cdot \left(m + -2\right)\right)\\ \end{array} \end{array} \]
(FPCore (m v)
 :precision binary64
 (if (<= m 2.45) (+ -1.0 (+ m (/ m v))) (* m (* (/ m v) (+ m -2.0)))))
double code(double m, double v) {
	double tmp;
	if (m <= 2.45) {
		tmp = -1.0 + (m + (m / v));
	} else {
		tmp = m * ((m / v) * (m + -2.0));
	}
	return tmp;
}
real(8) function code(m, v)
    real(8), intent (in) :: m
    real(8), intent (in) :: v
    real(8) :: tmp
    if (m <= 2.45d0) then
        tmp = (-1.0d0) + (m + (m / v))
    else
        tmp = m * ((m / v) * (m + (-2.0d0)))
    end if
    code = tmp
end function
public static double code(double m, double v) {
	double tmp;
	if (m <= 2.45) {
		tmp = -1.0 + (m + (m / v));
	} else {
		tmp = m * ((m / v) * (m + -2.0));
	}
	return tmp;
}
def code(m, v):
	tmp = 0
	if m <= 2.45:
		tmp = -1.0 + (m + (m / v))
	else:
		tmp = m * ((m / v) * (m + -2.0))
	return tmp
function code(m, v)
	tmp = 0.0
	if (m <= 2.45)
		tmp = Float64(-1.0 + Float64(m + Float64(m / v)));
	else
		tmp = Float64(m * Float64(Float64(m / v) * Float64(m + -2.0)));
	end
	return tmp
end
function tmp_2 = code(m, v)
	tmp = 0.0;
	if (m <= 2.45)
		tmp = -1.0 + (m + (m / v));
	else
		tmp = m * ((m / v) * (m + -2.0));
	end
	tmp_2 = tmp;
end
code[m_, v_] := If[LessEqual[m, 2.45], N[(-1.0 + N[(m + N[(m / v), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(m * N[(N[(m / v), $MachinePrecision] * N[(m + -2.0), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}

\\
\begin{array}{l}
\mathbf{if}\;m \leq 2.45:\\
\;\;\;\;-1 + \left(m + \frac{m}{v}\right)\\

\mathbf{else}:\\
\;\;\;\;m \cdot \left(\frac{m}{v} \cdot \left(m + -2\right)\right)\\


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if m < 2.4500000000000002

    1. Initial program 100.0%

      \[\left(\frac{m \cdot \left(1 - m\right)}{v} - 1\right) \cdot \left(1 - m\right) \]
    2. Step-by-step derivation
      1. *-commutativeN/A

        \[\leadsto \left(1 - m\right) \cdot \color{blue}{\left(\frac{m \cdot \left(1 - m\right)}{v} - 1\right)} \]
      2. *-lowering-*.f64N/A

        \[\leadsto \mathsf{*.f64}\left(\left(1 - m\right), \color{blue}{\left(\frac{m \cdot \left(1 - m\right)}{v} - 1\right)}\right) \]
      3. --lowering--.f64N/A

        \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \left(\color{blue}{\frac{m \cdot \left(1 - m\right)}{v}} - 1\right)\right) \]
      4. sub-negN/A

        \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \left(\frac{m \cdot \left(1 - m\right)}{v} + \color{blue}{\left(\mathsf{neg}\left(1\right)\right)}\right)\right) \]
      5. +-lowering-+.f64N/A

        \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\left(\frac{m \cdot \left(1 - m\right)}{v}\right), \color{blue}{\left(\mathsf{neg}\left(1\right)\right)}\right)\right) \]
      6. associate-/l*N/A

        \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\left(m \cdot \frac{1 - m}{v}\right), \left(\mathsf{neg}\left(\color{blue}{1}\right)\right)\right)\right) \]
      7. *-lowering-*.f64N/A

        \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(m, \left(\frac{1 - m}{v}\right)\right), \left(\mathsf{neg}\left(\color{blue}{1}\right)\right)\right)\right) \]
      8. /-lowering-/.f64N/A

        \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(m, \mathsf{/.f64}\left(\left(1 - m\right), v\right)\right), \left(\mathsf{neg}\left(1\right)\right)\right)\right) \]
      9. --lowering--.f64N/A

        \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(m, \mathsf{/.f64}\left(\mathsf{\_.f64}\left(1, m\right), v\right)\right), \left(\mathsf{neg}\left(1\right)\right)\right)\right) \]
      10. metadata-eval99.8%

        \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(m, \mathsf{/.f64}\left(\mathsf{\_.f64}\left(1, m\right), v\right)\right), -1\right)\right) \]
    3. Simplified99.8%

      \[\leadsto \color{blue}{\left(1 - m\right) \cdot \left(m \cdot \frac{1 - m}{v} + -1\right)} \]
    4. Add Preprocessing
    5. Taylor expanded in m around 0

      \[\leadsto \color{blue}{m \cdot \left(1 + \frac{1}{v}\right) - 1} \]
    6. Step-by-step derivation
      1. sub-negN/A

        \[\leadsto m \cdot \left(1 + \frac{1}{v}\right) + \color{blue}{\left(\mathsf{neg}\left(1\right)\right)} \]
      2. metadata-evalN/A

        \[\leadsto m \cdot \left(1 + \frac{1}{v}\right) + -1 \]
      3. +-commutativeN/A

        \[\leadsto -1 + \color{blue}{m \cdot \left(1 + \frac{1}{v}\right)} \]
      4. +-lowering-+.f64N/A

        \[\leadsto \mathsf{+.f64}\left(-1, \color{blue}{\left(m \cdot \left(1 + \frac{1}{v}\right)\right)}\right) \]
      5. distribute-rgt-inN/A

        \[\leadsto \mathsf{+.f64}\left(-1, \left(1 \cdot m + \color{blue}{\frac{1}{v} \cdot m}\right)\right) \]
      6. *-lft-identityN/A

        \[\leadsto \mathsf{+.f64}\left(-1, \left(m + \color{blue}{\frac{1}{v}} \cdot m\right)\right) \]
      7. associate-*l/N/A

        \[\leadsto \mathsf{+.f64}\left(-1, \left(m + \frac{1 \cdot m}{\color{blue}{v}}\right)\right) \]
      8. *-lft-identityN/A

        \[\leadsto \mathsf{+.f64}\left(-1, \left(m + \frac{m}{v}\right)\right) \]
      9. +-lowering-+.f64N/A

        \[\leadsto \mathsf{+.f64}\left(-1, \mathsf{+.f64}\left(m, \color{blue}{\left(\frac{m}{v}\right)}\right)\right) \]
      10. /-lowering-/.f6497.6%

        \[\leadsto \mathsf{+.f64}\left(-1, \mathsf{+.f64}\left(m, \mathsf{/.f64}\left(m, \color{blue}{v}\right)\right)\right) \]
    7. Simplified97.6%

      \[\leadsto \color{blue}{-1 + \left(m + \frac{m}{v}\right)} \]

    if 2.4500000000000002 < m

    1. Initial program 99.9%

      \[\left(\frac{m \cdot \left(1 - m\right)}{v} - 1\right) \cdot \left(1 - m\right) \]
    2. Step-by-step derivation
      1. *-commutativeN/A

        \[\leadsto \left(1 - m\right) \cdot \color{blue}{\left(\frac{m \cdot \left(1 - m\right)}{v} - 1\right)} \]
      2. *-lowering-*.f64N/A

        \[\leadsto \mathsf{*.f64}\left(\left(1 - m\right), \color{blue}{\left(\frac{m \cdot \left(1 - m\right)}{v} - 1\right)}\right) \]
      3. --lowering--.f64N/A

        \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \left(\color{blue}{\frac{m \cdot \left(1 - m\right)}{v}} - 1\right)\right) \]
      4. sub-negN/A

        \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \left(\frac{m \cdot \left(1 - m\right)}{v} + \color{blue}{\left(\mathsf{neg}\left(1\right)\right)}\right)\right) \]
      5. +-lowering-+.f64N/A

        \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\left(\frac{m \cdot \left(1 - m\right)}{v}\right), \color{blue}{\left(\mathsf{neg}\left(1\right)\right)}\right)\right) \]
      6. associate-/l*N/A

        \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\left(m \cdot \frac{1 - m}{v}\right), \left(\mathsf{neg}\left(\color{blue}{1}\right)\right)\right)\right) \]
      7. *-lowering-*.f64N/A

        \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(m, \left(\frac{1 - m}{v}\right)\right), \left(\mathsf{neg}\left(\color{blue}{1}\right)\right)\right)\right) \]
      8. /-lowering-/.f64N/A

        \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(m, \mathsf{/.f64}\left(\left(1 - m\right), v\right)\right), \left(\mathsf{neg}\left(1\right)\right)\right)\right) \]
      9. --lowering--.f64N/A

        \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(m, \mathsf{/.f64}\left(\mathsf{\_.f64}\left(1, m\right), v\right)\right), \left(\mathsf{neg}\left(1\right)\right)\right)\right) \]
      10. metadata-eval99.9%

        \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(m, \mathsf{/.f64}\left(\mathsf{\_.f64}\left(1, m\right), v\right)\right), -1\right)\right) \]
    3. Simplified99.9%

      \[\leadsto \color{blue}{\left(1 - m\right) \cdot \left(m \cdot \frac{1 - m}{v} + -1\right)} \]
    4. Add Preprocessing
    5. Taylor expanded in m around inf

      \[\leadsto \color{blue}{{m}^{3} \cdot \left(\frac{1}{v} - 2 \cdot \frac{1}{m \cdot v}\right)} \]
    6. Step-by-step derivation
      1. cube-multN/A

        \[\leadsto \left(m \cdot \left(m \cdot m\right)\right) \cdot \left(\color{blue}{\frac{1}{v}} - 2 \cdot \frac{1}{m \cdot v}\right) \]
      2. unpow2N/A

        \[\leadsto \left(m \cdot {m}^{2}\right) \cdot \left(\frac{1}{\color{blue}{v}} - 2 \cdot \frac{1}{m \cdot v}\right) \]
      3. associate-*l*N/A

        \[\leadsto m \cdot \color{blue}{\left({m}^{2} \cdot \left(\frac{1}{v} - 2 \cdot \frac{1}{m \cdot v}\right)\right)} \]
      4. *-lowering-*.f64N/A

        \[\leadsto \mathsf{*.f64}\left(m, \color{blue}{\left({m}^{2} \cdot \left(\frac{1}{v} - 2 \cdot \frac{1}{m \cdot v}\right)\right)}\right) \]
      5. sub-negN/A

        \[\leadsto \mathsf{*.f64}\left(m, \left({m}^{2} \cdot \left(\frac{1}{v} + \color{blue}{\left(\mathsf{neg}\left(2 \cdot \frac{1}{m \cdot v}\right)\right)}\right)\right)\right) \]
      6. associate-*r/N/A

        \[\leadsto \mathsf{*.f64}\left(m, \left({m}^{2} \cdot \left(\frac{1}{v} + \left(\mathsf{neg}\left(\frac{2 \cdot 1}{m \cdot v}\right)\right)\right)\right)\right) \]
      7. metadata-evalN/A

        \[\leadsto \mathsf{*.f64}\left(m, \left({m}^{2} \cdot \left(\frac{1}{v} + \left(\mathsf{neg}\left(\frac{2}{m \cdot v}\right)\right)\right)\right)\right) \]
      8. +-commutativeN/A

        \[\leadsto \mathsf{*.f64}\left(m, \left({m}^{2} \cdot \left(\left(\mathsf{neg}\left(\frac{2}{m \cdot v}\right)\right) + \color{blue}{\frac{1}{v}}\right)\right)\right) \]
      9. distribute-rgt-inN/A

        \[\leadsto \mathsf{*.f64}\left(m, \left(\left(\mathsf{neg}\left(\frac{2}{m \cdot v}\right)\right) \cdot {m}^{2} + \color{blue}{\frac{1}{v} \cdot {m}^{2}}\right)\right) \]
    7. Simplified99.0%

      \[\leadsto \color{blue}{m \cdot \left(\frac{m}{v} \cdot \left(-2 + m\right)\right)} \]
  3. Recombined 2 regimes into one program.
  4. Final simplification98.3%

    \[\leadsto \begin{array}{l} \mathbf{if}\;m \leq 2.45:\\ \;\;\;\;-1 + \left(m + \frac{m}{v}\right)\\ \mathbf{else}:\\ \;\;\;\;m \cdot \left(\frac{m}{v} \cdot \left(m + -2\right)\right)\\ \end{array} \]
  5. Add Preprocessing

Alternative 4: 99.9% accurate, 1.0× speedup?

\[\begin{array}{l} \\ \left(1 - m\right) \cdot \left(\frac{m \cdot \left(1 - m\right)}{v} + -1\right) \end{array} \]
(FPCore (m v) :precision binary64 (* (- 1.0 m) (+ (/ (* m (- 1.0 m)) v) -1.0)))
double code(double m, double v) {
	return (1.0 - m) * (((m * (1.0 - m)) / v) + -1.0);
}
real(8) function code(m, v)
    real(8), intent (in) :: m
    real(8), intent (in) :: v
    code = (1.0d0 - m) * (((m * (1.0d0 - m)) / v) + (-1.0d0))
end function
public static double code(double m, double v) {
	return (1.0 - m) * (((m * (1.0 - m)) / v) + -1.0);
}
def code(m, v):
	return (1.0 - m) * (((m * (1.0 - m)) / v) + -1.0)
function code(m, v)
	return Float64(Float64(1.0 - m) * Float64(Float64(Float64(m * Float64(1.0 - m)) / v) + -1.0))
end
function tmp = code(m, v)
	tmp = (1.0 - m) * (((m * (1.0 - m)) / v) + -1.0);
end
code[m_, v_] := N[(N[(1.0 - m), $MachinePrecision] * N[(N[(N[(m * N[(1.0 - m), $MachinePrecision]), $MachinePrecision] / v), $MachinePrecision] + -1.0), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
\left(1 - m\right) \cdot \left(\frac{m \cdot \left(1 - m\right)}{v} + -1\right)
\end{array}
Derivation
  1. Initial program 99.9%

    \[\left(\frac{m \cdot \left(1 - m\right)}{v} - 1\right) \cdot \left(1 - m\right) \]
  2. Add Preprocessing
  3. Final simplification99.9%

    \[\leadsto \left(1 - m\right) \cdot \left(\frac{m \cdot \left(1 - m\right)}{v} + -1\right) \]
  4. Add Preprocessing

Alternative 5: 99.8% accurate, 1.0× speedup?

\[\begin{array}{l} \\ \left(1 - m\right) \cdot \left(m \cdot \frac{1 - m}{v} + -1\right) \end{array} \]
(FPCore (m v) :precision binary64 (* (- 1.0 m) (+ (* m (/ (- 1.0 m) v)) -1.0)))
double code(double m, double v) {
	return (1.0 - m) * ((m * ((1.0 - m) / v)) + -1.0);
}
real(8) function code(m, v)
    real(8), intent (in) :: m
    real(8), intent (in) :: v
    code = (1.0d0 - m) * ((m * ((1.0d0 - m) / v)) + (-1.0d0))
end function
public static double code(double m, double v) {
	return (1.0 - m) * ((m * ((1.0 - m) / v)) + -1.0);
}
def code(m, v):
	return (1.0 - m) * ((m * ((1.0 - m) / v)) + -1.0)
function code(m, v)
	return Float64(Float64(1.0 - m) * Float64(Float64(m * Float64(Float64(1.0 - m) / v)) + -1.0))
end
function tmp = code(m, v)
	tmp = (1.0 - m) * ((m * ((1.0 - m) / v)) + -1.0);
end
code[m_, v_] := N[(N[(1.0 - m), $MachinePrecision] * N[(N[(m * N[(N[(1.0 - m), $MachinePrecision] / v), $MachinePrecision]), $MachinePrecision] + -1.0), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
\left(1 - m\right) \cdot \left(m \cdot \frac{1 - m}{v} + -1\right)
\end{array}
Derivation
  1. Initial program 99.9%

    \[\left(\frac{m \cdot \left(1 - m\right)}{v} - 1\right) \cdot \left(1 - m\right) \]
  2. Step-by-step derivation
    1. *-commutativeN/A

      \[\leadsto \left(1 - m\right) \cdot \color{blue}{\left(\frac{m \cdot \left(1 - m\right)}{v} - 1\right)} \]
    2. *-lowering-*.f64N/A

      \[\leadsto \mathsf{*.f64}\left(\left(1 - m\right), \color{blue}{\left(\frac{m \cdot \left(1 - m\right)}{v} - 1\right)}\right) \]
    3. --lowering--.f64N/A

      \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \left(\color{blue}{\frac{m \cdot \left(1 - m\right)}{v}} - 1\right)\right) \]
    4. sub-negN/A

      \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \left(\frac{m \cdot \left(1 - m\right)}{v} + \color{blue}{\left(\mathsf{neg}\left(1\right)\right)}\right)\right) \]
    5. +-lowering-+.f64N/A

      \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\left(\frac{m \cdot \left(1 - m\right)}{v}\right), \color{blue}{\left(\mathsf{neg}\left(1\right)\right)}\right)\right) \]
    6. associate-/l*N/A

      \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\left(m \cdot \frac{1 - m}{v}\right), \left(\mathsf{neg}\left(\color{blue}{1}\right)\right)\right)\right) \]
    7. *-lowering-*.f64N/A

      \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(m, \left(\frac{1 - m}{v}\right)\right), \left(\mathsf{neg}\left(\color{blue}{1}\right)\right)\right)\right) \]
    8. /-lowering-/.f64N/A

      \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(m, \mathsf{/.f64}\left(\left(1 - m\right), v\right)\right), \left(\mathsf{neg}\left(1\right)\right)\right)\right) \]
    9. --lowering--.f64N/A

      \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(m, \mathsf{/.f64}\left(\mathsf{\_.f64}\left(1, m\right), v\right)\right), \left(\mathsf{neg}\left(1\right)\right)\right)\right) \]
    10. metadata-eval99.9%

      \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(m, \mathsf{/.f64}\left(\mathsf{\_.f64}\left(1, m\right), v\right)\right), -1\right)\right) \]
  3. Simplified99.9%

    \[\leadsto \color{blue}{\left(1 - m\right) \cdot \left(m \cdot \frac{1 - m}{v} + -1\right)} \]
  4. Add Preprocessing
  5. Add Preprocessing

Alternative 6: 97.7% accurate, 1.1× speedup?

\[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;m \leq 2.65:\\ \;\;\;\;-1 + \left(m + \frac{m}{v}\right)\\ \mathbf{else}:\\ \;\;\;\;m \cdot \left(m \cdot \frac{m}{v}\right)\\ \end{array} \end{array} \]
(FPCore (m v)
 :precision binary64
 (if (<= m 2.65) (+ -1.0 (+ m (/ m v))) (* m (* m (/ m v)))))
double code(double m, double v) {
	double tmp;
	if (m <= 2.65) {
		tmp = -1.0 + (m + (m / v));
	} else {
		tmp = m * (m * (m / v));
	}
	return tmp;
}
real(8) function code(m, v)
    real(8), intent (in) :: m
    real(8), intent (in) :: v
    real(8) :: tmp
    if (m <= 2.65d0) then
        tmp = (-1.0d0) + (m + (m / v))
    else
        tmp = m * (m * (m / v))
    end if
    code = tmp
end function
public static double code(double m, double v) {
	double tmp;
	if (m <= 2.65) {
		tmp = -1.0 + (m + (m / v));
	} else {
		tmp = m * (m * (m / v));
	}
	return tmp;
}
def code(m, v):
	tmp = 0
	if m <= 2.65:
		tmp = -1.0 + (m + (m / v))
	else:
		tmp = m * (m * (m / v))
	return tmp
function code(m, v)
	tmp = 0.0
	if (m <= 2.65)
		tmp = Float64(-1.0 + Float64(m + Float64(m / v)));
	else
		tmp = Float64(m * Float64(m * Float64(m / v)));
	end
	return tmp
end
function tmp_2 = code(m, v)
	tmp = 0.0;
	if (m <= 2.65)
		tmp = -1.0 + (m + (m / v));
	else
		tmp = m * (m * (m / v));
	end
	tmp_2 = tmp;
end
code[m_, v_] := If[LessEqual[m, 2.65], N[(-1.0 + N[(m + N[(m / v), $MachinePrecision]), $MachinePrecision]), $MachinePrecision], N[(m * N[(m * N[(m / v), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}

\\
\begin{array}{l}
\mathbf{if}\;m \leq 2.65:\\
\;\;\;\;-1 + \left(m + \frac{m}{v}\right)\\

\mathbf{else}:\\
\;\;\;\;m \cdot \left(m \cdot \frac{m}{v}\right)\\


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if m < 2.64999999999999991

    1. Initial program 100.0%

      \[\left(\frac{m \cdot \left(1 - m\right)}{v} - 1\right) \cdot \left(1 - m\right) \]
    2. Step-by-step derivation
      1. *-commutativeN/A

        \[\leadsto \left(1 - m\right) \cdot \color{blue}{\left(\frac{m \cdot \left(1 - m\right)}{v} - 1\right)} \]
      2. *-lowering-*.f64N/A

        \[\leadsto \mathsf{*.f64}\left(\left(1 - m\right), \color{blue}{\left(\frac{m \cdot \left(1 - m\right)}{v} - 1\right)}\right) \]
      3. --lowering--.f64N/A

        \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \left(\color{blue}{\frac{m \cdot \left(1 - m\right)}{v}} - 1\right)\right) \]
      4. sub-negN/A

        \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \left(\frac{m \cdot \left(1 - m\right)}{v} + \color{blue}{\left(\mathsf{neg}\left(1\right)\right)}\right)\right) \]
      5. +-lowering-+.f64N/A

        \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\left(\frac{m \cdot \left(1 - m\right)}{v}\right), \color{blue}{\left(\mathsf{neg}\left(1\right)\right)}\right)\right) \]
      6. associate-/l*N/A

        \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\left(m \cdot \frac{1 - m}{v}\right), \left(\mathsf{neg}\left(\color{blue}{1}\right)\right)\right)\right) \]
      7. *-lowering-*.f64N/A

        \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(m, \left(\frac{1 - m}{v}\right)\right), \left(\mathsf{neg}\left(\color{blue}{1}\right)\right)\right)\right) \]
      8. /-lowering-/.f64N/A

        \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(m, \mathsf{/.f64}\left(\left(1 - m\right), v\right)\right), \left(\mathsf{neg}\left(1\right)\right)\right)\right) \]
      9. --lowering--.f64N/A

        \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(m, \mathsf{/.f64}\left(\mathsf{\_.f64}\left(1, m\right), v\right)\right), \left(\mathsf{neg}\left(1\right)\right)\right)\right) \]
      10. metadata-eval99.8%

        \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(m, \mathsf{/.f64}\left(\mathsf{\_.f64}\left(1, m\right), v\right)\right), -1\right)\right) \]
    3. Simplified99.8%

      \[\leadsto \color{blue}{\left(1 - m\right) \cdot \left(m \cdot \frac{1 - m}{v} + -1\right)} \]
    4. Add Preprocessing
    5. Taylor expanded in m around 0

      \[\leadsto \color{blue}{m \cdot \left(1 + \frac{1}{v}\right) - 1} \]
    6. Step-by-step derivation
      1. sub-negN/A

        \[\leadsto m \cdot \left(1 + \frac{1}{v}\right) + \color{blue}{\left(\mathsf{neg}\left(1\right)\right)} \]
      2. metadata-evalN/A

        \[\leadsto m \cdot \left(1 + \frac{1}{v}\right) + -1 \]
      3. +-commutativeN/A

        \[\leadsto -1 + \color{blue}{m \cdot \left(1 + \frac{1}{v}\right)} \]
      4. +-lowering-+.f64N/A

        \[\leadsto \mathsf{+.f64}\left(-1, \color{blue}{\left(m \cdot \left(1 + \frac{1}{v}\right)\right)}\right) \]
      5. distribute-rgt-inN/A

        \[\leadsto \mathsf{+.f64}\left(-1, \left(1 \cdot m + \color{blue}{\frac{1}{v} \cdot m}\right)\right) \]
      6. *-lft-identityN/A

        \[\leadsto \mathsf{+.f64}\left(-1, \left(m + \color{blue}{\frac{1}{v}} \cdot m\right)\right) \]
      7. associate-*l/N/A

        \[\leadsto \mathsf{+.f64}\left(-1, \left(m + \frac{1 \cdot m}{\color{blue}{v}}\right)\right) \]
      8. *-lft-identityN/A

        \[\leadsto \mathsf{+.f64}\left(-1, \left(m + \frac{m}{v}\right)\right) \]
      9. +-lowering-+.f64N/A

        \[\leadsto \mathsf{+.f64}\left(-1, \mathsf{+.f64}\left(m, \color{blue}{\left(\frac{m}{v}\right)}\right)\right) \]
      10. /-lowering-/.f6497.6%

        \[\leadsto \mathsf{+.f64}\left(-1, \mathsf{+.f64}\left(m, \mathsf{/.f64}\left(m, \color{blue}{v}\right)\right)\right) \]
    7. Simplified97.6%

      \[\leadsto \color{blue}{-1 + \left(m + \frac{m}{v}\right)} \]

    if 2.64999999999999991 < m

    1. Initial program 99.9%

      \[\left(\frac{m \cdot \left(1 - m\right)}{v} - 1\right) \cdot \left(1 - m\right) \]
    2. Step-by-step derivation
      1. *-commutativeN/A

        \[\leadsto \left(1 - m\right) \cdot \color{blue}{\left(\frac{m \cdot \left(1 - m\right)}{v} - 1\right)} \]
      2. *-lowering-*.f64N/A

        \[\leadsto \mathsf{*.f64}\left(\left(1 - m\right), \color{blue}{\left(\frac{m \cdot \left(1 - m\right)}{v} - 1\right)}\right) \]
      3. --lowering--.f64N/A

        \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \left(\color{blue}{\frac{m \cdot \left(1 - m\right)}{v}} - 1\right)\right) \]
      4. sub-negN/A

        \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \left(\frac{m \cdot \left(1 - m\right)}{v} + \color{blue}{\left(\mathsf{neg}\left(1\right)\right)}\right)\right) \]
      5. +-lowering-+.f64N/A

        \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\left(\frac{m \cdot \left(1 - m\right)}{v}\right), \color{blue}{\left(\mathsf{neg}\left(1\right)\right)}\right)\right) \]
      6. associate-/l*N/A

        \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\left(m \cdot \frac{1 - m}{v}\right), \left(\mathsf{neg}\left(\color{blue}{1}\right)\right)\right)\right) \]
      7. *-lowering-*.f64N/A

        \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(m, \left(\frac{1 - m}{v}\right)\right), \left(\mathsf{neg}\left(\color{blue}{1}\right)\right)\right)\right) \]
      8. /-lowering-/.f64N/A

        \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(m, \mathsf{/.f64}\left(\left(1 - m\right), v\right)\right), \left(\mathsf{neg}\left(1\right)\right)\right)\right) \]
      9. --lowering--.f64N/A

        \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(m, \mathsf{/.f64}\left(\mathsf{\_.f64}\left(1, m\right), v\right)\right), \left(\mathsf{neg}\left(1\right)\right)\right)\right) \]
      10. metadata-eval99.9%

        \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(m, \mathsf{/.f64}\left(\mathsf{\_.f64}\left(1, m\right), v\right)\right), -1\right)\right) \]
    3. Simplified99.9%

      \[\leadsto \color{blue}{\left(1 - m\right) \cdot \left(m \cdot \frac{1 - m}{v} + -1\right)} \]
    4. Add Preprocessing
    5. Taylor expanded in m around inf

      \[\leadsto \color{blue}{\frac{{m}^{3}}{v}} \]
    6. Step-by-step derivation
      1. cube-multN/A

        \[\leadsto \frac{m \cdot \left(m \cdot m\right)}{v} \]
      2. unpow2N/A

        \[\leadsto \frac{m \cdot {m}^{2}}{v} \]
      3. associate-/l*N/A

        \[\leadsto m \cdot \color{blue}{\frac{{m}^{2}}{v}} \]
      4. *-lowering-*.f64N/A

        \[\leadsto \mathsf{*.f64}\left(m, \color{blue}{\left(\frac{{m}^{2}}{v}\right)}\right) \]
      5. unpow2N/A

        \[\leadsto \mathsf{*.f64}\left(m, \left(\frac{m \cdot m}{v}\right)\right) \]
      6. associate-/l*N/A

        \[\leadsto \mathsf{*.f64}\left(m, \left(m \cdot \color{blue}{\frac{m}{v}}\right)\right) \]
      7. *-lowering-*.f64N/A

        \[\leadsto \mathsf{*.f64}\left(m, \mathsf{*.f64}\left(m, \color{blue}{\left(\frac{m}{v}\right)}\right)\right) \]
      8. /-lowering-/.f6498.0%

        \[\leadsto \mathsf{*.f64}\left(m, \mathsf{*.f64}\left(m, \mathsf{/.f64}\left(m, \color{blue}{v}\right)\right)\right) \]
    7. Simplified98.0%

      \[\leadsto \color{blue}{m \cdot \left(m \cdot \frac{m}{v}\right)} \]
  3. Recombined 2 regimes into one program.
  4. Add Preprocessing

Alternative 7: 97.7% accurate, 1.1× speedup?

\[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;m \leq 2.65:\\ \;\;\;\;-1 + \frac{m}{v}\\ \mathbf{else}:\\ \;\;\;\;m \cdot \left(m \cdot \frac{m}{v}\right)\\ \end{array} \end{array} \]
(FPCore (m v)
 :precision binary64
 (if (<= m 2.65) (+ -1.0 (/ m v)) (* m (* m (/ m v)))))
double code(double m, double v) {
	double tmp;
	if (m <= 2.65) {
		tmp = -1.0 + (m / v);
	} else {
		tmp = m * (m * (m / v));
	}
	return tmp;
}
real(8) function code(m, v)
    real(8), intent (in) :: m
    real(8), intent (in) :: v
    real(8) :: tmp
    if (m <= 2.65d0) then
        tmp = (-1.0d0) + (m / v)
    else
        tmp = m * (m * (m / v))
    end if
    code = tmp
end function
public static double code(double m, double v) {
	double tmp;
	if (m <= 2.65) {
		tmp = -1.0 + (m / v);
	} else {
		tmp = m * (m * (m / v));
	}
	return tmp;
}
def code(m, v):
	tmp = 0
	if m <= 2.65:
		tmp = -1.0 + (m / v)
	else:
		tmp = m * (m * (m / v))
	return tmp
function code(m, v)
	tmp = 0.0
	if (m <= 2.65)
		tmp = Float64(-1.0 + Float64(m / v));
	else
		tmp = Float64(m * Float64(m * Float64(m / v)));
	end
	return tmp
end
function tmp_2 = code(m, v)
	tmp = 0.0;
	if (m <= 2.65)
		tmp = -1.0 + (m / v);
	else
		tmp = m * (m * (m / v));
	end
	tmp_2 = tmp;
end
code[m_, v_] := If[LessEqual[m, 2.65], N[(-1.0 + N[(m / v), $MachinePrecision]), $MachinePrecision], N[(m * N[(m * N[(m / v), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]]
\begin{array}{l}

\\
\begin{array}{l}
\mathbf{if}\;m \leq 2.65:\\
\;\;\;\;-1 + \frac{m}{v}\\

\mathbf{else}:\\
\;\;\;\;m \cdot \left(m \cdot \frac{m}{v}\right)\\


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if m < 2.64999999999999991

    1. Initial program 100.0%

      \[\left(\frac{m \cdot \left(1 - m\right)}{v} - 1\right) \cdot \left(1 - m\right) \]
    2. Step-by-step derivation
      1. *-commutativeN/A

        \[\leadsto \left(1 - m\right) \cdot \color{blue}{\left(\frac{m \cdot \left(1 - m\right)}{v} - 1\right)} \]
      2. *-lowering-*.f64N/A

        \[\leadsto \mathsf{*.f64}\left(\left(1 - m\right), \color{blue}{\left(\frac{m \cdot \left(1 - m\right)}{v} - 1\right)}\right) \]
      3. --lowering--.f64N/A

        \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \left(\color{blue}{\frac{m \cdot \left(1 - m\right)}{v}} - 1\right)\right) \]
      4. sub-negN/A

        \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \left(\frac{m \cdot \left(1 - m\right)}{v} + \color{blue}{\left(\mathsf{neg}\left(1\right)\right)}\right)\right) \]
      5. +-lowering-+.f64N/A

        \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\left(\frac{m \cdot \left(1 - m\right)}{v}\right), \color{blue}{\left(\mathsf{neg}\left(1\right)\right)}\right)\right) \]
      6. associate-/l*N/A

        \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\left(m \cdot \frac{1 - m}{v}\right), \left(\mathsf{neg}\left(\color{blue}{1}\right)\right)\right)\right) \]
      7. *-lowering-*.f64N/A

        \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(m, \left(\frac{1 - m}{v}\right)\right), \left(\mathsf{neg}\left(\color{blue}{1}\right)\right)\right)\right) \]
      8. /-lowering-/.f64N/A

        \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(m, \mathsf{/.f64}\left(\left(1 - m\right), v\right)\right), \left(\mathsf{neg}\left(1\right)\right)\right)\right) \]
      9. --lowering--.f64N/A

        \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(m, \mathsf{/.f64}\left(\mathsf{\_.f64}\left(1, m\right), v\right)\right), \left(\mathsf{neg}\left(1\right)\right)\right)\right) \]
      10. metadata-eval99.8%

        \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(m, \mathsf{/.f64}\left(\mathsf{\_.f64}\left(1, m\right), v\right)\right), -1\right)\right) \]
    3. Simplified99.8%

      \[\leadsto \color{blue}{\left(1 - m\right) \cdot \left(m \cdot \frac{1 - m}{v} + -1\right)} \]
    4. Add Preprocessing
    5. Taylor expanded in m around 0

      \[\leadsto \color{blue}{m \cdot \left(1 + \frac{1}{v}\right) - 1} \]
    6. Step-by-step derivation
      1. sub-negN/A

        \[\leadsto m \cdot \left(1 + \frac{1}{v}\right) + \color{blue}{\left(\mathsf{neg}\left(1\right)\right)} \]
      2. metadata-evalN/A

        \[\leadsto m \cdot \left(1 + \frac{1}{v}\right) + -1 \]
      3. +-commutativeN/A

        \[\leadsto -1 + \color{blue}{m \cdot \left(1 + \frac{1}{v}\right)} \]
      4. +-lowering-+.f64N/A

        \[\leadsto \mathsf{+.f64}\left(-1, \color{blue}{\left(m \cdot \left(1 + \frac{1}{v}\right)\right)}\right) \]
      5. distribute-rgt-inN/A

        \[\leadsto \mathsf{+.f64}\left(-1, \left(1 \cdot m + \color{blue}{\frac{1}{v} \cdot m}\right)\right) \]
      6. *-lft-identityN/A

        \[\leadsto \mathsf{+.f64}\left(-1, \left(m + \color{blue}{\frac{1}{v}} \cdot m\right)\right) \]
      7. associate-*l/N/A

        \[\leadsto \mathsf{+.f64}\left(-1, \left(m + \frac{1 \cdot m}{\color{blue}{v}}\right)\right) \]
      8. *-lft-identityN/A

        \[\leadsto \mathsf{+.f64}\left(-1, \left(m + \frac{m}{v}\right)\right) \]
      9. +-lowering-+.f64N/A

        \[\leadsto \mathsf{+.f64}\left(-1, \mathsf{+.f64}\left(m, \color{blue}{\left(\frac{m}{v}\right)}\right)\right) \]
      10. /-lowering-/.f6497.6%

        \[\leadsto \mathsf{+.f64}\left(-1, \mathsf{+.f64}\left(m, \mathsf{/.f64}\left(m, \color{blue}{v}\right)\right)\right) \]
    7. Simplified97.6%

      \[\leadsto \color{blue}{-1 + \left(m + \frac{m}{v}\right)} \]
    8. Taylor expanded in v around 0

      \[\leadsto \mathsf{+.f64}\left(-1, \color{blue}{\left(\frac{m}{v}\right)}\right) \]
    9. Step-by-step derivation
      1. /-lowering-/.f6497.5%

        \[\leadsto \mathsf{+.f64}\left(-1, \mathsf{/.f64}\left(m, \color{blue}{v}\right)\right) \]
    10. Simplified97.5%

      \[\leadsto -1 + \color{blue}{\frac{m}{v}} \]

    if 2.64999999999999991 < m

    1. Initial program 99.9%

      \[\left(\frac{m \cdot \left(1 - m\right)}{v} - 1\right) \cdot \left(1 - m\right) \]
    2. Step-by-step derivation
      1. *-commutativeN/A

        \[\leadsto \left(1 - m\right) \cdot \color{blue}{\left(\frac{m \cdot \left(1 - m\right)}{v} - 1\right)} \]
      2. *-lowering-*.f64N/A

        \[\leadsto \mathsf{*.f64}\left(\left(1 - m\right), \color{blue}{\left(\frac{m \cdot \left(1 - m\right)}{v} - 1\right)}\right) \]
      3. --lowering--.f64N/A

        \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \left(\color{blue}{\frac{m \cdot \left(1 - m\right)}{v}} - 1\right)\right) \]
      4. sub-negN/A

        \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \left(\frac{m \cdot \left(1 - m\right)}{v} + \color{blue}{\left(\mathsf{neg}\left(1\right)\right)}\right)\right) \]
      5. +-lowering-+.f64N/A

        \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\left(\frac{m \cdot \left(1 - m\right)}{v}\right), \color{blue}{\left(\mathsf{neg}\left(1\right)\right)}\right)\right) \]
      6. associate-/l*N/A

        \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\left(m \cdot \frac{1 - m}{v}\right), \left(\mathsf{neg}\left(\color{blue}{1}\right)\right)\right)\right) \]
      7. *-lowering-*.f64N/A

        \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(m, \left(\frac{1 - m}{v}\right)\right), \left(\mathsf{neg}\left(\color{blue}{1}\right)\right)\right)\right) \]
      8. /-lowering-/.f64N/A

        \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(m, \mathsf{/.f64}\left(\left(1 - m\right), v\right)\right), \left(\mathsf{neg}\left(1\right)\right)\right)\right) \]
      9. --lowering--.f64N/A

        \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(m, \mathsf{/.f64}\left(\mathsf{\_.f64}\left(1, m\right), v\right)\right), \left(\mathsf{neg}\left(1\right)\right)\right)\right) \]
      10. metadata-eval99.9%

        \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(m, \mathsf{/.f64}\left(\mathsf{\_.f64}\left(1, m\right), v\right)\right), -1\right)\right) \]
    3. Simplified99.9%

      \[\leadsto \color{blue}{\left(1 - m\right) \cdot \left(m \cdot \frac{1 - m}{v} + -1\right)} \]
    4. Add Preprocessing
    5. Taylor expanded in m around inf

      \[\leadsto \color{blue}{\frac{{m}^{3}}{v}} \]
    6. Step-by-step derivation
      1. cube-multN/A

        \[\leadsto \frac{m \cdot \left(m \cdot m\right)}{v} \]
      2. unpow2N/A

        \[\leadsto \frac{m \cdot {m}^{2}}{v} \]
      3. associate-/l*N/A

        \[\leadsto m \cdot \color{blue}{\frac{{m}^{2}}{v}} \]
      4. *-lowering-*.f64N/A

        \[\leadsto \mathsf{*.f64}\left(m, \color{blue}{\left(\frac{{m}^{2}}{v}\right)}\right) \]
      5. unpow2N/A

        \[\leadsto \mathsf{*.f64}\left(m, \left(\frac{m \cdot m}{v}\right)\right) \]
      6. associate-/l*N/A

        \[\leadsto \mathsf{*.f64}\left(m, \left(m \cdot \color{blue}{\frac{m}{v}}\right)\right) \]
      7. *-lowering-*.f64N/A

        \[\leadsto \mathsf{*.f64}\left(m, \mathsf{*.f64}\left(m, \color{blue}{\left(\frac{m}{v}\right)}\right)\right) \]
      8. /-lowering-/.f6498.0%

        \[\leadsto \mathsf{*.f64}\left(m, \mathsf{*.f64}\left(m, \mathsf{/.f64}\left(m, \color{blue}{v}\right)\right)\right) \]
    7. Simplified98.0%

      \[\leadsto \color{blue}{m \cdot \left(m \cdot \frac{m}{v}\right)} \]
  3. Recombined 2 regimes into one program.
  4. Add Preprocessing

Alternative 8: 62.6% accurate, 1.6× speedup?

\[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;m \leq 1.1 \cdot 10^{-133}:\\ \;\;\;\;-1\\ \mathbf{else}:\\ \;\;\;\;\frac{m}{v}\\ \end{array} \end{array} \]
(FPCore (m v) :precision binary64 (if (<= m 1.1e-133) -1.0 (/ m v)))
double code(double m, double v) {
	double tmp;
	if (m <= 1.1e-133) {
		tmp = -1.0;
	} else {
		tmp = m / v;
	}
	return tmp;
}
real(8) function code(m, v)
    real(8), intent (in) :: m
    real(8), intent (in) :: v
    real(8) :: tmp
    if (m <= 1.1d-133) then
        tmp = -1.0d0
    else
        tmp = m / v
    end if
    code = tmp
end function
public static double code(double m, double v) {
	double tmp;
	if (m <= 1.1e-133) {
		tmp = -1.0;
	} else {
		tmp = m / v;
	}
	return tmp;
}
def code(m, v):
	tmp = 0
	if m <= 1.1e-133:
		tmp = -1.0
	else:
		tmp = m / v
	return tmp
function code(m, v)
	tmp = 0.0
	if (m <= 1.1e-133)
		tmp = -1.0;
	else
		tmp = Float64(m / v);
	end
	return tmp
end
function tmp_2 = code(m, v)
	tmp = 0.0;
	if (m <= 1.1e-133)
		tmp = -1.0;
	else
		tmp = m / v;
	end
	tmp_2 = tmp;
end
code[m_, v_] := If[LessEqual[m, 1.1e-133], -1.0, N[(m / v), $MachinePrecision]]
\begin{array}{l}

\\
\begin{array}{l}
\mathbf{if}\;m \leq 1.1 \cdot 10^{-133}:\\
\;\;\;\;-1\\

\mathbf{else}:\\
\;\;\;\;\frac{m}{v}\\


\end{array}
\end{array}
Derivation
  1. Split input into 2 regimes
  2. if m < 1.1e-133

    1. Initial program 100.0%

      \[\left(\frac{m \cdot \left(1 - m\right)}{v} - 1\right) \cdot \left(1 - m\right) \]
    2. Step-by-step derivation
      1. *-commutativeN/A

        \[\leadsto \left(1 - m\right) \cdot \color{blue}{\left(\frac{m \cdot \left(1 - m\right)}{v} - 1\right)} \]
      2. *-lowering-*.f64N/A

        \[\leadsto \mathsf{*.f64}\left(\left(1 - m\right), \color{blue}{\left(\frac{m \cdot \left(1 - m\right)}{v} - 1\right)}\right) \]
      3. --lowering--.f64N/A

        \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \left(\color{blue}{\frac{m \cdot \left(1 - m\right)}{v}} - 1\right)\right) \]
      4. sub-negN/A

        \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \left(\frac{m \cdot \left(1 - m\right)}{v} + \color{blue}{\left(\mathsf{neg}\left(1\right)\right)}\right)\right) \]
      5. +-lowering-+.f64N/A

        \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\left(\frac{m \cdot \left(1 - m\right)}{v}\right), \color{blue}{\left(\mathsf{neg}\left(1\right)\right)}\right)\right) \]
      6. associate-/l*N/A

        \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\left(m \cdot \frac{1 - m}{v}\right), \left(\mathsf{neg}\left(\color{blue}{1}\right)\right)\right)\right) \]
      7. *-lowering-*.f64N/A

        \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(m, \left(\frac{1 - m}{v}\right)\right), \left(\mathsf{neg}\left(\color{blue}{1}\right)\right)\right)\right) \]
      8. /-lowering-/.f64N/A

        \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(m, \mathsf{/.f64}\left(\left(1 - m\right), v\right)\right), \left(\mathsf{neg}\left(1\right)\right)\right)\right) \]
      9. --lowering--.f64N/A

        \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(m, \mathsf{/.f64}\left(\mathsf{\_.f64}\left(1, m\right), v\right)\right), \left(\mathsf{neg}\left(1\right)\right)\right)\right) \]
      10. metadata-eval99.9%

        \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(m, \mathsf{/.f64}\left(\mathsf{\_.f64}\left(1, m\right), v\right)\right), -1\right)\right) \]
    3. Simplified99.9%

      \[\leadsto \color{blue}{\left(1 - m\right) \cdot \left(m \cdot \frac{1 - m}{v} + -1\right)} \]
    4. Add Preprocessing
    5. Taylor expanded in m around 0

      \[\leadsto \color{blue}{-1} \]
    6. Step-by-step derivation
      1. Simplified73.1%

        \[\leadsto \color{blue}{-1} \]

      if 1.1e-133 < m

      1. Initial program 99.9%

        \[\left(\frac{m \cdot \left(1 - m\right)}{v} - 1\right) \cdot \left(1 - m\right) \]
      2. Add Preprocessing
      3. Taylor expanded in m around inf

        \[\leadsto \mathsf{*.f64}\left(\color{blue}{\left({m}^{2} \cdot \left(\frac{1}{m \cdot v} - \frac{1}{v}\right)\right)}, \mathsf{\_.f64}\left(1, m\right)\right) \]
      4. Step-by-step derivation
        1. distribute-lft-out--N/A

          \[\leadsto \mathsf{*.f64}\left(\left({m}^{2} \cdot \frac{1}{m \cdot v} - {m}^{2} \cdot \frac{1}{v}\right), \mathsf{\_.f64}\left(\color{blue}{1}, m\right)\right) \]
        2. unpow2N/A

          \[\leadsto \mathsf{*.f64}\left(\left(\left(m \cdot m\right) \cdot \frac{1}{m \cdot v} - {m}^{2} \cdot \frac{1}{v}\right), \mathsf{\_.f64}\left(1, m\right)\right) \]
        3. associate-*l*N/A

          \[\leadsto \mathsf{*.f64}\left(\left(m \cdot \left(m \cdot \frac{1}{m \cdot v}\right) - {m}^{2} \cdot \frac{1}{v}\right), \mathsf{\_.f64}\left(1, m\right)\right) \]
        4. associate-/r*N/A

          \[\leadsto \mathsf{*.f64}\left(\left(m \cdot \left(m \cdot \frac{\frac{1}{m}}{v}\right) - {m}^{2} \cdot \frac{1}{v}\right), \mathsf{\_.f64}\left(1, m\right)\right) \]
        5. associate-*r/N/A

          \[\leadsto \mathsf{*.f64}\left(\left(m \cdot \frac{m \cdot \frac{1}{m}}{v} - {m}^{2} \cdot \frac{1}{v}\right), \mathsf{\_.f64}\left(1, m\right)\right) \]
        6. rgt-mult-inverseN/A

          \[\leadsto \mathsf{*.f64}\left(\left(m \cdot \frac{1}{v} - {m}^{2} \cdot \frac{1}{v}\right), \mathsf{\_.f64}\left(1, m\right)\right) \]
        7. unpow2N/A

          \[\leadsto \mathsf{*.f64}\left(\left(m \cdot \frac{1}{v} - \left(m \cdot m\right) \cdot \frac{1}{v}\right), \mathsf{\_.f64}\left(1, m\right)\right) \]
        8. associate-*r*N/A

          \[\leadsto \mathsf{*.f64}\left(\left(m \cdot \frac{1}{v} - m \cdot \left(m \cdot \frac{1}{v}\right)\right), \mathsf{\_.f64}\left(1, m\right)\right) \]
        9. associate-*r/N/A

          \[\leadsto \mathsf{*.f64}\left(\left(m \cdot \frac{1}{v} - m \cdot \frac{m \cdot 1}{v}\right), \mathsf{\_.f64}\left(1, m\right)\right) \]
        10. *-rgt-identityN/A

          \[\leadsto \mathsf{*.f64}\left(\left(m \cdot \frac{1}{v} - m \cdot \frac{m}{v}\right), \mathsf{\_.f64}\left(1, m\right)\right) \]
        11. distribute-lft-out--N/A

          \[\leadsto \mathsf{*.f64}\left(\left(m \cdot \left(\frac{1}{v} - \frac{m}{v}\right)\right), \mathsf{\_.f64}\left(\color{blue}{1}, m\right)\right) \]
        12. div-subN/A

          \[\leadsto \mathsf{*.f64}\left(\left(m \cdot \frac{1 - m}{v}\right), \mathsf{\_.f64}\left(1, m\right)\right) \]
        13. associate-/l*N/A

          \[\leadsto \mathsf{*.f64}\left(\left(\frac{m \cdot \left(1 - m\right)}{v}\right), \mathsf{\_.f64}\left(\color{blue}{1}, m\right)\right) \]
        14. /-lowering-/.f64N/A

          \[\leadsto \mathsf{*.f64}\left(\mathsf{/.f64}\left(\left(m \cdot \left(1 - m\right)\right), v\right), \mathsf{\_.f64}\left(\color{blue}{1}, m\right)\right) \]
        15. *-lowering-*.f64N/A

          \[\leadsto \mathsf{*.f64}\left(\mathsf{/.f64}\left(\mathsf{*.f64}\left(m, \left(1 - m\right)\right), v\right), \mathsf{\_.f64}\left(1, m\right)\right) \]
        16. --lowering--.f6492.3%

          \[\leadsto \mathsf{*.f64}\left(\mathsf{/.f64}\left(\mathsf{*.f64}\left(m, \mathsf{\_.f64}\left(1, m\right)\right), v\right), \mathsf{\_.f64}\left(1, m\right)\right) \]
      5. Simplified92.3%

        \[\leadsto \color{blue}{\frac{m \cdot \left(1 - m\right)}{v}} \cdot \left(1 - m\right) \]
      6. Taylor expanded in m around 0

        \[\leadsto \color{blue}{\frac{m}{v}} \]
      7. Step-by-step derivation
        1. /-lowering-/.f6459.1%

          \[\leadsto \mathsf{/.f64}\left(m, \color{blue}{v}\right) \]
      8. Simplified59.1%

        \[\leadsto \color{blue}{\frac{m}{v}} \]
    7. Recombined 2 regimes into one program.
    8. Add Preprocessing

    Alternative 9: 27.6% accurate, 2.2× speedup?

    \[\begin{array}{l} \\ \begin{array}{l} \mathbf{if}\;m \leq 1.32 \cdot 10^{-16}:\\ \;\;\;\;-1\\ \mathbf{else}:\\ \;\;\;\;m\\ \end{array} \end{array} \]
    (FPCore (m v) :precision binary64 (if (<= m 1.32e-16) -1.0 m))
    double code(double m, double v) {
    	double tmp;
    	if (m <= 1.32e-16) {
    		tmp = -1.0;
    	} else {
    		tmp = m;
    	}
    	return tmp;
    }
    
    real(8) function code(m, v)
        real(8), intent (in) :: m
        real(8), intent (in) :: v
        real(8) :: tmp
        if (m <= 1.32d-16) then
            tmp = -1.0d0
        else
            tmp = m
        end if
        code = tmp
    end function
    
    public static double code(double m, double v) {
    	double tmp;
    	if (m <= 1.32e-16) {
    		tmp = -1.0;
    	} else {
    		tmp = m;
    	}
    	return tmp;
    }
    
    def code(m, v):
    	tmp = 0
    	if m <= 1.32e-16:
    		tmp = -1.0
    	else:
    		tmp = m
    	return tmp
    
    function code(m, v)
    	tmp = 0.0
    	if (m <= 1.32e-16)
    		tmp = -1.0;
    	else
    		tmp = m;
    	end
    	return tmp
    end
    
    function tmp_2 = code(m, v)
    	tmp = 0.0;
    	if (m <= 1.32e-16)
    		tmp = -1.0;
    	else
    		tmp = m;
    	end
    	tmp_2 = tmp;
    end
    
    code[m_, v_] := If[LessEqual[m, 1.32e-16], -1.0, m]
    
    \begin{array}{l}
    
    \\
    \begin{array}{l}
    \mathbf{if}\;m \leq 1.32 \cdot 10^{-16}:\\
    \;\;\;\;-1\\
    
    \mathbf{else}:\\
    \;\;\;\;m\\
    
    
    \end{array}
    \end{array}
    
    Derivation
    1. Split input into 2 regimes
    2. if m < 1.32e-16

      1. Initial program 100.0%

        \[\left(\frac{m \cdot \left(1 - m\right)}{v} - 1\right) \cdot \left(1 - m\right) \]
      2. Step-by-step derivation
        1. *-commutativeN/A

          \[\leadsto \left(1 - m\right) \cdot \color{blue}{\left(\frac{m \cdot \left(1 - m\right)}{v} - 1\right)} \]
        2. *-lowering-*.f64N/A

          \[\leadsto \mathsf{*.f64}\left(\left(1 - m\right), \color{blue}{\left(\frac{m \cdot \left(1 - m\right)}{v} - 1\right)}\right) \]
        3. --lowering--.f64N/A

          \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \left(\color{blue}{\frac{m \cdot \left(1 - m\right)}{v}} - 1\right)\right) \]
        4. sub-negN/A

          \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \left(\frac{m \cdot \left(1 - m\right)}{v} + \color{blue}{\left(\mathsf{neg}\left(1\right)\right)}\right)\right) \]
        5. +-lowering-+.f64N/A

          \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\left(\frac{m \cdot \left(1 - m\right)}{v}\right), \color{blue}{\left(\mathsf{neg}\left(1\right)\right)}\right)\right) \]
        6. associate-/l*N/A

          \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\left(m \cdot \frac{1 - m}{v}\right), \left(\mathsf{neg}\left(\color{blue}{1}\right)\right)\right)\right) \]
        7. *-lowering-*.f64N/A

          \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(m, \left(\frac{1 - m}{v}\right)\right), \left(\mathsf{neg}\left(\color{blue}{1}\right)\right)\right)\right) \]
        8. /-lowering-/.f64N/A

          \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(m, \mathsf{/.f64}\left(\left(1 - m\right), v\right)\right), \left(\mathsf{neg}\left(1\right)\right)\right)\right) \]
        9. --lowering--.f64N/A

          \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(m, \mathsf{/.f64}\left(\mathsf{\_.f64}\left(1, m\right), v\right)\right), \left(\mathsf{neg}\left(1\right)\right)\right)\right) \]
        10. metadata-eval99.8%

          \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(m, \mathsf{/.f64}\left(\mathsf{\_.f64}\left(1, m\right), v\right)\right), -1\right)\right) \]
      3. Simplified99.8%

        \[\leadsto \color{blue}{\left(1 - m\right) \cdot \left(m \cdot \frac{1 - m}{v} + -1\right)} \]
      4. Add Preprocessing
      5. Taylor expanded in m around 0

        \[\leadsto \color{blue}{-1} \]
      6. Step-by-step derivation
        1. Simplified52.1%

          \[\leadsto \color{blue}{-1} \]

        if 1.32e-16 < m

        1. Initial program 99.9%

          \[\left(\frac{m \cdot \left(1 - m\right)}{v} - 1\right) \cdot \left(1 - m\right) \]
        2. Step-by-step derivation
          1. *-commutativeN/A

            \[\leadsto \left(1 - m\right) \cdot \color{blue}{\left(\frac{m \cdot \left(1 - m\right)}{v} - 1\right)} \]
          2. *-lowering-*.f64N/A

            \[\leadsto \mathsf{*.f64}\left(\left(1 - m\right), \color{blue}{\left(\frac{m \cdot \left(1 - m\right)}{v} - 1\right)}\right) \]
          3. --lowering--.f64N/A

            \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \left(\color{blue}{\frac{m \cdot \left(1 - m\right)}{v}} - 1\right)\right) \]
          4. sub-negN/A

            \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \left(\frac{m \cdot \left(1 - m\right)}{v} + \color{blue}{\left(\mathsf{neg}\left(1\right)\right)}\right)\right) \]
          5. +-lowering-+.f64N/A

            \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\left(\frac{m \cdot \left(1 - m\right)}{v}\right), \color{blue}{\left(\mathsf{neg}\left(1\right)\right)}\right)\right) \]
          6. associate-/l*N/A

            \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\left(m \cdot \frac{1 - m}{v}\right), \left(\mathsf{neg}\left(\color{blue}{1}\right)\right)\right)\right) \]
          7. *-lowering-*.f64N/A

            \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(m, \left(\frac{1 - m}{v}\right)\right), \left(\mathsf{neg}\left(\color{blue}{1}\right)\right)\right)\right) \]
          8. /-lowering-/.f64N/A

            \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(m, \mathsf{/.f64}\left(\left(1 - m\right), v\right)\right), \left(\mathsf{neg}\left(1\right)\right)\right)\right) \]
          9. --lowering--.f64N/A

            \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(m, \mathsf{/.f64}\left(\mathsf{\_.f64}\left(1, m\right), v\right)\right), \left(\mathsf{neg}\left(1\right)\right)\right)\right) \]
          10. metadata-eval99.9%

            \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(m, \mathsf{/.f64}\left(\mathsf{\_.f64}\left(1, m\right), v\right)\right), -1\right)\right) \]
        3. Simplified99.9%

          \[\leadsto \color{blue}{\left(1 - m\right) \cdot \left(m \cdot \frac{1 - m}{v} + -1\right)} \]
        4. Add Preprocessing
        5. Taylor expanded in v around inf

          \[\leadsto \color{blue}{-1 \cdot \left(1 - m\right)} \]
        6. Step-by-step derivation
          1. mul-1-negN/A

            \[\leadsto \mathsf{neg}\left(\left(1 - m\right)\right) \]
          2. neg-sub0N/A

            \[\leadsto 0 - \color{blue}{\left(1 - m\right)} \]
          3. associate--r-N/A

            \[\leadsto \left(0 - 1\right) + \color{blue}{m} \]
          4. metadata-evalN/A

            \[\leadsto -1 + m \]
          5. +-lowering-+.f645.1%

            \[\leadsto \mathsf{+.f64}\left(-1, \color{blue}{m}\right) \]
        7. Simplified5.1%

          \[\leadsto \color{blue}{-1 + m} \]
        8. Taylor expanded in m around inf

          \[\leadsto \color{blue}{m} \]
        9. Step-by-step derivation
          1. Simplified5.4%

            \[\leadsto \color{blue}{m} \]
        10. Recombined 2 regimes into one program.
        11. Add Preprocessing

        Alternative 10: 76.4% accurate, 2.6× speedup?

        \[\begin{array}{l} \\ -1 + \frac{m}{v} \end{array} \]
        (FPCore (m v) :precision binary64 (+ -1.0 (/ m v)))
        double code(double m, double v) {
        	return -1.0 + (m / v);
        }
        
        real(8) function code(m, v)
            real(8), intent (in) :: m
            real(8), intent (in) :: v
            code = (-1.0d0) + (m / v)
        end function
        
        public static double code(double m, double v) {
        	return -1.0 + (m / v);
        }
        
        def code(m, v):
        	return -1.0 + (m / v)
        
        function code(m, v)
        	return Float64(-1.0 + Float64(m / v))
        end
        
        function tmp = code(m, v)
        	tmp = -1.0 + (m / v);
        end
        
        code[m_, v_] := N[(-1.0 + N[(m / v), $MachinePrecision]), $MachinePrecision]
        
        \begin{array}{l}
        
        \\
        -1 + \frac{m}{v}
        \end{array}
        
        Derivation
        1. Initial program 99.9%

          \[\left(\frac{m \cdot \left(1 - m\right)}{v} - 1\right) \cdot \left(1 - m\right) \]
        2. Step-by-step derivation
          1. *-commutativeN/A

            \[\leadsto \left(1 - m\right) \cdot \color{blue}{\left(\frac{m \cdot \left(1 - m\right)}{v} - 1\right)} \]
          2. *-lowering-*.f64N/A

            \[\leadsto \mathsf{*.f64}\left(\left(1 - m\right), \color{blue}{\left(\frac{m \cdot \left(1 - m\right)}{v} - 1\right)}\right) \]
          3. --lowering--.f64N/A

            \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \left(\color{blue}{\frac{m \cdot \left(1 - m\right)}{v}} - 1\right)\right) \]
          4. sub-negN/A

            \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \left(\frac{m \cdot \left(1 - m\right)}{v} + \color{blue}{\left(\mathsf{neg}\left(1\right)\right)}\right)\right) \]
          5. +-lowering-+.f64N/A

            \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\left(\frac{m \cdot \left(1 - m\right)}{v}\right), \color{blue}{\left(\mathsf{neg}\left(1\right)\right)}\right)\right) \]
          6. associate-/l*N/A

            \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\left(m \cdot \frac{1 - m}{v}\right), \left(\mathsf{neg}\left(\color{blue}{1}\right)\right)\right)\right) \]
          7. *-lowering-*.f64N/A

            \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(m, \left(\frac{1 - m}{v}\right)\right), \left(\mathsf{neg}\left(\color{blue}{1}\right)\right)\right)\right) \]
          8. /-lowering-/.f64N/A

            \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(m, \mathsf{/.f64}\left(\left(1 - m\right), v\right)\right), \left(\mathsf{neg}\left(1\right)\right)\right)\right) \]
          9. --lowering--.f64N/A

            \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(m, \mathsf{/.f64}\left(\mathsf{\_.f64}\left(1, m\right), v\right)\right), \left(\mathsf{neg}\left(1\right)\right)\right)\right) \]
          10. metadata-eval99.9%

            \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(m, \mathsf{/.f64}\left(\mathsf{\_.f64}\left(1, m\right), v\right)\right), -1\right)\right) \]
        3. Simplified99.9%

          \[\leadsto \color{blue}{\left(1 - m\right) \cdot \left(m \cdot \frac{1 - m}{v} + -1\right)} \]
        4. Add Preprocessing
        5. Taylor expanded in m around 0

          \[\leadsto \color{blue}{m \cdot \left(1 + \frac{1}{v}\right) - 1} \]
        6. Step-by-step derivation
          1. sub-negN/A

            \[\leadsto m \cdot \left(1 + \frac{1}{v}\right) + \color{blue}{\left(\mathsf{neg}\left(1\right)\right)} \]
          2. metadata-evalN/A

            \[\leadsto m \cdot \left(1 + \frac{1}{v}\right) + -1 \]
          3. +-commutativeN/A

            \[\leadsto -1 + \color{blue}{m \cdot \left(1 + \frac{1}{v}\right)} \]
          4. +-lowering-+.f64N/A

            \[\leadsto \mathsf{+.f64}\left(-1, \color{blue}{\left(m \cdot \left(1 + \frac{1}{v}\right)\right)}\right) \]
          5. distribute-rgt-inN/A

            \[\leadsto \mathsf{+.f64}\left(-1, \left(1 \cdot m + \color{blue}{\frac{1}{v} \cdot m}\right)\right) \]
          6. *-lft-identityN/A

            \[\leadsto \mathsf{+.f64}\left(-1, \left(m + \color{blue}{\frac{1}{v}} \cdot m\right)\right) \]
          7. associate-*l/N/A

            \[\leadsto \mathsf{+.f64}\left(-1, \left(m + \frac{1 \cdot m}{\color{blue}{v}}\right)\right) \]
          8. *-lft-identityN/A

            \[\leadsto \mathsf{+.f64}\left(-1, \left(m + \frac{m}{v}\right)\right) \]
          9. +-lowering-+.f64N/A

            \[\leadsto \mathsf{+.f64}\left(-1, \mathsf{+.f64}\left(m, \color{blue}{\left(\frac{m}{v}\right)}\right)\right) \]
          10. /-lowering-/.f6475.3%

            \[\leadsto \mathsf{+.f64}\left(-1, \mathsf{+.f64}\left(m, \mathsf{/.f64}\left(m, \color{blue}{v}\right)\right)\right) \]
        7. Simplified75.3%

          \[\leadsto \color{blue}{-1 + \left(m + \frac{m}{v}\right)} \]
        8. Taylor expanded in v around 0

          \[\leadsto \mathsf{+.f64}\left(-1, \color{blue}{\left(\frac{m}{v}\right)}\right) \]
        9. Step-by-step derivation
          1. /-lowering-/.f6475.3%

            \[\leadsto \mathsf{+.f64}\left(-1, \mathsf{/.f64}\left(m, \color{blue}{v}\right)\right) \]
        10. Simplified75.3%

          \[\leadsto -1 + \color{blue}{\frac{m}{v}} \]
        11. Add Preprocessing

        Alternative 11: 27.5% accurate, 4.3× speedup?

        \[\begin{array}{l} \\ m + -1 \end{array} \]
        (FPCore (m v) :precision binary64 (+ m -1.0))
        double code(double m, double v) {
        	return m + -1.0;
        }
        
        real(8) function code(m, v)
            real(8), intent (in) :: m
            real(8), intent (in) :: v
            code = m + (-1.0d0)
        end function
        
        public static double code(double m, double v) {
        	return m + -1.0;
        }
        
        def code(m, v):
        	return m + -1.0
        
        function code(m, v)
        	return Float64(m + -1.0)
        end
        
        function tmp = code(m, v)
        	tmp = m + -1.0;
        end
        
        code[m_, v_] := N[(m + -1.0), $MachinePrecision]
        
        \begin{array}{l}
        
        \\
        m + -1
        \end{array}
        
        Derivation
        1. Initial program 99.9%

          \[\left(\frac{m \cdot \left(1 - m\right)}{v} - 1\right) \cdot \left(1 - m\right) \]
        2. Step-by-step derivation
          1. *-commutativeN/A

            \[\leadsto \left(1 - m\right) \cdot \color{blue}{\left(\frac{m \cdot \left(1 - m\right)}{v} - 1\right)} \]
          2. *-lowering-*.f64N/A

            \[\leadsto \mathsf{*.f64}\left(\left(1 - m\right), \color{blue}{\left(\frac{m \cdot \left(1 - m\right)}{v} - 1\right)}\right) \]
          3. --lowering--.f64N/A

            \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \left(\color{blue}{\frac{m \cdot \left(1 - m\right)}{v}} - 1\right)\right) \]
          4. sub-negN/A

            \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \left(\frac{m \cdot \left(1 - m\right)}{v} + \color{blue}{\left(\mathsf{neg}\left(1\right)\right)}\right)\right) \]
          5. +-lowering-+.f64N/A

            \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\left(\frac{m \cdot \left(1 - m\right)}{v}\right), \color{blue}{\left(\mathsf{neg}\left(1\right)\right)}\right)\right) \]
          6. associate-/l*N/A

            \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\left(m \cdot \frac{1 - m}{v}\right), \left(\mathsf{neg}\left(\color{blue}{1}\right)\right)\right)\right) \]
          7. *-lowering-*.f64N/A

            \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(m, \left(\frac{1 - m}{v}\right)\right), \left(\mathsf{neg}\left(\color{blue}{1}\right)\right)\right)\right) \]
          8. /-lowering-/.f64N/A

            \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(m, \mathsf{/.f64}\left(\left(1 - m\right), v\right)\right), \left(\mathsf{neg}\left(1\right)\right)\right)\right) \]
          9. --lowering--.f64N/A

            \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(m, \mathsf{/.f64}\left(\mathsf{\_.f64}\left(1, m\right), v\right)\right), \left(\mathsf{neg}\left(1\right)\right)\right)\right) \]
          10. metadata-eval99.9%

            \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(m, \mathsf{/.f64}\left(\mathsf{\_.f64}\left(1, m\right), v\right)\right), -1\right)\right) \]
        3. Simplified99.9%

          \[\leadsto \color{blue}{\left(1 - m\right) \cdot \left(m \cdot \frac{1 - m}{v} + -1\right)} \]
        4. Add Preprocessing
        5. Taylor expanded in v around inf

          \[\leadsto \color{blue}{-1 \cdot \left(1 - m\right)} \]
        6. Step-by-step derivation
          1. mul-1-negN/A

            \[\leadsto \mathsf{neg}\left(\left(1 - m\right)\right) \]
          2. neg-sub0N/A

            \[\leadsto 0 - \color{blue}{\left(1 - m\right)} \]
          3. associate--r-N/A

            \[\leadsto \left(0 - 1\right) + \color{blue}{m} \]
          4. metadata-evalN/A

            \[\leadsto -1 + m \]
          5. +-lowering-+.f6426.8%

            \[\leadsto \mathsf{+.f64}\left(-1, \color{blue}{m}\right) \]
        7. Simplified26.8%

          \[\leadsto \color{blue}{-1 + m} \]
        8. Final simplification26.8%

          \[\leadsto m + -1 \]
        9. Add Preprocessing

        Alternative 12: 25.1% accurate, 13.0× speedup?

        \[\begin{array}{l} \\ -1 \end{array} \]
        (FPCore (m v) :precision binary64 -1.0)
        double code(double m, double v) {
        	return -1.0;
        }
        
        real(8) function code(m, v)
            real(8), intent (in) :: m
            real(8), intent (in) :: v
            code = -1.0d0
        end function
        
        public static double code(double m, double v) {
        	return -1.0;
        }
        
        def code(m, v):
        	return -1.0
        
        function code(m, v)
        	return -1.0
        end
        
        function tmp = code(m, v)
        	tmp = -1.0;
        end
        
        code[m_, v_] := -1.0
        
        \begin{array}{l}
        
        \\
        -1
        \end{array}
        
        Derivation
        1. Initial program 99.9%

          \[\left(\frac{m \cdot \left(1 - m\right)}{v} - 1\right) \cdot \left(1 - m\right) \]
        2. Step-by-step derivation
          1. *-commutativeN/A

            \[\leadsto \left(1 - m\right) \cdot \color{blue}{\left(\frac{m \cdot \left(1 - m\right)}{v} - 1\right)} \]
          2. *-lowering-*.f64N/A

            \[\leadsto \mathsf{*.f64}\left(\left(1 - m\right), \color{blue}{\left(\frac{m \cdot \left(1 - m\right)}{v} - 1\right)}\right) \]
          3. --lowering--.f64N/A

            \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \left(\color{blue}{\frac{m \cdot \left(1 - m\right)}{v}} - 1\right)\right) \]
          4. sub-negN/A

            \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \left(\frac{m \cdot \left(1 - m\right)}{v} + \color{blue}{\left(\mathsf{neg}\left(1\right)\right)}\right)\right) \]
          5. +-lowering-+.f64N/A

            \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\left(\frac{m \cdot \left(1 - m\right)}{v}\right), \color{blue}{\left(\mathsf{neg}\left(1\right)\right)}\right)\right) \]
          6. associate-/l*N/A

            \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\left(m \cdot \frac{1 - m}{v}\right), \left(\mathsf{neg}\left(\color{blue}{1}\right)\right)\right)\right) \]
          7. *-lowering-*.f64N/A

            \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(m, \left(\frac{1 - m}{v}\right)\right), \left(\mathsf{neg}\left(\color{blue}{1}\right)\right)\right)\right) \]
          8. /-lowering-/.f64N/A

            \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(m, \mathsf{/.f64}\left(\left(1 - m\right), v\right)\right), \left(\mathsf{neg}\left(1\right)\right)\right)\right) \]
          9. --lowering--.f64N/A

            \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(m, \mathsf{/.f64}\left(\mathsf{\_.f64}\left(1, m\right), v\right)\right), \left(\mathsf{neg}\left(1\right)\right)\right)\right) \]
          10. metadata-eval99.9%

            \[\leadsto \mathsf{*.f64}\left(\mathsf{\_.f64}\left(1, m\right), \mathsf{+.f64}\left(\mathsf{*.f64}\left(m, \mathsf{/.f64}\left(\mathsf{\_.f64}\left(1, m\right), v\right)\right), -1\right)\right) \]
        3. Simplified99.9%

          \[\leadsto \color{blue}{\left(1 - m\right) \cdot \left(m \cdot \frac{1 - m}{v} + -1\right)} \]
        4. Add Preprocessing
        5. Taylor expanded in m around 0

          \[\leadsto \color{blue}{-1} \]
        6. Step-by-step derivation
          1. Simplified24.4%

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

          Reproduce

          ?
          herbie shell --seed 2024191 
          (FPCore (m v)
            :name "b parameter of renormalized beta distribution"
            :precision binary64
            :pre (and (and (< 0.0 m) (< 0.0 v)) (< v 0.25))
            (* (- (/ (* m (- 1.0 m)) v) 1.0) (- 1.0 m)))