Expression asNaturalLogarithm()

Returns the natural from of this logarithm. E.g. log_10(2) = ln(2) / ln(10)

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

Source

Expression asNaturalLogarithm() => new Ln(arg) / new Ln(base);