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

Function negSumBaseQ

src/compute-engine/rubi/rubi-utils.ts:1344–1347  ·  view source on GitHub ↗
(u: Expression)

Source from the content-addressed store, hash-verified

1342}
1343
1344/** literal principal root u^(1/n) (Rubi NthRoot) */
1345function nthRoot(u: Expression, n: number): Expression {
1346 const ce = u.engine;
1347 if (n === 1) return u;
1348 return u.pow(ce.expr(['Rational', 1, n]) as Expression).evaluate();
1349}
1350

Callers 1

rtAuxBodyFunction · 0.85

Calls 3

sumBaseTermsFunction · 0.85
negFormQFunction · 0.85
mmaFirstTermFunction · 0.85

Tested by

no test coverage detected