Cubic Equation Solver
Solve cubic equations ax³ + bx² + cx + d = 0 with detailed steps, discriminant analysis, and root verification.
API Documentation
Request Endpoint
POST /en/api/tools/cubic-equation-solver
Request Parameters
| Parameter Name | Type | Required | Description |
|---|---|---|---|
| inputFormat | select | Yes | - |
| a | text | Yes | - |
| b | number | Yes | - |
| c | number | Yes | - |
| d | number | Yes | - |
| precision | number | No | - |
| showSteps | checkbox | No | - |
| showVerification | checkbox | No | - |
| showFactorization | checkbox | No | - |
Response Format
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}
JSON Data:
JSON Data
AI MCP Documentation
Add this tool to your MCP server configuration:
{
"mcpServers": {
"elysiatools-cubic-equation-solver": {
"name": "cubic-equation-solver",
"description": "Solve cubic equations ax³ + bx² + cx + d = 0 with detailed steps, discriminant analysis, and root verification.",
"baseUrl": "https://elysiatools.com/mcp/sse?toolId=cubic-equation-solver",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}
You can chain multiple tools, e.g.: `https://elysiatools.com/mcp/sse?toolId=png-to-webp,jpg-to-webp,gif-to-webp`, max 20 tools.
If you encounter any issues, please contact us at [email protected]