{
  "capability_id": "math.antilog",
  "tool_id": "anti-log",
  "engine": "antilog",
  "calculation_version": "1.0.5",
  "generated_at": "2026-09-16T22:03:43.777Z",
  "engine_build": "2026-09-10",
  "test_count": 33,
  "passed": 33,
  "failed": 0,
  "tests_summary": {
    "golden": {
      "total": 14,
      "passed": 14
    },
    "boundary": {
      "total": 19,
      "passed": 19
    },
    "property": {
      "total": 0,
      "passed": 0
    }
  },
  "engine_tested": true,
  "expert_reviewed": false,
  "internally_reviewed": false,
  "review_kind": null,
  "source_checked": true,
  "reviewed_by": null,
  "reviewer_role": null,
  "last_reviewed": null,
  "expert_review": {
    "status": "optional_not_performed",
    "reviewer": null,
    "scope": [
      "formula",
      "input semantics",
      "assumptions",
      "limitations",
      "sources",
      "tests"
    ],
    "note": "Domain expert review is optional under CVP (CVP-EXP-01). Absence does not block CVP Verified. See Review policy for supplemental domain assurance."
  },
  "internal_review": {
    "status": "not_applicable",
    "reviewer": null
  },
  "page": "https://www.calculatorx.com/calc/math/anti-log",
  "api": "https://www.calculatorx.com/api/v1/calc/anti-log",
  "schema_input": "https://www.calculatorx.com/schemas/math.antilog.input.json",
  "schema_output": "https://www.calculatorx.com/schemas/math.antilog.output.json",
  "assumptions": [
    "Real arithmetic; base b > 0 and b ≠ 1.",
    "Result x is positive for real y when b > 0."
  ],
  "limitations": [
    "Base must be > 0 and ≠ 1 → INVALID_BASE",
    "Missing y → MISSING_REQUIRED_INPUT; overflow/underflow → RESULT_OVERFLOW / RESULT_UNDERFLOW"
  ],
  "boundary_conditions": [
    "Invalid base (≤ 0 or 1) returns INVALID_BASE.",
    "0 < b < 1 is valid (for example 0.5² = 0.25).",
    "y = 0 returns 1 for every valid base.",
    "Extreme |y| may overflow (RESULT_OVERFLOW) or underflow (RESULT_UNDERFLOW)."
  ],
  "sources": [
    {
      "title": "NIST Digital Library of Mathematical Functions, Chapter 4",
      "section": "Logarithm, Exponential, Powers",
      "url": "https://dlmf.nist.gov/4",
      "supports": "Logarithm and exponential as inverse operations; antilog is exponentiation x = b^y",
      "kind": "reference"
    },
    {
      "title": "NIST DLMF §4.2",
      "section": "Logarithm: definitions and inverse of the exponential",
      "url": "https://dlmf.nist.gov/4.2",
      "supports": "b^(log_b x) = x and log_b(b^y) = y for valid real b and x",
      "kind": "reference"
    },
    {
      "title": "CalculatorX mathematical conventions",
      "section": "Common (base 10), natural (base e), and real bases b > 0, b ≠ 1",
      "supports": "Unspecified antilog is common (base 10); custom bases may be in (0, 1)",
      "kind": "definition"
    }
  ],
  "methods": [],
  "fingerprint": "sha256:702267ebeacaaf96d0d5cd571fbad402d9a11466fbb36b528ba29a5a5147f357",
  "tests": [
    {
      "id": "common-3",
      "ok": true,
      "kind": "golden",
      "inputs": {
        "y": 3,
        "base": "10"
      },
      "expect": 1000,
      "expectWarning": null,
      "actual": 1000,
      "tol": 0
    },
    {
      "id": "natural-3",
      "ok": true,
      "kind": "golden",
      "inputs": {
        "y": 3,
        "base": "e"
      },
      "expect": 20.085536923187668,
      "expectWarning": null,
      "actual": 20.085536923187668,
      "tol": 1e-12
    },
    {
      "id": "binary-3",
      "ok": true,
      "kind": "golden",
      "inputs": {
        "y": 3,
        "base": "2"
      },
      "expect": 8,
      "expectWarning": null,
      "actual": 8,
      "tol": 0
    },
    {
      "id": "common-neg2",
      "ok": true,
      "kind": "golden",
      "inputs": {
        "y": -2,
        "base": 10
      },
      "expect": 0.01,
      "expectWarning": null,
      "actual": 0.01,
      "tol": 1e-12
    },
    {
      "id": "custom-8",
      "ok": true,
      "kind": "golden",
      "inputs": {
        "y": 3,
        "b": 8
      },
      "expect": 512,
      "expectWarning": null,
      "actual": 512,
      "tol": 0
    },
    {
      "id": "y-zero",
      "ok": true,
      "kind": "golden",
      "inputs": {
        "y": 0,
        "base": 10
      },
      "expect": 1,
      "expectWarning": null,
      "actual": 1,
      "tol": 0
    },
    {
      "id": "sqrt-10",
      "ok": true,
      "kind": "golden",
      "inputs": {
        "y": 0.5,
        "base": 10
      },
      "expect": 3.1622776601683795,
      "expectWarning": null,
      "actual": 3.1622776601683795,
      "tol": 1e-12
    },
    {
      "id": "base-lt-one",
      "ok": true,
      "kind": "golden",
      "inputs": {
        "y": 2,
        "b": 0.5
      },
      "expect": 0.25,
      "expectWarning": null,
      "actual": 0.25,
      "tol": 0
    },
    {
      "id": "base-lt-one-neg",
      "ok": true,
      "kind": "golden",
      "inputs": {
        "y": -2,
        "b": 0.5
      },
      "expect": 4,
      "expectWarning": null,
      "actual": 4,
      "tol": 0
    },
    {
      "id": "decimal-custom",
      "ok": true,
      "kind": "golden",
      "inputs": {
        "y": 2,
        "b": 1.5
      },
      "expect": 2.25,
      "expectWarning": null,
      "actual": 2.25,
      "tol": 1e-12
    },
    {
      "id": "invalid-base-1",
      "ok": true,
      "kind": "boundary",
      "inputs": {
        "y": 3,
        "b": 1
      },
      "expectError": "INVALID_BASE",
      "code": "INVALID_BASE",
      "error": "Base must be positive and not equal to 1."
    },
    {
      "id": "invalid-base-0",
      "ok": true,
      "kind": "boundary",
      "inputs": {
        "y": 3,
        "b": 0
      },
      "expectError": "INVALID_BASE",
      "code": "INVALID_BASE",
      "error": "Base must be positive and not equal to 1."
    },
    {
      "id": "invalid-base-neg",
      "ok": true,
      "kind": "boundary",
      "inputs": {
        "y": 3,
        "b": -2
      },
      "expectError": "INVALID_BASE",
      "code": "INVALID_BASE",
      "error": "Base must be positive and not equal to 1."
    },
    {
      "id": "empty-y",
      "ok": true,
      "kind": "boundary",
      "inputs": {},
      "expectError": "MISSING_REQUIRED_INPUT",
      "code": "MISSING_REQUIRED_INPUT",
      "error": "Enter a numeric log value y."
    },
    {
      "id": "nan-y",
      "ok": true,
      "kind": "boundary",
      "inputs": {
        "y": "n/a",
        "base": 10
      },
      "expectError": "INVALID_NUMBER",
      "code": "INVALID_NUMBER",
      "error": "Enter a numeric log value y."
    },
    {
      "id": "overflow",
      "ok": true,
      "kind": "boundary",
      "inputs": {
        "y": 400,
        "base": 10
      },
      "expectError": "RESULT_OVERFLOW",
      "code": "RESULT_OVERFLOW",
      "error": "Result overflowed or is undefined for these inputs."
    },
    {
      "id": "underflow",
      "ok": true,
      "kind": "boundary",
      "inputs": {
        "y": -400,
        "base": 10
      },
      "expectError": "RESULT_UNDERFLOW",
      "code": "RESULT_UNDERFLOW",
      "error": "Result underflowed to zero for these inputs."
    },
    {
      "id": "near-base-one",
      "ok": true,
      "kind": "golden",
      "inputs": {
        "y": 2,
        "b": 1.000000000000001
      },
      "expect": 1.000000000000002,
      "expectWarning": null,
      "actual": 1.0000000000000022,
      "tol": 1e-12
    },
    {
      "id": "tiny-positive-base",
      "ok": true,
      "kind": "golden",
      "inputs": {
        "y": 2,
        "b": 1e-100
      },
      "expect": 1e-200,
      "expectWarning": null,
      "actual": 1e-200,
      "tol": 1e-12
    },
    {
      "id": "cube-root-of-two",
      "ok": true,
      "kind": "golden",
      "inputs": {
        "y": 0.3333333333333333,
        "b": 2
      },
      "expect": 1.2599210498948732,
      "expectWarning": null,
      "actual": 1.2599210498948732,
      "tol": 1e-12
    },
    {
      "id": "large-finite",
      "ok": true,
      "kind": "golden",
      "inputs": {
        "y": 308,
        "base": 10
      },
      "expect": 1e+308,
      "expectWarning": null,
      "actual": 1e+308,
      "tol": 1e-12
    },
    {
      "id": "overflow-309",
      "ok": true,
      "kind": "boundary",
      "inputs": {
        "y": 309,
        "base": 10
      },
      "expectError": "RESULT_OVERFLOW",
      "code": "RESULT_OVERFLOW",
      "error": "Result overflowed or is undefined for these inputs."
    },
    {
      "id": "y-infinity",
      "ok": true,
      "kind": "boundary",
      "inputs": {
        "y": "Infinity",
        "base": 10
      },
      "expectError": "INVALID_NUMBER",
      "code": "INVALID_NUMBER",
      "error": "Enter a numeric log value y."
    },
    {
      "id": "y-nan",
      "ok": true,
      "kind": "boundary",
      "inputs": {
        "y": "NaN",
        "base": 10
      },
      "expectError": "INVALID_NUMBER",
      "code": "INVALID_NUMBER",
      "error": "Enter a numeric log value y."
    },
    {
      "id": "y-abc",
      "ok": true,
      "kind": "boundary",
      "inputs": {
        "y": "abc",
        "base": 10
      },
      "expectError": "INVALID_NUMBER",
      "code": "INVALID_NUMBER",
      "error": "Enter a numeric log value y."
    },
    {
      "id": "y-whitespace",
      "ok": true,
      "kind": "boundary",
      "inputs": {
        "y": "   ",
        "base": 10
      },
      "expectError": "MISSING_REQUIRED_INPUT",
      "code": "MISSING_REQUIRED_INPUT",
      "error": "Enter a numeric log value y."
    },
    {
      "id": "y-null",
      "ok": true,
      "kind": "boundary",
      "inputs": {
        "y": null,
        "base": 10
      },
      "expectError": "MISSING_REQUIRED_INPUT",
      "code": "MISSING_REQUIRED_INPUT",
      "error": "Enter a numeric log value y."
    },
    {
      "id": "y-object",
      "ok": true,
      "kind": "boundary",
      "inputs": {
        "y": {},
        "base": 10
      },
      "expectError": "INVALID_NUMBER",
      "code": "INVALID_NUMBER",
      "error": "Enter a numeric log value y."
    },
    {
      "id": "y-array",
      "ok": true,
      "kind": "boundary",
      "inputs": {
        "y": [],
        "base": 10
      },
      "expectError": "INVALID_NUMBER",
      "code": "INVALID_NUMBER",
      "error": "Enter a numeric log value y."
    },
    {
      "id": "y-boolean",
      "ok": true,
      "kind": "boundary",
      "inputs": {
        "y": true,
        "base": 10
      },
      "expectError": "INVALID_NUMBER",
      "code": "INVALID_NUMBER",
      "error": "Enter a numeric log value y."
    },
    {
      "id": "b-object",
      "ok": true,
      "kind": "boundary",
      "inputs": {
        "y": 3,
        "b": {}
      },
      "expectError": "INVALID_NUMBER",
      "code": "INVALID_NUMBER",
      "error": "Base must be a finite number."
    },
    {
      "id": "b-array",
      "ok": true,
      "kind": "boundary",
      "inputs": {
        "y": 3,
        "b": []
      },
      "expectError": "INVALID_NUMBER",
      "code": "INVALID_NUMBER",
      "error": "Base must be a finite number."
    },
    {
      "id": "boundary-antilog-base1",
      "ok": true,
      "kind": "boundary",
      "inputs": {
        "y": 2,
        "b": 1
      },
      "expectError": "INVALID_BASE",
      "code": "INVALID_BASE",
      "error": "Base must be positive and not equal to 1."
    }
  ],
  "tier": "engine_tested",
  "verification": {
    "tests": {
      "passed": 33,
      "total": 33,
      "golden": 14,
      "boundary": 19,
      "property": 0
    },
    "contract_checks": {
      "passed": 3,
      "total": 3
    }
  },
  "evidence_core_generated_at": "2026-09-10T22:48:17.762Z",
  "rendered_at": "2026-09-16T22:03:43.777Z",
  "release_integrity": {
    "status": "verified",
    "scope": "workspace",
    "production_attestation_required": true,
    "calculation_version": "1.0.5",
    "artifacts": {
      "engine": "1.0.5",
      "page": "1.0.5",
      "capability": "1.0.5",
      "evidence": "1.0.5",
      "input_schema": "1.0.5",
      "output_schema": "1.0.5",
      "mcp_contract": "1.0.5"
    },
    "digests": {
      "input_schema_sha256": "ca2f636e063d56b28b6c2ea91cdd6f0b12dac4cb733d0753a95c4ad5eb4d5c8a",
      "output_schema_sha256": "db21f4c6728a4d6f7645e8813c2c2e93ece17365ff8900c2c2245de3eaa078e6",
      "evidence_sha256": "32982848ff8d89683acb0ddc41be9b8e87df268d3f0165aa7005f125bea980a8",
      "evidence_core_sha256": "32982848ff8d89683acb0ddc41be9b8e87df268d3f0165aa7005f125bea980a8",
      "capability_sha256": "4ad8ed2b8cc62522351554285749e1fae2ca32641835b0d8c7d5d6b348f60d59",
      "engine_sha256": "c8d4ccdbfeaf61d7b024d4e1babb0c2ba3b324c1b37bd0cb456a526d8d2b1bd1",
      "mcp_contract_sha256": "863098b311a7b17dc4b229a6302b90b3545b175f716e5d84772c7be8e9716b86"
    },
    "contract_checks": {
      "total": 3,
      "passed": 3,
      "failed": 0,
      "items": [
        {
          "id": "release-artifacts-aligned",
          "status": "pass",
          "detail": "1.0.5"
        },
        {
          "id": "schema-valid-input-executes",
          "status": "pass"
        },
        {
          "id": "engine-success-output-validates-schema",
          "status": "pass"
        }
      ]
    },
    "report": "https://www.calculatorx.com/.well-known/calculatorx-release-integrity.json"
  }
}
