present_value
Calculate the current worth of a future sum of money using discount rate and time periods for financial planning and investment analysis.
Instructions
Calculate present value of future amount
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| futureValue | Yes | ||
| periods | Yes | ||
| rate | Yes |
Input Schema (JSON Schema)
{
"properties": {
"futureValue": {
"type": "number"
},
"periods": {
"type": "number"
},
"rate": {
"type": "number"
}
},
"required": [
"futureValue",
"rate",
"periods"
],
"type": "object"
}