ExpandTrigReduce[u,x] (2-arg) — the exponential-expansion of u (see the * section comment). Returns a sum the linearity prelude integrates termwise.
(ce: ComputeEngine, u: Expression)
| 3709 | const p = safeSimplify( |
| 3710 | G.ln() |
| 3711 | .mul(coeffX(w, x, 1)) |
| 3712 | .div(st.base!.ln().mul(coeffX(st.expon!, x, 1))) |
| 3713 | ); |
| 3714 | const xp = ce.symbol(x).pow(p); |
| 3715 | // G^(const of w) · x^p when $expon$ has no constant term, else x^p |
| 3716 | return zeroQ(coeffX(st.expon!, x, 0)) |
no test coverage detected