asE method

Expression asE()

Returns the exponential form of this operation. E.g. x^4 = e^(4*ln(x))

This method is used to determine the derivation of a power expression.

Implementation

Expression asE() => Exponential(second * Ln(first));