# Numora Quadratic Equation Solver

> Numora Quadratic Equation Solver is a paid API for AI agents from numormor.netlify.app, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Solves quadratic equations of the form ax² + bx + c = 0, returning roots and solution details

## Facts

- Endpoint: POST https://numormor.netlify.app/api/solve/quadratic
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/numora-quadratic-equation-solver-338f2a1a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__cyzw6Z8GXaph12k8BbLy

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability numora-quadratic-equation-solver-338f2a1a -d '<json body>'
```

Example prompt: Can you solve the quadratic equation 3x² - 7x + 2 = 0? The coefficients are a=3, b=-7, and c=2.

## When to prefer this

Use this endpoint when an AI agent needs to programmatically solve a quadratic equation (ax²+bx+c=0) without relying on a general-purpose LLM math capability — ideal for deterministic, verifiable results in financial modeling, physics calculations, or algebraic pipelines where correctness is critical. Prefer this over symbolic math libraries when you need a lightweight, dependency-free REST call.

## Known failure modes

- Missing required coefficients a, b, or c returns a 400 error
- Non-numeric coefficient values cause validation failure
- Payment not included or insufficient triggers 402 Payment Required response
- Server or hosting platform downtime returns 5xx errors

## How this service works

100 pure math computation endpoints for AI agents. Statistics, financial math, linear algebra, equation solving, calculus, number theory, sequence generation, and unit conversions. Zero external dependencies. x402 micropayments on Base.

## Output

Returns a JSON object with success=true, a result object containing the computed roots (real or complex) and discriminant, and a human-readable computation string describing what was solved and how.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "a",
  "b",
  "c"
 ],
 "properties": {
  "a": {
   "type": "number"
  },
  "b": {
   "type": "number"
  },
  "c": {
   "type": "number"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "success",
  "result",
  "computation"
 ],
 "properties": {
  "result": {
   "type": "object",
   "description": "Computation result varies by endpoint"
  },
  "success": {
   "type": "boolean",
   "description": "Always true on success"
  },
  "computation": {
   "type": "string",
   "description": "Human-readable description of what was computed"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/numora-quadratic-equation-solver-338f2a1a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from numormor.netlify.app](https://www.zero.xyz/host/numormor.netlify.app/llms.txt)
