Arithmetic Calculator
Evaluates arithmetic expressions and returns full intermediate work.
Run tool
Form input
Direct JSON or Markdown
Submit JSON directly or Markdown that can be converted into JSON.
Work steps
Inputs
| Name | Type | Required | Description |
|---|---|---|---|
expression | text | Yes | Expression |
Outputs
| Name | Type | Description |
|---|---|---|
result | integer | Result |
tokens | any | Tokens |
rpn | any | Rpn |
work | array | Work |
Sample request
{
"expression": "(12345 * 88) / 4"
}