\[\frac{x - \sin x}{x - \tan x}\]
Test:
NMSE problem 3.4.5
Bits:
128 bits
Bits error versus x
Time: 19.2 s
Input Error: 30.8
Output Error: 30.8
Log:
Profile: 🕒
\(\frac{x}{x - \tan x} - \frac{\sin x}{x - \tan x}\)
  1. Started with
    \[\frac{x - \sin x}{x - \tan x}\]
    30.8
  2. Using strategy rm
    30.8
  3. Applied div-sub to get
    \[\color{red}{\frac{x - \sin x}{x - \tan x}} \leadsto \color{blue}{\frac{x}{x - \tan x} - \frac{\sin x}{x - \tan x}}\]
    30.8

Original test:


(lambda ((x default))
  #:name "NMSE problem 3.4.5"
  (/ (- x (sin x)) (- x (tan x))))