\[\frac{\log \left(\sqrt{re \cdot re + im \cdot im}\right) \cdot \log base + \tan^{-1}_* \frac{im}{re} \cdot 0}{\log base \cdot \log base + 0 \cdot 0}\]
Test:
math.log/2 on complex, real part
Bits:
128 bits
Bits error versus re
Bits error versus im
Bits error versus base
Time: 15.2 s
Input Error: 14.7
Output Error: 14.7
Log:
Profile: 🕒
\(\frac{\left(\log base \cdot \log \left(\sqrt[3]{\sqrt{{re}^2 + im \cdot im}}\right) + \log \left(\sqrt[3]{\sqrt{{im}^2 + re \cdot re}}\right) \cdot \left(\log base + \log base\right)\right) + 0}{\log base \cdot \log base}\)
  1. Started with
    \[\frac{\log \left(\sqrt{re \cdot re + im \cdot im}\right) \cdot \log base + \tan^{-1}_* \frac{im}{re} \cdot 0}{\log base \cdot \log base + 0 \cdot 0}\]
    14.7
  2. Applied simplify to get
    \[\color{red}{\frac{\log \left(\sqrt{re \cdot re + im \cdot im}\right) \cdot \log base + \tan^{-1}_* \frac{im}{re} \cdot 0}{\log base \cdot \log base + 0 \cdot 0}} \leadsto \color{blue}{\frac{\log base \cdot \log \left(\sqrt{{re}^2 + im \cdot im}\right) + 0}{\log base \cdot \log base}}\]
    14.7
  3. Using strategy rm
    14.7
  4. Applied add-cube-cbrt to get
    \[\frac{\log base \cdot \log \color{red}{\left(\sqrt{{re}^2 + im \cdot im}\right)} + 0}{\log base \cdot \log base} \leadsto \frac{\log base \cdot \log \color{blue}{\left({\left(\sqrt[3]{\sqrt{{re}^2 + im \cdot im}}\right)}^3\right)} + 0}{\log base \cdot \log base}\]
    14.7
  5. Using strategy rm
    14.7
  6. Applied cube-mult to get
    \[\frac{\log base \cdot \log \color{red}{\left({\left(\sqrt[3]{\sqrt{{re}^2 + im \cdot im}}\right)}^3\right)} + 0}{\log base \cdot \log base} \leadsto \frac{\log base \cdot \log \color{blue}{\left(\sqrt[3]{\sqrt{{re}^2 + im \cdot im}} \cdot \left(\sqrt[3]{\sqrt{{re}^2 + im \cdot im}} \cdot \sqrt[3]{\sqrt{{re}^2 + im \cdot im}}\right)\right)} + 0}{\log base \cdot \log base}\]
    14.7
  7. Applied log-prod to get
    \[\frac{\log base \cdot \color{red}{\log \left(\sqrt[3]{\sqrt{{re}^2 + im \cdot im}} \cdot \left(\sqrt[3]{\sqrt{{re}^2 + im \cdot im}} \cdot \sqrt[3]{\sqrt{{re}^2 + im \cdot im}}\right)\right)} + 0}{\log base \cdot \log base} \leadsto \frac{\log base \cdot \color{blue}{\left(\log \left(\sqrt[3]{\sqrt{{re}^2 + im \cdot im}}\right) + \log \left(\sqrt[3]{\sqrt{{re}^2 + im \cdot im}} \cdot \sqrt[3]{\sqrt{{re}^2 + im \cdot im}}\right)\right)} + 0}{\log base \cdot \log base}\]
    14.7
  8. Applied distribute-lft-in to get
    \[\frac{\color{red}{\log base \cdot \left(\log \left(\sqrt[3]{\sqrt{{re}^2 + im \cdot im}}\right) + \log \left(\sqrt[3]{\sqrt{{re}^2 + im \cdot im}} \cdot \sqrt[3]{\sqrt{{re}^2 + im \cdot im}}\right)\right)} + 0}{\log base \cdot \log base} \leadsto \frac{\color{blue}{\left(\log base \cdot \log \left(\sqrt[3]{\sqrt{{re}^2 + im \cdot im}}\right) + \log base \cdot \log \left(\sqrt[3]{\sqrt{{re}^2 + im \cdot im}} \cdot \sqrt[3]{\sqrt{{re}^2 + im \cdot im}}\right)\right)} + 0}{\log base \cdot \log base}\]
    14.7
  9. Applied simplify to get
    \[\frac{\left(\log base \cdot \log \left(\sqrt[3]{\sqrt{{re}^2 + im \cdot im}}\right) + \color{red}{\log base \cdot \log \left(\sqrt[3]{\sqrt{{re}^2 + im \cdot im}} \cdot \sqrt[3]{\sqrt{{re}^2 + im \cdot im}}\right)}\right) + 0}{\log base \cdot \log base} \leadsto \frac{\left(\log base \cdot \log \left(\sqrt[3]{\sqrt{{re}^2 + im \cdot im}}\right) + \color{blue}{\log \left(\sqrt[3]{\sqrt{im \cdot im + re \cdot re}}\right) \cdot \left(\log base + \log base\right)}\right) + 0}{\log base \cdot \log base}\]
    14.7
  10. Applied simplify to get
    \[\frac{\left(\log base \cdot \log \left(\sqrt[3]{\sqrt{{re}^2 + im \cdot im}}\right) + \color{red}{\log \left(\sqrt[3]{\sqrt{im \cdot im + re \cdot re}}\right)} \cdot \left(\log base + \log base\right)\right) + 0}{\log base \cdot \log base} \leadsto \frac{\left(\log base \cdot \log \left(\sqrt[3]{\sqrt{{re}^2 + im \cdot im}}\right) + \color{blue}{\log \left(\sqrt[3]{\sqrt{{im}^2 + re \cdot re}}\right)} \cdot \left(\log base + \log base\right)\right) + 0}{\log base \cdot \log base}\]
    14.7

Original test:


(lambda ((re default) (im default) (base default))
  #:name "math.log/2 on complex, real part"
  (/ (+ (* (log (sqrt (+ (* re re) (* im im)))) (log base)) (* (atan2 im re) 0)) (+ (* (log base) (log base)) (* 0 0))))