calculate_percentage
Calculate a percentage of any given value using this mathematical tool. Input the base value and percentage to get the calculated result.
Instructions
Calculate a percentage of a value.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
percentage | Yes | ||
value | Yes |
Input Schema (JSON Schema)
{
"properties": {
"percentage": {
"title": "Percentage",
"type": "number"
},
"value": {
"title": "Value",
"type": "number"
}
},
"required": [
"value",
"percentage"
],
"type": "object"
}