Function reference · Math

exp

Computes the exponential function e raised to an expression.

exp(x) is represented using Nerdamer's symbolic exponential form. Exact simplifications are applied where available, and numeric inputs can be evaluated.

Examples

These examples use Nerdamer Notation.

Evaluate e^0.

exp(0)
// → 1

Keep a symbolic exponential.

exp(x)

Interfaces

The same operation is available through the interfaces below.

Nerdamer Notation · nerdamer API

Nerdamer Notation

Use this form inside input passed to nerdamer(...).

exp(arg1)

nerdamer.exp

Call the operation through the default nerdamer import.

nerdamer.exp(x: ExpressionInput): Expression

Parameters

NameTypeDescription
xExpressionInputThe exponent expression.

Returns

Expression — The value of e raised to the power `x`.

Browse the nerdamer API →

← Back to Reference