Financial Formula Calculator
Evaluates common financial formulas with full substitution steps.
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 |
|---|---|---|---|
mode | text | Yes | Mode |
principal | integer | Yes | Principal |
rate | number | Yes | Rate |
periods | integer | Yes | Periods |
Outputs
| Name | Type | Description |
|---|---|---|
result | number | Result |
schedule | any | Schedule |
work | array | Work |
Sample request
{
"mode": "future_value",
"principal": 1000,
"rate": 0.05,
"periods": 2
}