Math
Arcade Optimized
Arcade.dev LLM tools for doing math
Author:Arcade
Version:
1.4.1Auth:No authentication required
23tools
Math Toolkit
The Arcade Math toolkit provides a set of LLM-callable tools for performing mathematical operations, from basic arithmetic to statistical and number-theory calculations.
Capabilities
- Arithmetic & rounding: Add, subtract, multiply, divide, modulus, absolute value, ceiling, floor, and rounding.
- Powers, roots & logarithms: Exponentiation, square root, and logarithm with configurable base.
- Statistics & list operations: Average (mean), median, sum of a list, and sum over a range.
- Number theory: Factorial, greatest common divisor (GCD), and least common multiple (LCM).
- Random number generation: Random integers and floats within caller-specified bounds.
- Angle conversion: Degrees-to-radians and radians-to-degrees conversion.
Auth: None required — no API keys, OAuth tokens, or secrets needed to use this toolkit.
Available tools(23)
23 of 23 tools
Behavior
| Tool name | Description | Secrets | |
|---|---|---|---|
Calculate the absolute value of a number. | |||
Add two numbers together | |||
Calculate the average (mean) of a list of numbers.
Returns "0.0" if the list is empty. | |||
Return the ceiling of a number | |||
Convert an angle from degrees to radians. | |||
Divide two numbers | |||
Compute the factorial of a non-negative integer
Returns "1" for "0" | |||
Return the floor of a number | |||
Calculate the greatest common divisor (GCD) of two integers. | |||
Generate a random float between min_value and max_value. | |||
Generate a random integer between min_value and max_value (inclusive). | |||
Calculate the least common multiple (LCM) of two integers.
Returns "0" if either integer is 0. | |||
Calculate the logarithm of a number with a given base | |||
Calculate the median of a list of numbers.
Returns "0.0" if the list is empty. | |||
Calculate the remainder (modulus) of one number divided by another | |||
Multiply two numbers together | |||
Calculate one number raised to the power of another | |||
Convert an angle from radians to degrees. | |||
Round a number to a specified number of positive digits | |||
Get the square root of a number | |||
Subtract two numbers | |||
Sum all numbers in a list | |||
Sum all numbers from start through end |
Last updated on