MCPcopy Create free account
hub / github.com/cortex-js/compute-engine / expandHyperbolicToExp

Function expandHyperbolicToExp

src/compute-engine/rubi/rubi-utils.ts:3722–3727  ·  view source on GitHub ↗
(
  ce: ComputeEngine,
  u: Expression
)

Source from the content-addressed store, hash-verified

3720 if (w.operator === 'Add' && w.ops) {
3721 return w.ops
3722 .map((t) => foeFunctionAux(ce.function('Power', [G, t]), x, st))
3723 .reduce((a, b) => a.mul(b));
3724 }
3725 }
3726
3727 if (HYPERBOLIC_HEADS.has(u.operator) && linX(u.ops[0], x)) {
3728 const w = u.ops[0];
3729 const p = safeSimplify(
3730 coeffX(w, x, 1).div(st.base!.ln().mul(coeffX(st.expon!, x, 1)))

Callers 2

rubi-utils.test.tsFile · 0.90
intUncachedMethod · 0.90

Calls 2

deepExpandFunction · 0.85
hyperbolicToExpFunction · 0.85

Tested by

no test coverage detected