# EXP
URL: https://docs.valsight.ai/exp/
Description: Returns Euler's number, e (~2.718) raised to a power of the given value, while retaining all dimensions. Use this when you need to compute e raised to the power of node values, for example in continuous growth or compounding models.
**Category:** [Math & numeric](/math-numeric/)

## Overview

The **EXP** function **returns Euler's number, e (\~2.718) raised to a power of the given value**, while retaining all dimensions.

Use this function when you need to compute e raised to the power of node values, for example in continuous growth or compounding models.

## Syntax

`EXP('Node')`

## Parameters

| Parameter | Description                                                                   | Type           | Required |
| --------- | ----------------------------------------------------------------------------- | -------------- | -------- |
| **Node**  | Input node, specified using the node name in single quotes (e.g. `'Profit'`). | Node reference | Yes      |

## Example

### Exponential transformation of node values

This example computes e raised to the power of each value in the input node.

**Input node:** `'A'`

| Year | Value |
| ---- | ----- |
| 2025 | 2     |
| 2026 | 3     |
| 2027 | 4.5   |

**Formula:** `EXP('A')`

| Year | EXP Result |
| ---- | ---------- |
| 2025 | 7.39       |
| 2026 | 20.09      |
| 2027 | 90.02      |

## Related

| Function         | When to use instead                                                        |
| ---------------- | -------------------------------------------------------------------------- |
| [LN](/ln/)       | When you need the natural logarithm (inverse of EXP).                      |
| [LOG](/log/)     | When you need a logarithm with a specific base.                            |
| [POWER](/power/) | When you need to raise values to an arbitrary exponent rather than base e. |
