volume
Calculate the volume of revolution around the x-axis by providing a mathematical expression and specifying the start and end points for integration.
Instructions
Calculate the volume of revolution around x-axis
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| end | Yes | ||
| expression | Yes | ||
| start | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": true,
"properties": {
"end": {
"type": "number"
},
"expression": {
"type": "string"
},
"start": {
"type": "number"
}
},
"required": [
"expression",
"start",
"end"
],
"type": "object"
}