Trigonometry A

Percentage Accurate: 99.8% → 99.8%
Time: 7.0s
Alternatives: 12
Speedup: 1.0×

Specification

?
\[0 \leq e \land e \leq 1\]
\[\begin{array}{l} \\ \frac{e \cdot \sin v}{1 + e \cdot \cos v} \end{array} \]
(FPCore (e v) :precision binary64 (/ (* e (sin v)) (+ 1.0 (* e (cos v)))))
double code(double e, double v) {
	return (e * sin(v)) / (1.0 + (e * cos(v)));
}
real(8) function code(e, v)
    real(8), intent (in) :: e
    real(8), intent (in) :: v
    code = (e * sin(v)) / (1.0d0 + (e * cos(v)))
end function
public static double code(double e, double v) {
	return (e * Math.sin(v)) / (1.0 + (e * Math.cos(v)));
}
def code(e, v):
	return (e * math.sin(v)) / (1.0 + (e * math.cos(v)))
function code(e, v)
	return Float64(Float64(e * sin(v)) / Float64(1.0 + Float64(e * cos(v))))
end
function tmp = code(e, v)
	tmp = (e * sin(v)) / (1.0 + (e * cos(v)));
end
code[e_, v_] := N[(N[(e * N[Sin[v], $MachinePrecision]), $MachinePrecision] / N[(1.0 + N[(e * N[Cos[v], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
\frac{e \cdot \sin v}{1 + e \cdot \cos v}
\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} \\ \frac{e \cdot \sin v}{1 + e \cdot \cos v} \end{array} \]
(FPCore (e v) :precision binary64 (/ (* e (sin v)) (+ 1.0 (* e (cos v)))))
double code(double e, double v) {
	return (e * sin(v)) / (1.0 + (e * cos(v)));
}
real(8) function code(e, v)
    real(8), intent (in) :: e
    real(8), intent (in) :: v
    code = (e * sin(v)) / (1.0d0 + (e * cos(v)))
end function
public static double code(double e, double v) {
	return (e * Math.sin(v)) / (1.0 + (e * Math.cos(v)));
}
def code(e, v):
	return (e * math.sin(v)) / (1.0 + (e * math.cos(v)))
function code(e, v)
	return Float64(Float64(e * sin(v)) / Float64(1.0 + Float64(e * cos(v))))
end
function tmp = code(e, v)
	tmp = (e * sin(v)) / (1.0 + (e * cos(v)));
end
code[e_, v_] := N[(N[(e * N[Sin[v], $MachinePrecision]), $MachinePrecision] / N[(1.0 + N[(e * N[Cos[v], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
\frac{e \cdot \sin v}{1 + e \cdot \cos v}
\end{array}

Alternative 1: 99.8% accurate, 1.0× speedup?

\[\begin{array}{l} \\ \frac{\sin v \cdot e}{\mathsf{fma}\left(\cos v, e, 1\right)} \end{array} \]
(FPCore (e v) :precision binary64 (/ (* (sin v) e) (fma (cos v) e 1.0)))
double code(double e, double v) {
	return (sin(v) * e) / fma(cos(v), e, 1.0);
}
function code(e, v)
	return Float64(Float64(sin(v) * e) / fma(cos(v), e, 1.0))
end
code[e_, v_] := N[(N[(N[Sin[v], $MachinePrecision] * e), $MachinePrecision] / N[(N[Cos[v], $MachinePrecision] * e + 1.0), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
\frac{\sin v \cdot e}{\mathsf{fma}\left(\cos v, e, 1\right)}
\end{array}
Derivation
  1. Initial program 99.8%

    \[\frac{e \cdot \sin v}{1 + e \cdot \cos v} \]
  2. Add Preprocessing
  3. Step-by-step derivation
    1. lift-*.f64N/A

      \[\leadsto \frac{\color{blue}{e \cdot \sin v}}{1 + e \cdot \cos v} \]
    2. *-commutativeN/A

      \[\leadsto \frac{\color{blue}{\sin v \cdot e}}{1 + e \cdot \cos v} \]
    3. lower-*.f6499.8

      \[\leadsto \frac{\color{blue}{\sin v \cdot e}}{1 + e \cdot \cos v} \]
    4. lift-+.f64N/A

      \[\leadsto \frac{\sin v \cdot e}{\color{blue}{1 + e \cdot \cos v}} \]
    5. +-commutativeN/A

      \[\leadsto \frac{\sin v \cdot e}{\color{blue}{e \cdot \cos v + 1}} \]
    6. lift-*.f64N/A

      \[\leadsto \frac{\sin v \cdot e}{\color{blue}{e \cdot \cos v} + 1} \]
    7. *-commutativeN/A

      \[\leadsto \frac{\sin v \cdot e}{\color{blue}{\cos v \cdot e} + 1} \]
    8. lower-fma.f6499.8

      \[\leadsto \frac{\sin v \cdot e}{\color{blue}{\mathsf{fma}\left(\cos v, e, 1\right)}} \]
  4. Applied rewrites99.8%

    \[\leadsto \color{blue}{\frac{\sin v \cdot e}{\mathsf{fma}\left(\cos v, e, 1\right)}} \]
  5. Add Preprocessing

Alternative 2: 99.8% accurate, 1.0× speedup?

\[\begin{array}{l} \\ \frac{\sin v}{\mathsf{fma}\left(\cos v, e, 1\right)} \cdot e \end{array} \]
(FPCore (e v) :precision binary64 (* (/ (sin v) (fma (cos v) e 1.0)) e))
double code(double e, double v) {
	return (sin(v) / fma(cos(v), e, 1.0)) * e;
}
function code(e, v)
	return Float64(Float64(sin(v) / fma(cos(v), e, 1.0)) * e)
end
code[e_, v_] := N[(N[(N[Sin[v], $MachinePrecision] / N[(N[Cos[v], $MachinePrecision] * e + 1.0), $MachinePrecision]), $MachinePrecision] * e), $MachinePrecision]
\begin{array}{l}

\\
\frac{\sin v}{\mathsf{fma}\left(\cos v, e, 1\right)} \cdot e
\end{array}
Derivation
  1. Initial program 99.8%

    \[\frac{e \cdot \sin v}{1 + e \cdot \cos v} \]
  2. Add Preprocessing
  3. Step-by-step derivation
    1. lift-/.f64N/A

      \[\leadsto \color{blue}{\frac{e \cdot \sin v}{1 + e \cdot \cos v}} \]
    2. lift-*.f64N/A

      \[\leadsto \frac{\color{blue}{e \cdot \sin v}}{1 + e \cdot \cos v} \]
    3. associate-/l*N/A

      \[\leadsto \color{blue}{e \cdot \frac{\sin v}{1 + e \cdot \cos v}} \]
    4. *-commutativeN/A

      \[\leadsto \color{blue}{\frac{\sin v}{1 + e \cdot \cos v} \cdot e} \]
    5. lower-*.f64N/A

      \[\leadsto \color{blue}{\frac{\sin v}{1 + e \cdot \cos v} \cdot e} \]
    6. lower-/.f6499.8

      \[\leadsto \color{blue}{\frac{\sin v}{1 + e \cdot \cos v}} \cdot e \]
    7. lift-+.f64N/A

      \[\leadsto \frac{\sin v}{\color{blue}{1 + e \cdot \cos v}} \cdot e \]
    8. +-commutativeN/A

      \[\leadsto \frac{\sin v}{\color{blue}{e \cdot \cos v + 1}} \cdot e \]
    9. lift-*.f64N/A

      \[\leadsto \frac{\sin v}{\color{blue}{e \cdot \cos v} + 1} \cdot e \]
    10. *-commutativeN/A

      \[\leadsto \frac{\sin v}{\color{blue}{\cos v \cdot e} + 1} \cdot e \]
    11. lower-fma.f6499.8

      \[\leadsto \frac{\sin v}{\color{blue}{\mathsf{fma}\left(\cos v, e, 1\right)}} \cdot e \]
  4. Applied rewrites99.8%

    \[\leadsto \color{blue}{\frac{\sin v}{\mathsf{fma}\left(\cos v, e, 1\right)} \cdot e} \]
  5. Add Preprocessing

Alternative 3: 52.5% accurate, 1.5× speedup?

\[\begin{array}{l} \\ \left(-e\right) \cdot \frac{-1}{\mathsf{fma}\left(\mathsf{fma}\left(-0.3333333333333333, e, 0.16666666666666666\right), v, \frac{e}{v}\right) + {v}^{-1}} \end{array} \]
(FPCore (e v)
 :precision binary64
 (*
  (- e)
  (/
   -1.0
   (+
    (fma (fma -0.3333333333333333 e 0.16666666666666666) v (/ e v))
    (pow v -1.0)))))
double code(double e, double v) {
	return -e * (-1.0 / (fma(fma(-0.3333333333333333, e, 0.16666666666666666), v, (e / v)) + pow(v, -1.0)));
}
function code(e, v)
	return Float64(Float64(-e) * Float64(-1.0 / Float64(fma(fma(-0.3333333333333333, e, 0.16666666666666666), v, Float64(e / v)) + (v ^ -1.0))))
end
code[e_, v_] := N[((-e) * N[(-1.0 / N[(N[(N[(-0.3333333333333333 * e + 0.16666666666666666), $MachinePrecision] * v + N[(e / v), $MachinePrecision]), $MachinePrecision] + N[Power[v, -1.0], $MachinePrecision]), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
\begin{array}{l}

\\
\left(-e\right) \cdot \frac{-1}{\mathsf{fma}\left(\mathsf{fma}\left(-0.3333333333333333, e, 0.16666666666666666\right), v, \frac{e}{v}\right) + {v}^{-1}}
\end{array}
Derivation
  1. Initial program 99.8%

    \[\frac{e \cdot \sin v}{1 + e \cdot \cos v} \]
  2. Add Preprocessing
  3. Step-by-step derivation
    1. lift-/.f64N/A

      \[\leadsto \color{blue}{\frac{e \cdot \sin v}{1 + e \cdot \cos v}} \]
    2. lift-*.f64N/A

      \[\leadsto \frac{\color{blue}{e \cdot \sin v}}{1 + e \cdot \cos v} \]
    3. associate-/l*N/A

      \[\leadsto \color{blue}{e \cdot \frac{\sin v}{1 + e \cdot \cos v}} \]
    4. clear-numN/A

      \[\leadsto e \cdot \color{blue}{\frac{1}{\frac{1 + e \cdot \cos v}{\sin v}}} \]
    5. un-div-invN/A

      \[\leadsto \color{blue}{\frac{e}{\frac{1 + e \cdot \cos v}{\sin v}}} \]
    6. lower-/.f64N/A

      \[\leadsto \color{blue}{\frac{e}{\frac{1 + e \cdot \cos v}{\sin v}}} \]
    7. lower-/.f6499.5

      \[\leadsto \frac{e}{\color{blue}{\frac{1 + e \cdot \cos v}{\sin v}}} \]
    8. lift-+.f64N/A

      \[\leadsto \frac{e}{\frac{\color{blue}{1 + e \cdot \cos v}}{\sin v}} \]
    9. +-commutativeN/A

      \[\leadsto \frac{e}{\frac{\color{blue}{e \cdot \cos v + 1}}{\sin v}} \]
    10. lift-*.f64N/A

      \[\leadsto \frac{e}{\frac{\color{blue}{e \cdot \cos v} + 1}{\sin v}} \]
    11. *-commutativeN/A

      \[\leadsto \frac{e}{\frac{\color{blue}{\cos v \cdot e} + 1}{\sin v}} \]
    12. lower-fma.f6499.5

      \[\leadsto \frac{e}{\frac{\color{blue}{\mathsf{fma}\left(\cos v, e, 1\right)}}{\sin v}} \]
  4. Applied rewrites99.5%

    \[\leadsto \color{blue}{\frac{e}{\frac{\mathsf{fma}\left(\cos v, e, 1\right)}{\sin v}}} \]
  5. Taylor expanded in v around 0

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

      \[\leadsto \frac{e}{\color{blue}{\frac{1 + \left(e + {v}^{2} \cdot \left(\frac{-1}{2} \cdot e - \frac{-1}{6} \cdot \left(1 + e\right)\right)\right)}{v}}} \]
    2. associate-+r+N/A

      \[\leadsto \frac{e}{\frac{\color{blue}{\left(1 + e\right) + {v}^{2} \cdot \left(\frac{-1}{2} \cdot e - \frac{-1}{6} \cdot \left(1 + e\right)\right)}}{v}} \]
    3. +-commutativeN/A

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

      \[\leadsto \frac{e}{\frac{\color{blue}{\left(\frac{-1}{2} \cdot e - \frac{-1}{6} \cdot \left(1 + e\right)\right) \cdot {v}^{2}} + \left(1 + e\right)}{v}} \]
    5. lower-fma.f64N/A

      \[\leadsto \frac{e}{\frac{\color{blue}{\mathsf{fma}\left(\frac{-1}{2} \cdot e - \frac{-1}{6} \cdot \left(1 + e\right), {v}^{2}, 1 + e\right)}}{v}} \]
    6. sub-negN/A

      \[\leadsto \frac{e}{\frac{\mathsf{fma}\left(\color{blue}{\frac{-1}{2} \cdot e + \left(\mathsf{neg}\left(\frac{-1}{6} \cdot \left(1 + e\right)\right)\right)}, {v}^{2}, 1 + e\right)}{v}} \]
    7. lower-fma.f64N/A

      \[\leadsto \frac{e}{\frac{\mathsf{fma}\left(\color{blue}{\mathsf{fma}\left(\frac{-1}{2}, e, \mathsf{neg}\left(\frac{-1}{6} \cdot \left(1 + e\right)\right)\right)}, {v}^{2}, 1 + e\right)}{v}} \]
    8. distribute-lft-neg-inN/A

      \[\leadsto \frac{e}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(\frac{-1}{2}, e, \color{blue}{\left(\mathsf{neg}\left(\frac{-1}{6}\right)\right) \cdot \left(1 + e\right)}\right), {v}^{2}, 1 + e\right)}{v}} \]
    9. metadata-evalN/A

      \[\leadsto \frac{e}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(\frac{-1}{2}, e, \color{blue}{\frac{1}{6}} \cdot \left(1 + e\right)\right), {v}^{2}, 1 + e\right)}{v}} \]
    10. +-commutativeN/A

      \[\leadsto \frac{e}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(\frac{-1}{2}, e, \frac{1}{6} \cdot \color{blue}{\left(e + 1\right)}\right), {v}^{2}, 1 + e\right)}{v}} \]
    11. distribute-lft-inN/A

      \[\leadsto \frac{e}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(\frac{-1}{2}, e, \color{blue}{\frac{1}{6} \cdot e + \frac{1}{6} \cdot 1}\right), {v}^{2}, 1 + e\right)}{v}} \]
    12. metadata-evalN/A

      \[\leadsto \frac{e}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(\frac{-1}{2}, e, \frac{1}{6} \cdot e + \color{blue}{\frac{1}{6}}\right), {v}^{2}, 1 + e\right)}{v}} \]
    13. lower-fma.f64N/A

      \[\leadsto \frac{e}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(\frac{-1}{2}, e, \color{blue}{\mathsf{fma}\left(\frac{1}{6}, e, \frac{1}{6}\right)}\right), {v}^{2}, 1 + e\right)}{v}} \]
    14. unpow2N/A

      \[\leadsto \frac{e}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(\frac{-1}{2}, e, \mathsf{fma}\left(\frac{1}{6}, e, \frac{1}{6}\right)\right), \color{blue}{v \cdot v}, 1 + e\right)}{v}} \]
    15. lower-*.f64N/A

      \[\leadsto \frac{e}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(\frac{-1}{2}, e, \mathsf{fma}\left(\frac{1}{6}, e, \frac{1}{6}\right)\right), \color{blue}{v \cdot v}, 1 + e\right)}{v}} \]
    16. lower-+.f6450.1

      \[\leadsto \frac{e}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(-0.5, e, \mathsf{fma}\left(0.16666666666666666, e, 0.16666666666666666\right)\right), v \cdot v, \color{blue}{1 + e}\right)}{v}} \]
  7. Applied rewrites50.1%

    \[\leadsto \frac{e}{\color{blue}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(-0.5, e, \mathsf{fma}\left(0.16666666666666666, e, 0.16666666666666666\right)\right), v \cdot v, 1 + e\right)}{v}}} \]
  8. Step-by-step derivation
    1. lift-/.f64N/A

      \[\leadsto \color{blue}{\frac{e}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(\frac{-1}{2}, e, \mathsf{fma}\left(\frac{1}{6}, e, \frac{1}{6}\right)\right), v \cdot v, 1 + e\right)}{v}}} \]
    2. frac-2negN/A

      \[\leadsto \color{blue}{\frac{\mathsf{neg}\left(e\right)}{\mathsf{neg}\left(\frac{\mathsf{fma}\left(\mathsf{fma}\left(\frac{-1}{2}, e, \mathsf{fma}\left(\frac{1}{6}, e, \frac{1}{6}\right)\right), v \cdot v, 1 + e\right)}{v}\right)}} \]
    3. neg-mul-1N/A

      \[\leadsto \frac{\color{blue}{-1 \cdot e}}{\mathsf{neg}\left(\frac{\mathsf{fma}\left(\mathsf{fma}\left(\frac{-1}{2}, e, \mathsf{fma}\left(\frac{1}{6}, e, \frac{1}{6}\right)\right), v \cdot v, 1 + e\right)}{v}\right)} \]
    4. *-commutativeN/A

      \[\leadsto \frac{\color{blue}{e \cdot -1}}{\mathsf{neg}\left(\frac{\mathsf{fma}\left(\mathsf{fma}\left(\frac{-1}{2}, e, \mathsf{fma}\left(\frac{1}{6}, e, \frac{1}{6}\right)\right), v \cdot v, 1 + e\right)}{v}\right)} \]
    5. neg-mul-1N/A

      \[\leadsto \frac{e \cdot -1}{\color{blue}{-1 \cdot \frac{\mathsf{fma}\left(\mathsf{fma}\left(\frac{-1}{2}, e, \mathsf{fma}\left(\frac{1}{6}, e, \frac{1}{6}\right)\right), v \cdot v, 1 + e\right)}{v}}} \]
    6. times-fracN/A

      \[\leadsto \color{blue}{\frac{e}{-1} \cdot \frac{-1}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(\frac{-1}{2}, e, \mathsf{fma}\left(\frac{1}{6}, e, \frac{1}{6}\right)\right), v \cdot v, 1 + e\right)}{v}}} \]
    7. div-invN/A

      \[\leadsto \color{blue}{\left(e \cdot \frac{1}{-1}\right)} \cdot \frac{-1}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(\frac{-1}{2}, e, \mathsf{fma}\left(\frac{1}{6}, e, \frac{1}{6}\right)\right), v \cdot v, 1 + e\right)}{v}} \]
    8. metadata-evalN/A

      \[\leadsto \left(e \cdot \color{blue}{-1}\right) \cdot \frac{-1}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(\frac{-1}{2}, e, \mathsf{fma}\left(\frac{1}{6}, e, \frac{1}{6}\right)\right), v \cdot v, 1 + e\right)}{v}} \]
    9. *-commutativeN/A

      \[\leadsto \color{blue}{\left(-1 \cdot e\right)} \cdot \frac{-1}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(\frac{-1}{2}, e, \mathsf{fma}\left(\frac{1}{6}, e, \frac{1}{6}\right)\right), v \cdot v, 1 + e\right)}{v}} \]
    10. neg-mul-1N/A

      \[\leadsto \color{blue}{\left(\mathsf{neg}\left(e\right)\right)} \cdot \frac{-1}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(\frac{-1}{2}, e, \mathsf{fma}\left(\frac{1}{6}, e, \frac{1}{6}\right)\right), v \cdot v, 1 + e\right)}{v}} \]
    11. lift-neg.f64N/A

      \[\leadsto \color{blue}{\left(-e\right)} \cdot \frac{-1}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(\frac{-1}{2}, e, \mathsf{fma}\left(\frac{1}{6}, e, \frac{1}{6}\right)\right), v \cdot v, 1 + e\right)}{v}} \]
    12. lower-*.f64N/A

      \[\leadsto \color{blue}{\left(-e\right) \cdot \frac{-1}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(\frac{-1}{2}, e, \mathsf{fma}\left(\frac{1}{6}, e, \frac{1}{6}\right)\right), v \cdot v, 1 + e\right)}{v}}} \]
    13. lower-/.f6450.2

      \[\leadsto \left(-e\right) \cdot \color{blue}{\frac{-1}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(-0.5, e, \mathsf{fma}\left(0.16666666666666666, e, 0.16666666666666666\right)\right), v \cdot v, 1 + e\right)}{v}}} \]
  9. Applied rewrites50.2%

    \[\leadsto \color{blue}{\left(-e\right) \cdot \frac{-1}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(e, -0.3333333333333333, 0.16666666666666666\right) \cdot v, v, 1 + e\right)}{v}}} \]
  10. Taylor expanded in e around 0

    \[\leadsto \left(-e\right) \cdot \frac{-1}{\frac{1}{6} \cdot v + \color{blue}{\left(e \cdot \left(\frac{-1}{3} \cdot v + \frac{1}{v}\right) + \frac{1}{v}\right)}} \]
  11. Step-by-step derivation
    1. Applied rewrites50.2%

      \[\leadsto \left(-e\right) \cdot \frac{-1}{\mathsf{fma}\left(\mathsf{fma}\left(-0.3333333333333333, e, 0.16666666666666666\right), v, \frac{e}{v}\right) + \color{blue}{\frac{1}{v}}} \]
    2. Final simplification50.2%

      \[\leadsto \left(-e\right) \cdot \frac{-1}{\mathsf{fma}\left(\mathsf{fma}\left(-0.3333333333333333, e, 0.16666666666666666\right), v, \frac{e}{v}\right) + {v}^{-1}} \]
    3. Add Preprocessing

    Alternative 4: 98.8% accurate, 1.9× speedup?

    \[\begin{array}{l} \\ \frac{e \cdot \sin v}{1 + e} \end{array} \]
    (FPCore (e v) :precision binary64 (/ (* e (sin v)) (+ 1.0 e)))
    double code(double e, double v) {
    	return (e * sin(v)) / (1.0 + e);
    }
    
    real(8) function code(e, v)
        real(8), intent (in) :: e
        real(8), intent (in) :: v
        code = (e * sin(v)) / (1.0d0 + e)
    end function
    
    public static double code(double e, double v) {
    	return (e * Math.sin(v)) / (1.0 + e);
    }
    
    def code(e, v):
    	return (e * math.sin(v)) / (1.0 + e)
    
    function code(e, v)
    	return Float64(Float64(e * sin(v)) / Float64(1.0 + e))
    end
    
    function tmp = code(e, v)
    	tmp = (e * sin(v)) / (1.0 + e);
    end
    
    code[e_, v_] := N[(N[(e * N[Sin[v], $MachinePrecision]), $MachinePrecision] / N[(1.0 + e), $MachinePrecision]), $MachinePrecision]
    
    \begin{array}{l}
    
    \\
    \frac{e \cdot \sin v}{1 + e}
    \end{array}
    
    Derivation
    1. Initial program 99.8%

      \[\frac{e \cdot \sin v}{1 + e \cdot \cos v} \]
    2. Add Preprocessing
    3. Taylor expanded in v around 0

      \[\leadsto \frac{e \cdot \sin v}{\color{blue}{1 + e}} \]
    4. Step-by-step derivation
      1. lower-+.f6498.9

        \[\leadsto \frac{e \cdot \sin v}{\color{blue}{1 + e}} \]
    5. Applied rewrites98.9%

      \[\leadsto \frac{e \cdot \sin v}{\color{blue}{1 + e}} \]
    6. Add Preprocessing

    Alternative 5: 97.9% accurate, 2.1× speedup?

    \[\begin{array}{l} \\ \sin v \cdot e \end{array} \]
    (FPCore (e v) :precision binary64 (* (sin v) e))
    double code(double e, double v) {
    	return sin(v) * e;
    }
    
    real(8) function code(e, v)
        real(8), intent (in) :: e
        real(8), intent (in) :: v
        code = sin(v) * e
    end function
    
    public static double code(double e, double v) {
    	return Math.sin(v) * e;
    }
    
    def code(e, v):
    	return math.sin(v) * e
    
    function code(e, v)
    	return Float64(sin(v) * e)
    end
    
    function tmp = code(e, v)
    	tmp = sin(v) * e;
    end
    
    code[e_, v_] := N[(N[Sin[v], $MachinePrecision] * e), $MachinePrecision]
    
    \begin{array}{l}
    
    \\
    \sin v \cdot e
    \end{array}
    
    Derivation
    1. Initial program 99.8%

      \[\frac{e \cdot \sin v}{1 + e \cdot \cos v} \]
    2. Add Preprocessing
    3. Taylor expanded in e around 0

      \[\leadsto \color{blue}{e \cdot \sin v} \]
    4. Step-by-step derivation
      1. *-commutativeN/A

        \[\leadsto \color{blue}{\sin v \cdot e} \]
      2. lower-*.f64N/A

        \[\leadsto \color{blue}{\sin v \cdot e} \]
      3. lower-sin.f6497.8

        \[\leadsto \color{blue}{\sin v} \cdot e \]
    5. Applied rewrites97.8%

      \[\leadsto \color{blue}{\sin v \cdot e} \]
    6. Add Preprocessing

    Alternative 6: 52.5% accurate, 4.5× speedup?

    \[\begin{array}{l} \\ e \cdot \frac{--1}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(e, -0.3333333333333333, 0.16666666666666666\right) \cdot v, v, 1 + e\right)}{v}} \end{array} \]
    (FPCore (e v)
     :precision binary64
     (*
      e
      (/
       (- -1.0)
       (/
        (fma (* (fma e -0.3333333333333333 0.16666666666666666) v) v (+ 1.0 e))
        v))))
    double code(double e, double v) {
    	return e * (-(-1.0) / (fma((fma(e, -0.3333333333333333, 0.16666666666666666) * v), v, (1.0 + e)) / v));
    }
    
    function code(e, v)
    	return Float64(e * Float64(Float64(-(-1.0)) / Float64(fma(Float64(fma(e, -0.3333333333333333, 0.16666666666666666) * v), v, Float64(1.0 + e)) / v)))
    end
    
    code[e_, v_] := N[(e * N[((--1.0) / N[(N[(N[(N[(e * -0.3333333333333333 + 0.16666666666666666), $MachinePrecision] * v), $MachinePrecision] * v + N[(1.0 + e), $MachinePrecision]), $MachinePrecision] / v), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
    
    \begin{array}{l}
    
    \\
    e \cdot \frac{--1}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(e, -0.3333333333333333, 0.16666666666666666\right) \cdot v, v, 1 + e\right)}{v}}
    \end{array}
    
    Derivation
    1. Initial program 99.8%

      \[\frac{e \cdot \sin v}{1 + e \cdot \cos v} \]
    2. Add Preprocessing
    3. Step-by-step derivation
      1. lift-/.f64N/A

        \[\leadsto \color{blue}{\frac{e \cdot \sin v}{1 + e \cdot \cos v}} \]
      2. lift-*.f64N/A

        \[\leadsto \frac{\color{blue}{e \cdot \sin v}}{1 + e \cdot \cos v} \]
      3. associate-/l*N/A

        \[\leadsto \color{blue}{e \cdot \frac{\sin v}{1 + e \cdot \cos v}} \]
      4. clear-numN/A

        \[\leadsto e \cdot \color{blue}{\frac{1}{\frac{1 + e \cdot \cos v}{\sin v}}} \]
      5. un-div-invN/A

        \[\leadsto \color{blue}{\frac{e}{\frac{1 + e \cdot \cos v}{\sin v}}} \]
      6. lower-/.f64N/A

        \[\leadsto \color{blue}{\frac{e}{\frac{1 + e \cdot \cos v}{\sin v}}} \]
      7. lower-/.f6499.5

        \[\leadsto \frac{e}{\color{blue}{\frac{1 + e \cdot \cos v}{\sin v}}} \]
      8. lift-+.f64N/A

        \[\leadsto \frac{e}{\frac{\color{blue}{1 + e \cdot \cos v}}{\sin v}} \]
      9. +-commutativeN/A

        \[\leadsto \frac{e}{\frac{\color{blue}{e \cdot \cos v + 1}}{\sin v}} \]
      10. lift-*.f64N/A

        \[\leadsto \frac{e}{\frac{\color{blue}{e \cdot \cos v} + 1}{\sin v}} \]
      11. *-commutativeN/A

        \[\leadsto \frac{e}{\frac{\color{blue}{\cos v \cdot e} + 1}{\sin v}} \]
      12. lower-fma.f6499.5

        \[\leadsto \frac{e}{\frac{\color{blue}{\mathsf{fma}\left(\cos v, e, 1\right)}}{\sin v}} \]
    4. Applied rewrites99.5%

      \[\leadsto \color{blue}{\frac{e}{\frac{\mathsf{fma}\left(\cos v, e, 1\right)}{\sin v}}} \]
    5. Taylor expanded in v around 0

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

        \[\leadsto \frac{e}{\color{blue}{\frac{1 + \left(e + {v}^{2} \cdot \left(\frac{-1}{2} \cdot e - \frac{-1}{6} \cdot \left(1 + e\right)\right)\right)}{v}}} \]
      2. associate-+r+N/A

        \[\leadsto \frac{e}{\frac{\color{blue}{\left(1 + e\right) + {v}^{2} \cdot \left(\frac{-1}{2} \cdot e - \frac{-1}{6} \cdot \left(1 + e\right)\right)}}{v}} \]
      3. +-commutativeN/A

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

        \[\leadsto \frac{e}{\frac{\color{blue}{\left(\frac{-1}{2} \cdot e - \frac{-1}{6} \cdot \left(1 + e\right)\right) \cdot {v}^{2}} + \left(1 + e\right)}{v}} \]
      5. lower-fma.f64N/A

        \[\leadsto \frac{e}{\frac{\color{blue}{\mathsf{fma}\left(\frac{-1}{2} \cdot e - \frac{-1}{6} \cdot \left(1 + e\right), {v}^{2}, 1 + e\right)}}{v}} \]
      6. sub-negN/A

        \[\leadsto \frac{e}{\frac{\mathsf{fma}\left(\color{blue}{\frac{-1}{2} \cdot e + \left(\mathsf{neg}\left(\frac{-1}{6} \cdot \left(1 + e\right)\right)\right)}, {v}^{2}, 1 + e\right)}{v}} \]
      7. lower-fma.f64N/A

        \[\leadsto \frac{e}{\frac{\mathsf{fma}\left(\color{blue}{\mathsf{fma}\left(\frac{-1}{2}, e, \mathsf{neg}\left(\frac{-1}{6} \cdot \left(1 + e\right)\right)\right)}, {v}^{2}, 1 + e\right)}{v}} \]
      8. distribute-lft-neg-inN/A

        \[\leadsto \frac{e}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(\frac{-1}{2}, e, \color{blue}{\left(\mathsf{neg}\left(\frac{-1}{6}\right)\right) \cdot \left(1 + e\right)}\right), {v}^{2}, 1 + e\right)}{v}} \]
      9. metadata-evalN/A

        \[\leadsto \frac{e}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(\frac{-1}{2}, e, \color{blue}{\frac{1}{6}} \cdot \left(1 + e\right)\right), {v}^{2}, 1 + e\right)}{v}} \]
      10. +-commutativeN/A

        \[\leadsto \frac{e}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(\frac{-1}{2}, e, \frac{1}{6} \cdot \color{blue}{\left(e + 1\right)}\right), {v}^{2}, 1 + e\right)}{v}} \]
      11. distribute-lft-inN/A

        \[\leadsto \frac{e}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(\frac{-1}{2}, e, \color{blue}{\frac{1}{6} \cdot e + \frac{1}{6} \cdot 1}\right), {v}^{2}, 1 + e\right)}{v}} \]
      12. metadata-evalN/A

        \[\leadsto \frac{e}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(\frac{-1}{2}, e, \frac{1}{6} \cdot e + \color{blue}{\frac{1}{6}}\right), {v}^{2}, 1 + e\right)}{v}} \]
      13. lower-fma.f64N/A

        \[\leadsto \frac{e}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(\frac{-1}{2}, e, \color{blue}{\mathsf{fma}\left(\frac{1}{6}, e, \frac{1}{6}\right)}\right), {v}^{2}, 1 + e\right)}{v}} \]
      14. unpow2N/A

        \[\leadsto \frac{e}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(\frac{-1}{2}, e, \mathsf{fma}\left(\frac{1}{6}, e, \frac{1}{6}\right)\right), \color{blue}{v \cdot v}, 1 + e\right)}{v}} \]
      15. lower-*.f64N/A

        \[\leadsto \frac{e}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(\frac{-1}{2}, e, \mathsf{fma}\left(\frac{1}{6}, e, \frac{1}{6}\right)\right), \color{blue}{v \cdot v}, 1 + e\right)}{v}} \]
      16. lower-+.f6450.1

        \[\leadsto \frac{e}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(-0.5, e, \mathsf{fma}\left(0.16666666666666666, e, 0.16666666666666666\right)\right), v \cdot v, \color{blue}{1 + e}\right)}{v}} \]
    7. Applied rewrites50.1%

      \[\leadsto \frac{e}{\color{blue}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(-0.5, e, \mathsf{fma}\left(0.16666666666666666, e, 0.16666666666666666\right)\right), v \cdot v, 1 + e\right)}{v}}} \]
    8. Step-by-step derivation
      1. lift-/.f64N/A

        \[\leadsto \color{blue}{\frac{e}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(\frac{-1}{2}, e, \mathsf{fma}\left(\frac{1}{6}, e, \frac{1}{6}\right)\right), v \cdot v, 1 + e\right)}{v}}} \]
      2. frac-2negN/A

        \[\leadsto \color{blue}{\frac{\mathsf{neg}\left(e\right)}{\mathsf{neg}\left(\frac{\mathsf{fma}\left(\mathsf{fma}\left(\frac{-1}{2}, e, \mathsf{fma}\left(\frac{1}{6}, e, \frac{1}{6}\right)\right), v \cdot v, 1 + e\right)}{v}\right)}} \]
      3. neg-mul-1N/A

        \[\leadsto \frac{\color{blue}{-1 \cdot e}}{\mathsf{neg}\left(\frac{\mathsf{fma}\left(\mathsf{fma}\left(\frac{-1}{2}, e, \mathsf{fma}\left(\frac{1}{6}, e, \frac{1}{6}\right)\right), v \cdot v, 1 + e\right)}{v}\right)} \]
      4. *-commutativeN/A

        \[\leadsto \frac{\color{blue}{e \cdot -1}}{\mathsf{neg}\left(\frac{\mathsf{fma}\left(\mathsf{fma}\left(\frac{-1}{2}, e, \mathsf{fma}\left(\frac{1}{6}, e, \frac{1}{6}\right)\right), v \cdot v, 1 + e\right)}{v}\right)} \]
      5. neg-mul-1N/A

        \[\leadsto \frac{e \cdot -1}{\color{blue}{-1 \cdot \frac{\mathsf{fma}\left(\mathsf{fma}\left(\frac{-1}{2}, e, \mathsf{fma}\left(\frac{1}{6}, e, \frac{1}{6}\right)\right), v \cdot v, 1 + e\right)}{v}}} \]
      6. times-fracN/A

        \[\leadsto \color{blue}{\frac{e}{-1} \cdot \frac{-1}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(\frac{-1}{2}, e, \mathsf{fma}\left(\frac{1}{6}, e, \frac{1}{6}\right)\right), v \cdot v, 1 + e\right)}{v}}} \]
      7. div-invN/A

        \[\leadsto \color{blue}{\left(e \cdot \frac{1}{-1}\right)} \cdot \frac{-1}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(\frac{-1}{2}, e, \mathsf{fma}\left(\frac{1}{6}, e, \frac{1}{6}\right)\right), v \cdot v, 1 + e\right)}{v}} \]
      8. metadata-evalN/A

        \[\leadsto \left(e \cdot \color{blue}{-1}\right) \cdot \frac{-1}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(\frac{-1}{2}, e, \mathsf{fma}\left(\frac{1}{6}, e, \frac{1}{6}\right)\right), v \cdot v, 1 + e\right)}{v}} \]
      9. *-commutativeN/A

        \[\leadsto \color{blue}{\left(-1 \cdot e\right)} \cdot \frac{-1}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(\frac{-1}{2}, e, \mathsf{fma}\left(\frac{1}{6}, e, \frac{1}{6}\right)\right), v \cdot v, 1 + e\right)}{v}} \]
      10. neg-mul-1N/A

        \[\leadsto \color{blue}{\left(\mathsf{neg}\left(e\right)\right)} \cdot \frac{-1}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(\frac{-1}{2}, e, \mathsf{fma}\left(\frac{1}{6}, e, \frac{1}{6}\right)\right), v \cdot v, 1 + e\right)}{v}} \]
      11. lift-neg.f64N/A

        \[\leadsto \color{blue}{\left(-e\right)} \cdot \frac{-1}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(\frac{-1}{2}, e, \mathsf{fma}\left(\frac{1}{6}, e, \frac{1}{6}\right)\right), v \cdot v, 1 + e\right)}{v}} \]
      12. lower-*.f64N/A

        \[\leadsto \color{blue}{\left(-e\right) \cdot \frac{-1}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(\frac{-1}{2}, e, \mathsf{fma}\left(\frac{1}{6}, e, \frac{1}{6}\right)\right), v \cdot v, 1 + e\right)}{v}}} \]
      13. lower-/.f6450.2

        \[\leadsto \left(-e\right) \cdot \color{blue}{\frac{-1}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(-0.5, e, \mathsf{fma}\left(0.16666666666666666, e, 0.16666666666666666\right)\right), v \cdot v, 1 + e\right)}{v}}} \]
    9. Applied rewrites50.2%

      \[\leadsto \color{blue}{\left(-e\right) \cdot \frac{-1}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(e, -0.3333333333333333, 0.16666666666666666\right) \cdot v, v, 1 + e\right)}{v}}} \]
    10. Final simplification50.2%

      \[\leadsto e \cdot \frac{--1}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(e, -0.3333333333333333, 0.16666666666666666\right) \cdot v, v, 1 + e\right)}{v}} \]
    11. Add Preprocessing

    Alternative 7: 52.5% accurate, 5.1× speedup?

    \[\begin{array}{l} \\ \left(-e\right) \cdot \frac{-1}{\frac{\mathsf{fma}\left(0.16666666666666666 \cdot v, v, 1 + e\right)}{v}} \end{array} \]
    (FPCore (e v)
     :precision binary64
     (* (- e) (/ -1.0 (/ (fma (* 0.16666666666666666 v) v (+ 1.0 e)) v))))
    double code(double e, double v) {
    	return -e * (-1.0 / (fma((0.16666666666666666 * v), v, (1.0 + e)) / v));
    }
    
    function code(e, v)
    	return Float64(Float64(-e) * Float64(-1.0 / Float64(fma(Float64(0.16666666666666666 * v), v, Float64(1.0 + e)) / v)))
    end
    
    code[e_, v_] := N[((-e) * N[(-1.0 / N[(N[(N[(0.16666666666666666 * v), $MachinePrecision] * v + N[(1.0 + e), $MachinePrecision]), $MachinePrecision] / v), $MachinePrecision]), $MachinePrecision]), $MachinePrecision]
    
    \begin{array}{l}
    
    \\
    \left(-e\right) \cdot \frac{-1}{\frac{\mathsf{fma}\left(0.16666666666666666 \cdot v, v, 1 + e\right)}{v}}
    \end{array}
    
    Derivation
    1. Initial program 99.8%

      \[\frac{e \cdot \sin v}{1 + e \cdot \cos v} \]
    2. Add Preprocessing
    3. Step-by-step derivation
      1. lift-/.f64N/A

        \[\leadsto \color{blue}{\frac{e \cdot \sin v}{1 + e \cdot \cos v}} \]
      2. lift-*.f64N/A

        \[\leadsto \frac{\color{blue}{e \cdot \sin v}}{1 + e \cdot \cos v} \]
      3. associate-/l*N/A

        \[\leadsto \color{blue}{e \cdot \frac{\sin v}{1 + e \cdot \cos v}} \]
      4. clear-numN/A

        \[\leadsto e \cdot \color{blue}{\frac{1}{\frac{1 + e \cdot \cos v}{\sin v}}} \]
      5. un-div-invN/A

        \[\leadsto \color{blue}{\frac{e}{\frac{1 + e \cdot \cos v}{\sin v}}} \]
      6. lower-/.f64N/A

        \[\leadsto \color{blue}{\frac{e}{\frac{1 + e \cdot \cos v}{\sin v}}} \]
      7. lower-/.f6499.5

        \[\leadsto \frac{e}{\color{blue}{\frac{1 + e \cdot \cos v}{\sin v}}} \]
      8. lift-+.f64N/A

        \[\leadsto \frac{e}{\frac{\color{blue}{1 + e \cdot \cos v}}{\sin v}} \]
      9. +-commutativeN/A

        \[\leadsto \frac{e}{\frac{\color{blue}{e \cdot \cos v + 1}}{\sin v}} \]
      10. lift-*.f64N/A

        \[\leadsto \frac{e}{\frac{\color{blue}{e \cdot \cos v} + 1}{\sin v}} \]
      11. *-commutativeN/A

        \[\leadsto \frac{e}{\frac{\color{blue}{\cos v \cdot e} + 1}{\sin v}} \]
      12. lower-fma.f6499.5

        \[\leadsto \frac{e}{\frac{\color{blue}{\mathsf{fma}\left(\cos v, e, 1\right)}}{\sin v}} \]
    4. Applied rewrites99.5%

      \[\leadsto \color{blue}{\frac{e}{\frac{\mathsf{fma}\left(\cos v, e, 1\right)}{\sin v}}} \]
    5. Taylor expanded in v around 0

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

        \[\leadsto \frac{e}{\color{blue}{\frac{1 + \left(e + {v}^{2} \cdot \left(\frac{-1}{2} \cdot e - \frac{-1}{6} \cdot \left(1 + e\right)\right)\right)}{v}}} \]
      2. associate-+r+N/A

        \[\leadsto \frac{e}{\frac{\color{blue}{\left(1 + e\right) + {v}^{2} \cdot \left(\frac{-1}{2} \cdot e - \frac{-1}{6} \cdot \left(1 + e\right)\right)}}{v}} \]
      3. +-commutativeN/A

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

        \[\leadsto \frac{e}{\frac{\color{blue}{\left(\frac{-1}{2} \cdot e - \frac{-1}{6} \cdot \left(1 + e\right)\right) \cdot {v}^{2}} + \left(1 + e\right)}{v}} \]
      5. lower-fma.f64N/A

        \[\leadsto \frac{e}{\frac{\color{blue}{\mathsf{fma}\left(\frac{-1}{2} \cdot e - \frac{-1}{6} \cdot \left(1 + e\right), {v}^{2}, 1 + e\right)}}{v}} \]
      6. sub-negN/A

        \[\leadsto \frac{e}{\frac{\mathsf{fma}\left(\color{blue}{\frac{-1}{2} \cdot e + \left(\mathsf{neg}\left(\frac{-1}{6} \cdot \left(1 + e\right)\right)\right)}, {v}^{2}, 1 + e\right)}{v}} \]
      7. lower-fma.f64N/A

        \[\leadsto \frac{e}{\frac{\mathsf{fma}\left(\color{blue}{\mathsf{fma}\left(\frac{-1}{2}, e, \mathsf{neg}\left(\frac{-1}{6} \cdot \left(1 + e\right)\right)\right)}, {v}^{2}, 1 + e\right)}{v}} \]
      8. distribute-lft-neg-inN/A

        \[\leadsto \frac{e}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(\frac{-1}{2}, e, \color{blue}{\left(\mathsf{neg}\left(\frac{-1}{6}\right)\right) \cdot \left(1 + e\right)}\right), {v}^{2}, 1 + e\right)}{v}} \]
      9. metadata-evalN/A

        \[\leadsto \frac{e}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(\frac{-1}{2}, e, \color{blue}{\frac{1}{6}} \cdot \left(1 + e\right)\right), {v}^{2}, 1 + e\right)}{v}} \]
      10. +-commutativeN/A

        \[\leadsto \frac{e}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(\frac{-1}{2}, e, \frac{1}{6} \cdot \color{blue}{\left(e + 1\right)}\right), {v}^{2}, 1 + e\right)}{v}} \]
      11. distribute-lft-inN/A

        \[\leadsto \frac{e}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(\frac{-1}{2}, e, \color{blue}{\frac{1}{6} \cdot e + \frac{1}{6} \cdot 1}\right), {v}^{2}, 1 + e\right)}{v}} \]
      12. metadata-evalN/A

        \[\leadsto \frac{e}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(\frac{-1}{2}, e, \frac{1}{6} \cdot e + \color{blue}{\frac{1}{6}}\right), {v}^{2}, 1 + e\right)}{v}} \]
      13. lower-fma.f64N/A

        \[\leadsto \frac{e}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(\frac{-1}{2}, e, \color{blue}{\mathsf{fma}\left(\frac{1}{6}, e, \frac{1}{6}\right)}\right), {v}^{2}, 1 + e\right)}{v}} \]
      14. unpow2N/A

        \[\leadsto \frac{e}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(\frac{-1}{2}, e, \mathsf{fma}\left(\frac{1}{6}, e, \frac{1}{6}\right)\right), \color{blue}{v \cdot v}, 1 + e\right)}{v}} \]
      15. lower-*.f64N/A

        \[\leadsto \frac{e}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(\frac{-1}{2}, e, \mathsf{fma}\left(\frac{1}{6}, e, \frac{1}{6}\right)\right), \color{blue}{v \cdot v}, 1 + e\right)}{v}} \]
      16. lower-+.f6450.1

        \[\leadsto \frac{e}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(-0.5, e, \mathsf{fma}\left(0.16666666666666666, e, 0.16666666666666666\right)\right), v \cdot v, \color{blue}{1 + e}\right)}{v}} \]
    7. Applied rewrites50.1%

      \[\leadsto \frac{e}{\color{blue}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(-0.5, e, \mathsf{fma}\left(0.16666666666666666, e, 0.16666666666666666\right)\right), v \cdot v, 1 + e\right)}{v}}} \]
    8. Step-by-step derivation
      1. lift-/.f64N/A

        \[\leadsto \color{blue}{\frac{e}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(\frac{-1}{2}, e, \mathsf{fma}\left(\frac{1}{6}, e, \frac{1}{6}\right)\right), v \cdot v, 1 + e\right)}{v}}} \]
      2. frac-2negN/A

        \[\leadsto \color{blue}{\frac{\mathsf{neg}\left(e\right)}{\mathsf{neg}\left(\frac{\mathsf{fma}\left(\mathsf{fma}\left(\frac{-1}{2}, e, \mathsf{fma}\left(\frac{1}{6}, e, \frac{1}{6}\right)\right), v \cdot v, 1 + e\right)}{v}\right)}} \]
      3. neg-mul-1N/A

        \[\leadsto \frac{\color{blue}{-1 \cdot e}}{\mathsf{neg}\left(\frac{\mathsf{fma}\left(\mathsf{fma}\left(\frac{-1}{2}, e, \mathsf{fma}\left(\frac{1}{6}, e, \frac{1}{6}\right)\right), v \cdot v, 1 + e\right)}{v}\right)} \]
      4. *-commutativeN/A

        \[\leadsto \frac{\color{blue}{e \cdot -1}}{\mathsf{neg}\left(\frac{\mathsf{fma}\left(\mathsf{fma}\left(\frac{-1}{2}, e, \mathsf{fma}\left(\frac{1}{6}, e, \frac{1}{6}\right)\right), v \cdot v, 1 + e\right)}{v}\right)} \]
      5. neg-mul-1N/A

        \[\leadsto \frac{e \cdot -1}{\color{blue}{-1 \cdot \frac{\mathsf{fma}\left(\mathsf{fma}\left(\frac{-1}{2}, e, \mathsf{fma}\left(\frac{1}{6}, e, \frac{1}{6}\right)\right), v \cdot v, 1 + e\right)}{v}}} \]
      6. times-fracN/A

        \[\leadsto \color{blue}{\frac{e}{-1} \cdot \frac{-1}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(\frac{-1}{2}, e, \mathsf{fma}\left(\frac{1}{6}, e, \frac{1}{6}\right)\right), v \cdot v, 1 + e\right)}{v}}} \]
      7. div-invN/A

        \[\leadsto \color{blue}{\left(e \cdot \frac{1}{-1}\right)} \cdot \frac{-1}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(\frac{-1}{2}, e, \mathsf{fma}\left(\frac{1}{6}, e, \frac{1}{6}\right)\right), v \cdot v, 1 + e\right)}{v}} \]
      8. metadata-evalN/A

        \[\leadsto \left(e \cdot \color{blue}{-1}\right) \cdot \frac{-1}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(\frac{-1}{2}, e, \mathsf{fma}\left(\frac{1}{6}, e, \frac{1}{6}\right)\right), v \cdot v, 1 + e\right)}{v}} \]
      9. *-commutativeN/A

        \[\leadsto \color{blue}{\left(-1 \cdot e\right)} \cdot \frac{-1}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(\frac{-1}{2}, e, \mathsf{fma}\left(\frac{1}{6}, e, \frac{1}{6}\right)\right), v \cdot v, 1 + e\right)}{v}} \]
      10. neg-mul-1N/A

        \[\leadsto \color{blue}{\left(\mathsf{neg}\left(e\right)\right)} \cdot \frac{-1}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(\frac{-1}{2}, e, \mathsf{fma}\left(\frac{1}{6}, e, \frac{1}{6}\right)\right), v \cdot v, 1 + e\right)}{v}} \]
      11. lift-neg.f64N/A

        \[\leadsto \color{blue}{\left(-e\right)} \cdot \frac{-1}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(\frac{-1}{2}, e, \mathsf{fma}\left(\frac{1}{6}, e, \frac{1}{6}\right)\right), v \cdot v, 1 + e\right)}{v}} \]
      12. lower-*.f64N/A

        \[\leadsto \color{blue}{\left(-e\right) \cdot \frac{-1}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(\frac{-1}{2}, e, \mathsf{fma}\left(\frac{1}{6}, e, \frac{1}{6}\right)\right), v \cdot v, 1 + e\right)}{v}}} \]
      13. lower-/.f6450.2

        \[\leadsto \left(-e\right) \cdot \color{blue}{\frac{-1}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(-0.5, e, \mathsf{fma}\left(0.16666666666666666, e, 0.16666666666666666\right)\right), v \cdot v, 1 + e\right)}{v}}} \]
    9. Applied rewrites50.2%

      \[\leadsto \color{blue}{\left(-e\right) \cdot \frac{-1}{\frac{\mathsf{fma}\left(\mathsf{fma}\left(e, -0.3333333333333333, 0.16666666666666666\right) \cdot v, v, 1 + e\right)}{v}}} \]
    10. Taylor expanded in e around 0

      \[\leadsto \left(-e\right) \cdot \frac{-1}{\frac{\mathsf{fma}\left(\frac{1}{6} \cdot v, v, 1 + e\right)}{v}} \]
    11. Step-by-step derivation
      1. Applied rewrites50.2%

        \[\leadsto \left(-e\right) \cdot \frac{-1}{\frac{\mathsf{fma}\left(0.16666666666666666 \cdot v, v, 1 + e\right)}{v}} \]
      2. Add Preprocessing

      Alternative 8: 51.3% accurate, 11.3× speedup?

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

        \[\frac{e \cdot \sin v}{1 + e \cdot \cos v} \]
      2. Add Preprocessing
      3. Taylor expanded in v around 0

        \[\leadsto \color{blue}{\frac{e \cdot v}{1 + e}} \]
      4. Step-by-step derivation
        1. associate-*l/N/A

          \[\leadsto \color{blue}{\frac{e}{1 + e} \cdot v} \]
        2. lower-*.f64N/A

          \[\leadsto \color{blue}{\frac{e}{1 + e} \cdot v} \]
        3. lower-/.f64N/A

          \[\leadsto \color{blue}{\frac{e}{1 + e}} \cdot v \]
        4. lower-+.f6449.2

          \[\leadsto \frac{e}{\color{blue}{1 + e}} \cdot v \]
      5. Applied rewrites49.2%

        \[\leadsto \color{blue}{\frac{e}{1 + e} \cdot v} \]
      6. Step-by-step derivation
        1. Applied rewrites49.2%

          \[\leadsto \frac{e \cdot v}{\color{blue}{1 + e}} \]
        2. Add Preprocessing

        Alternative 9: 51.3% accurate, 11.3× speedup?

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

          \[\frac{e \cdot \sin v}{1 + e \cdot \cos v} \]
        2. Add Preprocessing
        3. Taylor expanded in v around 0

          \[\leadsto \color{blue}{\frac{e \cdot v}{1 + e}} \]
        4. Step-by-step derivation
          1. associate-*l/N/A

            \[\leadsto \color{blue}{\frac{e}{1 + e} \cdot v} \]
          2. lower-*.f64N/A

            \[\leadsto \color{blue}{\frac{e}{1 + e} \cdot v} \]
          3. lower-/.f64N/A

            \[\leadsto \color{blue}{\frac{e}{1 + e}} \cdot v \]
          4. lower-+.f6449.2

            \[\leadsto \frac{e}{\color{blue}{1 + e}} \cdot v \]
        5. Applied rewrites49.2%

          \[\leadsto \color{blue}{\frac{e}{1 + e} \cdot v} \]
        6. Add Preprocessing

        Alternative 10: 50.9% accurate, 11.8× speedup?

        \[\begin{array}{l} \\ \mathsf{fma}\left(\left(-e\right) \cdot v, e, e \cdot v\right) \end{array} \]
        (FPCore (e v) :precision binary64 (fma (* (- e) v) e (* e v)))
        double code(double e, double v) {
        	return fma((-e * v), e, (e * v));
        }
        
        function code(e, v)
        	return fma(Float64(Float64(-e) * v), e, Float64(e * v))
        end
        
        code[e_, v_] := N[(N[((-e) * v), $MachinePrecision] * e + N[(e * v), $MachinePrecision]), $MachinePrecision]
        
        \begin{array}{l}
        
        \\
        \mathsf{fma}\left(\left(-e\right) \cdot v, e, e \cdot v\right)
        \end{array}
        
        Derivation
        1. Initial program 99.8%

          \[\frac{e \cdot \sin v}{1 + e \cdot \cos v} \]
        2. Add Preprocessing
        3. Taylor expanded in v around 0

          \[\leadsto \color{blue}{\frac{e \cdot v}{1 + e}} \]
        4. Step-by-step derivation
          1. associate-*l/N/A

            \[\leadsto \color{blue}{\frac{e}{1 + e} \cdot v} \]
          2. lower-*.f64N/A

            \[\leadsto \color{blue}{\frac{e}{1 + e} \cdot v} \]
          3. lower-/.f64N/A

            \[\leadsto \color{blue}{\frac{e}{1 + e}} \cdot v \]
          4. lower-+.f6449.2

            \[\leadsto \frac{e}{\color{blue}{1 + e}} \cdot v \]
        5. Applied rewrites49.2%

          \[\leadsto \color{blue}{\frac{e}{1 + e} \cdot v} \]
        6. Taylor expanded in e around 0

          \[\leadsto e \cdot \color{blue}{\left(v + -1 \cdot \left(e \cdot v\right)\right)} \]
        7. Step-by-step derivation
          1. Applied rewrites48.7%

            \[\leadsto \mathsf{fma}\left(-v, e, v\right) \cdot \color{blue}{e} \]
          2. Step-by-step derivation
            1. Applied rewrites48.7%

              \[\leadsto \mathsf{fma}\left(\left(-e\right) \cdot v, e, e \cdot v\right) \]
            2. Add Preprocessing

            Alternative 11: 50.9% accurate, 16.1× speedup?

            \[\begin{array}{l} \\ \mathsf{fma}\left(-v, e, v\right) \cdot e \end{array} \]
            (FPCore (e v) :precision binary64 (* (fma (- v) e v) e))
            double code(double e, double v) {
            	return fma(-v, e, v) * e;
            }
            
            function code(e, v)
            	return Float64(fma(Float64(-v), e, v) * e)
            end
            
            code[e_, v_] := N[(N[((-v) * e + v), $MachinePrecision] * e), $MachinePrecision]
            
            \begin{array}{l}
            
            \\
            \mathsf{fma}\left(-v, e, v\right) \cdot e
            \end{array}
            
            Derivation
            1. Initial program 99.8%

              \[\frac{e \cdot \sin v}{1 + e \cdot \cos v} \]
            2. Add Preprocessing
            3. Taylor expanded in v around 0

              \[\leadsto \color{blue}{\frac{e \cdot v}{1 + e}} \]
            4. Step-by-step derivation
              1. associate-*l/N/A

                \[\leadsto \color{blue}{\frac{e}{1 + e} \cdot v} \]
              2. lower-*.f64N/A

                \[\leadsto \color{blue}{\frac{e}{1 + e} \cdot v} \]
              3. lower-/.f64N/A

                \[\leadsto \color{blue}{\frac{e}{1 + e}} \cdot v \]
              4. lower-+.f6449.2

                \[\leadsto \frac{e}{\color{blue}{1 + e}} \cdot v \]
            5. Applied rewrites49.2%

              \[\leadsto \color{blue}{\frac{e}{1 + e} \cdot v} \]
            6. Taylor expanded in e around 0

              \[\leadsto e \cdot \color{blue}{\left(v + -1 \cdot \left(e \cdot v\right)\right)} \]
            7. Step-by-step derivation
              1. Applied rewrites48.7%

                \[\leadsto \mathsf{fma}\left(-v, e, v\right) \cdot \color{blue}{e} \]
              2. Add Preprocessing

              Alternative 12: 50.4% accurate, 37.5× speedup?

              \[\begin{array}{l} \\ e \cdot v \end{array} \]
              (FPCore (e v) :precision binary64 (* e v))
              double code(double e, double v) {
              	return e * v;
              }
              
              real(8) function code(e, v)
                  real(8), intent (in) :: e
                  real(8), intent (in) :: v
                  code = e * v
              end function
              
              public static double code(double e, double v) {
              	return e * v;
              }
              
              def code(e, v):
              	return e * v
              
              function code(e, v)
              	return Float64(e * v)
              end
              
              function tmp = code(e, v)
              	tmp = e * v;
              end
              
              code[e_, v_] := N[(e * v), $MachinePrecision]
              
              \begin{array}{l}
              
              \\
              e \cdot v
              \end{array}
              
              Derivation
              1. Initial program 99.8%

                \[\frac{e \cdot \sin v}{1 + e \cdot \cos v} \]
              2. Add Preprocessing
              3. Taylor expanded in v around 0

                \[\leadsto \color{blue}{\frac{e \cdot v}{1 + e}} \]
              4. Step-by-step derivation
                1. associate-*l/N/A

                  \[\leadsto \color{blue}{\frac{e}{1 + e} \cdot v} \]
                2. lower-*.f64N/A

                  \[\leadsto \color{blue}{\frac{e}{1 + e} \cdot v} \]
                3. lower-/.f64N/A

                  \[\leadsto \color{blue}{\frac{e}{1 + e}} \cdot v \]
                4. lower-+.f6449.2

                  \[\leadsto \frac{e}{\color{blue}{1 + e}} \cdot v \]
              5. Applied rewrites49.2%

                \[\leadsto \color{blue}{\frac{e}{1 + e} \cdot v} \]
              6. Taylor expanded in e around 0

                \[\leadsto e \cdot \color{blue}{v} \]
              7. Step-by-step derivation
                1. Applied rewrites48.1%

                  \[\leadsto e \cdot \color{blue}{v} \]
                2. Add Preprocessing

                Reproduce

                ?
                herbie shell --seed 2024307 
                (FPCore (e v)
                  :name "Trigonometry A"
                  :precision binary64
                  :pre (and (<= 0.0 e) (<= e 1.0))
                  (/ (* e (sin v)) (+ 1.0 (* e (cos v)))))