\[\frac{e^{x}}{e^{x} - 1}\]
Test:
NMSE section 3.11
Bits:
128 bits
Bits error versus x
Time: 5.6 s
Input Error: 40.4
Output Error: 0.4
Log:
Profile: 🕒
\(\frac{e^{x}}{(e^{x} - 1)^*}\)
  1. Started with
    \[\frac{e^{x}}{e^{x} - 1}\]
    40.4
  2. Applied simplify to get
    \[\color{red}{\frac{e^{x}}{e^{x} - 1}} \leadsto \color{blue}{\frac{e^{x}}{(e^{x} - 1)^*}}\]
    0.4

Original test:


(lambda ((x default))
  #:name "NMSE section 3.11"
  (/ (exp x) (- (exp x) 1))
  #:target
  (/ 1 (- 1 (exp (- x)))))