hesaplayıcı
Menu

Square Root Calculator: API and MCP

Square Root Calculator over REST and MCP: input fields, limits, outputs, one example request and its real answer. Free, no sign-up.

GET /api/v1/tools/math.square-root/mcp/math

Id
math.square-root
Version
1.0.0
Access
Free
Tool page
Square Root Calculator
Schema
GET /api/v1/tools/math.square-root

Input

FieldTypeConstraintsDefaultDescription
x (required)number≥ 0, ≤ 1,000,000,000,000Number

Output

FieldTypeDescription
rootnumberSquare root
coefficientnumberCoefficient outside the root (a)
radicandnumberNumber under the root (b)
notSimplifiedbooleanThe number is not whole, so the root is not simplified: a = 1 and b is the number itself.

Example request

{
  "input": {
    "x": 72
  },
  "locale": "en"
}
Example answer
{
  "output": {
    "root": 8.48528137423857,
    "coefficient": 6,
    "radicand": 2,
    "notSimplified": false
  },
  "steps": [
    {
      "id": "root",
      "formula": "root = √x",
      "substitution": "root = √72",
      "value": 8.48528137423857
    },
    {
      "id": "simplified",
      "formula": "√x = a × √b, a² × b = x",
      "substitution": "√72 = √(6² × 2) = 6 × √2",
      "value": 8.48528137423857
    }
  ],
  "meta": {
    "toolVersion": "1.0.0",
    "locale": "en"
  },
  "citation": {
    "url": "https://hesaplayici.com/en/math/square-root-calculator",
    "title": "Square Root Calculator"
  }
}