{
  "capability_id": "math.scientific_notation",
  "tool_id": "scientific-notation",
  "engine": "scientific-notation",
  "calculation_version": "2.0.0",
  "generated_at": "2026-09-22T09:23:10.126Z",
  "engine_build": "2026-09-21",
  "test_count": 6,
  "passed": 6,
  "failed": 0,
  "tests_summary": {
    "golden": {
      "total": 4,
      "passed": 4
    },
    "boundary": {
      "total": 2,
      "passed": 2
    },
    "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/scientific-notation",
  "api": "https://www.calculatorx.com/api/v1/calc/scientific-notation",
  "schema_input": "https://www.calculatorx.com/schemas/math.scientific_notation.input.json",
  "schema_output": "https://www.calculatorx.com/schemas/math.scientific_notation.output.json",
  "assumptions": [
    "Finite IEEE-754 binary64 values. Inputs outside the supported floating-point range are rejected or reported as overflow/underflow. Very large/small in-range values use exponential display.",
    "UI, share URLs, REST, and validation cases all call this same engine."
  ],
  "limitations": [
    "Canonical Agent modes are convert / engineering / normalize / operate. dec-sci, sci-dec, numInput, coefInput, expInput, aInput, bInput are URL/engine adapter aliases, not the Agent contract.",
    "Missing/invalid numbers → INVALID_NUMBER / MISSING_REQUIRED_INPUT",
    "Division by zero in operate → DIVISION_BY_ZERO"
  ],
  "boundary_conditions": [
    "Division by zero rejected (DIVISION_BY_ZERO)",
    "Empty or unparsable input rejected (MISSING_REQUIRED_INPUT / INVALID_NUMBER)",
    "Inputs outside the IEEE-754 binary64 range rejected (RESULT_OVERFLOW / RESULT_UNDERFLOW)",
    "Zero is returned as 0, not A × 10ⁿ with 1 ≤ |A| < 10"
  ],
  "sources": [
    {
      "title": "OpenStax Elementary Algebra 2e — Scientific Notation",
      "section": "5.2 An application of exponents: scientific notation",
      "url": "https://openstax.org/books/elementary-algebra-2e/pages/5-2-an-application-of-exponents-scientific-notation",
      "supports": "A number in scientific notation is written A × 10ⁿ with 1 ≤ |A| < 10 and integer n; 0 is the exception",
      "kind": "reference",
      "accessed": "2026-08-30"
    },
    {
      "title": "BIPM SI Brochure (9th edition)",
      "section": "Table 8 — SI prefixes (powers of 10³)",
      "url": "https://www.bipm.org/en/publications/si-brochure",
      "supports": "Engineering notation uses exponents that are multiples of 3 so values line up with SI prefixes",
      "kind": "standard",
      "accessed": "2026-08-30"
    },
    {
      "title": "NIST SI prefixes",
      "section": "SI prefixes from 10⁻³⁰ to 10³⁰",
      "url": "https://www.nist.gov/pml/owm/metric-si-prefixes",
      "supports": "Prefix names (milli, micro, kilo, mega, …) attached to engineering exponents",
      "kind": "standard",
      "accessed": "2026-08-30"
    }
  ],
  "methods": [
    "IEEE-754 binary64 parse of decimal / E-notation / A×10ⁿ",
    "Normalize via Number#toExponential; engineering exponent ≡ 0 (mod 3)",
    "Test suites are not interchangeable: 20 published examples on this page · 124 automated engine checks (IUT) · CVP verification suite on Evidence (Manifest is the verification source of truth)"
  ],
  "fingerprint": "sha256:79247c5984f5620b9ef17a07db08f7fdd75ab6ca22af81c141e7b444cc23c9b9",
  "tests": [
    {
      "id": "convert-12300",
      "ok": true,
      "kind": "golden",
      "inputs": {
        "mode": "convert",
        "value": 12300
      },
      "expect": {
        "coef": 1.23,
        "exp": 4
      },
      "expectWarning": null,
      "actual": {
        "mode": "convert",
        "calculation_version": "2.0.0",
        "heading": "Scientific notation",
        "value": "1.23 × 10⁴",
        "scientific": "1.23 × 10⁴",
        "e_notation": "1.23e4",
        "engineering": "12.3 × 10³",
        "decimal": "12300",
        "order": 4,
        "si": "kilo (k)",
        "coef": 1.23,
        "exp": 4,
        "eng_coef": 12.3,
        "eng_exp": 3,
        "parsed": 12300,
        "input": "12300",
        "inputs_summary": "12300",
        "mode_label": "Convert",
        "formula": "x = A × 10ⁿ, 1 ≤ |A| < 10, for x ≠ 0",
        "explainer": "1.23e4 · eng 12.3 × 10³ · order 4",
        "steps": [
          "Input: 12300",
          "Parsed value: 12300",
          "Scientific: 1.23 × 10⁴   (1 ≤ |A| < 10)",
          "E-notation: 1.23e4",
          "Engineering: 12.3 × 10³   · SI: kilo (k)",
          "Order of magnitude: 4",
          "Real / standard: 12300",
          "Decimal shift: move point 4 place(s) left to get 1.23."
        ],
        "equivalents": [
          [
            "Scientific",
            "1.23 × 10⁴"
          ],
          [
            "E notation",
            "1.23e4"
          ],
          [
            "Engineering",
            "12.3 × 10³"
          ],
          [
            "Decimal",
            "12300"
          ]
        ]
      },
      "tol": 1e-12
    },
    {
      "id": "convert-1",
      "ok": true,
      "kind": "golden",
      "inputs": {
        "mode": "convert",
        "value": 1
      },
      "expect": {
        "coef": 1,
        "exp": 0
      },
      "expectWarning": null,
      "actual": {
        "mode": "convert",
        "calculation_version": "2.0.0",
        "heading": "Scientific notation",
        "value": "1 × 10⁰",
        "scientific": "1 × 10⁰",
        "e_notation": "1e0",
        "engineering": "1 × 10⁰",
        "decimal": "1",
        "order": 0,
        "si": "(unit)",
        "coef": 1,
        "exp": 0,
        "eng_coef": 1,
        "eng_exp": 0,
        "parsed": 1,
        "input": "1",
        "inputs_summary": "1",
        "mode_label": "Convert",
        "formula": "x = A × 10ⁿ, 1 ≤ |A| < 10, for x ≠ 0",
        "explainer": "1e0 · eng 1 × 10⁰ · order 0",
        "steps": [
          "Input: 1",
          "Parsed value: 1",
          "Scientific: 1 × 10⁰   (1 ≤ |A| < 10)",
          "E-notation: 1e0",
          "Engineering: 1 × 10⁰   · SI: (unit)",
          "Order of magnitude: 0",
          "Real / standard: 1"
        ],
        "equivalents": [
          [
            "Scientific",
            "1 × 10⁰"
          ],
          [
            "E notation",
            "1e0"
          ],
          [
            "Engineering",
            "1 × 10⁰"
          ],
          [
            "Decimal",
            "1"
          ]
        ]
      },
      "tol": 0
    },
    {
      "id": "convert-zero",
      "ok": true,
      "kind": "golden",
      "inputs": {
        "mode": "convert",
        "value": 0
      },
      "expect": {
        "coef": 0,
        "exp": 0
      },
      "expectWarning": null,
      "actual": {
        "mode": "convert",
        "calculation_version": "2.0.0",
        "heading": "Scientific notation",
        "value": "0",
        "scientific": "0",
        "e_notation": "0e0",
        "engineering": "0",
        "decimal": "0",
        "order": 0,
        "si": "(unit)",
        "coef": 0,
        "exp": 0,
        "eng_coef": 0,
        "eng_exp": 0,
        "parsed": 0,
        "input": "0",
        "inputs_summary": "0",
        "mode_label": "Convert",
        "formula": "0 → 0",
        "explainer": "0e0 · eng 0 · order 0",
        "steps": [
          "Input: 0",
          "Parsed value: 0",
          "Scientific: 0   (zero is not written as A × 10ⁿ with 1 ≤ |A| < 10)",
          "E-notation: 0e0",
          "Engineering: 0   · SI: (unit)",
          "Order of magnitude: 0",
          "Real / standard: 0"
        ],
        "equivalents": [
          [
            "Scientific",
            "0"
          ],
          [
            "E notation",
            "0e0"
          ],
          [
            "Engineering",
            "0"
          ],
          [
            "Decimal",
            "0"
          ]
        ]
      },
      "tol": 0
    },
    {
      "id": "sci-dec-basic",
      "ok": true,
      "kind": "golden",
      "inputs": {
        "mode": "sci-dec",
        "coef": 3.5,
        "exp": 2
      },
      "expect": 350,
      "expectWarning": null,
      "actual": 350,
      "tol": 0
    },
    {
      "id": "bad-mode",
      "ok": true,
      "kind": "boundary",
      "inputs": {
        "mode": "nope",
        "value": 1
      },
      "expectError": "INVALID_MODE",
      "code": "INVALID_MODE",
      "error": "scientificNotation unknown mode: nope"
    },
    {
      "id": "missing-value",
      "ok": true,
      "kind": "boundary",
      "inputs": {
        "mode": "dec-sci"
      },
      "expectError": "INVALID_NUMBER",
      "code": "INVALID_NUMBER",
      "error": "invalid decimal: undefined"
    }
  ],
  "tier": "engine_tested",
  "verification": {
    "tests": {
      "passed": 6,
      "total": 6,
      "golden": 4,
      "boundary": 2,
      "property": 0
    },
    "contract_checks": {
      "passed": 6,
      "total": 6
    }
  },
  "evidence_core_generated_at": "2026-09-21T23:43:55.706Z",
  "rendered_at": "2026-09-22T09:23:10.126Z",
  "release_integrity": {
    "status": "verified",
    "scope": "workspace",
    "production_attestation_required": true,
    "calculation_version": "2.0.0",
    "artifacts": {
      "engine": "2.0.0",
      "page": "2.0.0",
      "capability": "2.0.0",
      "evidence": "2.0.0",
      "input_schema": "2.0.0",
      "output_schema": "2.0.0",
      "mcp_contract": "2.0.0"
    },
    "digests": {
      "input_schema_sha256": "5ba7e76cf93a3dbf7078ca878350bfbb77e766b6e082ecd50e24931c503afcbf",
      "output_schema_sha256": "0c7f5fc2cc591d304952aa956c6d9b2ffd9e642143d9bb19fd56db601ebc4586",
      "evidence_sha256": "311d1d9917e50a74fad66753577e8597151134004c304d1cba67fd91f4e86e3c",
      "evidence_core_sha256": "311d1d9917e50a74fad66753577e8597151134004c304d1cba67fd91f4e86e3c",
      "capability_sha256": "c636fd490278661acefcfbb2b045a3e44010b32fafbce8b3e32f5d4be1c22905",
      "engine_sha256": "925bd3b9c373f747a10f30cedc6352b3f419cf91144ae6744c9c9adcd703033c",
      "mcp_contract_sha256": "02d26265dfc854a71362cbfaf08a75e5732029f2ea54230bc93c34bf6cfd507a"
    },
    "contract_checks": {
      "total": 6,
      "passed": 6,
      "failed": 0,
      "items": [
        {
          "id": "release-artifacts-aligned",
          "status": "pass",
          "detail": "2.0.0"
        },
        {
          "id": "schema-output-required-declared",
          "status": "pass"
        },
        {
          "id": "schema-valid-input-executes",
          "status": "pass"
        },
        {
          "id": "engine-success-output-validates-schema",
          "status": "pass"
        },
        {
          "id": "schema-rejects-incomplete-input",
          "status": "pass"
        },
        {
          "id": "rest-success-payload-validates-schema",
          "status": "pass"
        }
      ]
    },
    "report": "https://www.calculatorx.com/.well-known/calculatorx-release-integrity.json"
  }
}
