Divide Variadic
What It Does
Performs sequential division of multiple numbers, starting with the first value and dividing by each subsequent value. Unlike the basic Divide node which has fixed inputs, this node can accept any number of values for division.
Inputs
| Name | Description | Type | Required |
|---|---|---|---|
| inputs | The list of numbers to divide sequentially | List | No |
Outputs
| Name | Description | Type |
|---|---|---|
| value | The result of the sequential division | Number |

How to Use It
- Drag the Divide (Variadic) node into your graph.
- Connect any number of numeric values to the "inputs" handle.
- Each connected value will automatically be added to the inputs list.
- Run the graph—the output will be the first value divided by all subsequent values.
- For example, with inputs (
100, 5, 20), the output will be1(100÷5÷20).

Tips
- You need at least one value for the node to work properly.
- Division happens from left to right (first value divided by second, result divided by third, etc.).
- Be careful with zero divisors—dividing by zero will cause errors.
See Also
- Divide: The standard division node with two fixed inputs.
- Multiply Variadic: For multiplying multiple values together.
- Add Variadic: For adding multiple values together.
Use Cases
- Ratio Calculations: Compute ratios involving multiple factors.
- Scaling: Sequentially reduce a value by multiple divisors.
- Unit Conversions: Apply multiple conversion factors in sequence.
- Proportional Distribution: Calculate shares or portions from a total amount.