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.

Source

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