plot_multiple_functions
Plot multiple mathematical functions on a single graph to compare relationships, analyze intersections, and visualize mathematical concepts simultaneously.
Instructions
Plots multiple functions on the same graph.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
formulas | Yes | ||
x_range | No | ||
y_range | No |
Input Schema (JSON Schema)
{
"properties": {
"formulas": {
"items": {
"type": "string"
},
"title": "Formulas",
"type": "array"
},
"x_range": {
"anyOf": [
{
"items": {
"type": "number"
},
"type": "array"
},
{
"type": "null"
}
],
"default": [
-10,
10
],
"title": "X Range"
},
"y_range": {
"anyOf": [
{
"items": {
"type": "number"
},
"type": "array"
},
{
"type": "null"
}
],
"default": null,
"title": "Y Range"
}
},
"required": [
"formulas"
],
"type": "object"
}