Math Function Graph

Description: Visualizes mathematical functions and equations with interactive graphs.

API Response Structure:

{
  "function": {
    "expression": "y = x^2",
    "domain": {
      "min": -10,
      "max": 10
    },
    "range": {
      "min": 0,
      "max": 100
    }
  },
  "points": [
    {
      "x": 0,
      "y": 0
    },
    {
      "x": 1,
      "y": 1
    }
  ],
  "properties": {
    "vertex": "(0,0)",
    "symmetry": "y-axis",
    "type": "parabola"
  },
  "type": "instantAnswers",
  "configType": "mathFunctionGraph"
}

Fields:

  • function (object): Function information

    • expression (string): Mathematical expression

    • domain (object): X-axis range

    • range (object): Y-axis range

  • points (array): Key points on graph

    • x (number): X coordinate

    • y (number): Y coordinate

  • properties (object): Function properties

  • type (string): Always "instantAnswers"

  • configType (string): Always "mathFunctionGraph"