> ## Documentation Index
> Fetch the complete documentation index at: https://docs.reelevant.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Divide

> Divide two numbers

## Overview

The `divide` transformation divides the first number by the second number.

## Syntax

```text theme={"theme":{"light":"github-light","dark":"github-dark"}}
divide(<variable 1>, <variable 2>)
```

## Parameters

| Parameter    | Type   | Required | Description                         |
| ------------ | ------ | -------- | ----------------------------------- |
| `variable 1` | number | Yes      | The dividend (number to be divided) |
| `variable 2` | number | Yes      | The divisor (number to divide by)   |

## Examples

```text theme={"theme":{"light":"github-light","dark":"github-dark"}}
divide(<variable 1>, <variable 2>)
```

<Warning>
  Division by zero will result in an error. Ensure the divisor is not zero.
</Warning>
