{
  "capability_id": "engineering.measurement.precision",
  "tool_id": "precision",
  "engine": "precision",
  "calculation_version": "1.0.0",
  "generated_at": "2026-09-16T22:03:43.738Z",
  "engine_build": "2026-09-15",
  "test_count": 11,
  "passed": 11,
  "failed": 0,
  "tests_summary": {
    "golden": {
      "total": 0,
      "passed": 0
    },
    "boundary": {
      "total": 6,
      "passed": 6
    },
    "property": {
      "total": 5,
      "passed": 5
    }
  },
  "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/engineering/precision",
  "api": "https://www.calculatorx.com/api/v1/calc/precision",
  "schema_input": "https://www.calculatorx.com/schemas/engineering.measurement.precision.input.json",
  "schema_output": "https://www.calculatorx.com/schemas/engineering.measurement.precision.output.json",
  "assumptions": [
    "ISO 5725 repeatability: s from summarizeSample, CV = s/|x̄| when x̄ ≠ 0, r = 2.8·s.",
    "Not Type A u_A = s/√n, not Gauge R&R EV, and not percent CV (×100)."
  ],
  "limitations": [
    "r = 2.8·s is the ISO 5725 conventional repeatability limit, not coverage factor k",
    "Does not report Type A u_A = s/√n",
    "Not Gauge R&R repeatability (EV)",
    "CV is not multiplied by 100; CV is undefined when x̄ = 0"
  ],
  "boundary_conditions": [
    "missing values → MISSING_REQUIRED_INPUT",
    "n=1 with ddof=1 → VALUE_OUT_OF_RANGE",
    "cv op with x̄ = 0 → INVALID_INPUT",
    "s=0 is valid"
  ],
  "sources": [
    {
      "title": "ISO 5725-1 — Accuracy (trueness and precision) of measurement methods and results",
      "section": "Precision as repeatability; repeatability limit r = 2.8 σ_r",
      "supports": "This page reports sample s and the conventional r = 2.8·s; it does not report a between-laboratory R",
      "kind": "standard"
    },
    {
      "title": "JCGM 200:2012 — International vocabulary of metrology (VIM)",
      "section": "2.15 measurement precision",
      "url": "https://www.bipm.org/en/publications/guides/vim.html",
      "supports": "Precision is closeness of agreement under specified conditions, quantified here by s and CV",
      "kind": "standard"
    }
  ],
  "methods": [],
  "fingerprint": "sha256:4f7c98f6d836e8af1fef2609fa8b62d7332ac5c035ea1115ab7d21ba5540519d",
  "tests": [
    {
      "id": "boundary-prec",
      "ok": true,
      "kind": "boundary",
      "inputs": {
        "values": [
          7,
          8,
          9
        ]
      },
      "expect": {
        "s": 1,
        "r": 2.8,
        "cv": 0.125,
        "xbar": 8
      },
      "expectWarning": null,
      "actual": {
        "s": 1,
        "cv": 0.125,
        "r": 2.8,
        "xbar": 8,
        "n": 3,
        "ddof": 1,
        "factor": 2.8,
        "values": [
          7,
          8,
          9
        ]
      },
      "tol": 1e-12
    },
    {
      "id": "boundary-prec-span",
      "ok": true,
      "kind": "boundary",
      "inputs": {
        "values": [
          4,
          6,
          8
        ]
      },
      "expect": {
        "s": 2,
        "r": 5.6
      },
      "expectWarning": null,
      "actual": {
        "s": 2,
        "cv": 0.3333333333333333,
        "r": 5.6,
        "xbar": 6,
        "n": 3,
        "ddof": 1,
        "factor": 2.8,
        "values": [
          4,
          6,
          8
        ]
      },
      "tol": 1e-12
    },
    {
      "id": "boundary-prec-flat",
      "ok": true,
      "kind": "boundary",
      "inputs": {
        "values": [
          8,
          8,
          8
        ]
      },
      "expect": {
        "s": 0,
        "r": 0,
        "cv": 0
      },
      "expectWarning": null,
      "actual": {
        "s": 0,
        "cv": 0,
        "r": 0,
        "xbar": 8,
        "n": 3,
        "ddof": 1,
        "factor": 2.8,
        "values": [
          8,
          8,
          8
        ]
      },
      "tol": 1e-12
    },
    {
      "id": "boundary-prec-cvnull",
      "ok": true,
      "kind": "boundary",
      "inputs": {
        "values": [
          1,
          -1,
          0
        ]
      },
      "expect": {
        "cv": null,
        "r": 2.8
      },
      "expectWarning": null,
      "actual": {
        "s": 1,
        "cv": null,
        "r": 2.8,
        "xbar": 0,
        "n": 3,
        "ddof": 1,
        "factor": 2.8,
        "values": [
          1,
          -1,
          0
        ]
      },
      "tol": 1e-12
    },
    {
      "id": "boundary-prec-n1",
      "ok": true,
      "kind": "boundary",
      "inputs": {
        "values": [
          1
        ]
      },
      "expectError": "VALUE_OUT_OF_RANGE",
      "code": "VALUE_OUT_OF_RANGE",
      "error": "sample variance needs at least two values"
    },
    {
      "id": "boundary-prec-missing",
      "ok": true,
      "kind": "boundary",
      "inputs": {},
      "expectError": "MISSING_REQUIRED_INPUT",
      "code": "MISSING_REQUIRED_INPUT",
      "error": "values is required"
    },
    {
      "id": "property-prec",
      "ok": true,
      "kind": "property",
      "detail": "2.8",
      "expect": 2.8,
      "actual": 2.8
    },
    {
      "id": "property-prec-span",
      "ok": true,
      "kind": "property",
      "detail": "5.6",
      "expect": 5.6,
      "actual": 5.6
    },
    {
      "id": "property-prec-flat",
      "ok": true,
      "kind": "property",
      "detail": "0",
      "expect": 0,
      "actual": 0
    },
    {
      "id": "property-prec-cvnull",
      "ok": true,
      "kind": "property",
      "detail": "null",
      "expect": null,
      "actual": null
    },
    {
      "id": "property-prec-alias",
      "ok": true,
      "kind": "property",
      "detail": "2.8",
      "expect": 2.8,
      "actual": 2.8
    }
  ],
  "tier": "engine_tested",
  "verification": {
    "tests": {
      "passed": 11,
      "total": 11,
      "golden": 0,
      "boundary": 6,
      "property": 5
    },
    "contract_checks": {
      "passed": 4,
      "total": 4
    }
  },
  "evidence_core_generated_at": "2026-09-15T13:27:56.944Z",
  "rendered_at": "2026-09-16T22:03:43.738Z",
  "release_integrity": {
    "status": "verified",
    "scope": "workspace",
    "production_attestation_required": true,
    "calculation_version": "1.0.0",
    "artifacts": {
      "engine": "1.0.0",
      "page": "1.0.0",
      "capability": "1.0.0",
      "evidence": "1.0.0",
      "input_schema": "1.0.0",
      "output_schema": "1.0.0",
      "mcp_contract": "1.0.0"
    },
    "digests": {
      "input_schema_sha256": "65d9410031cef6fc8f33b821bcdad9be113c801be3440d3d9f3ebe8473ea5037",
      "output_schema_sha256": "7329792b52470abac7c43524f2e4abc6e0dad9123efa21b442d0d0191607e618",
      "evidence_sha256": "da68df149f555c10c3c12fa870f16f747688b11a9115f96fc4ad9dd16bcade60",
      "evidence_core_sha256": "da68df149f555c10c3c12fa870f16f747688b11a9115f96fc4ad9dd16bcade60",
      "capability_sha256": "4204f30acc1b2843d5558bfd5a2e075a7ad8c714425dbf6b57afe4752cb012a1",
      "engine_sha256": "c8d4ccdbfeaf61d7b024d4e1babb0c2ba3b324c1b37bd0cb456a526d8d2b1bd1",
      "mcp_contract_sha256": "863098b311a7b17dc4b229a6302b90b3545b175f716e5d84772c7be8e9716b86"
    },
    "contract_checks": {
      "total": 4,
      "passed": 4,
      "failed": 0,
      "items": [
        {
          "id": "release-artifacts-aligned",
          "status": "pass",
          "detail": "1.0.0"
        },
        {
          "id": "schema-valid-input-executes",
          "status": "pass"
        },
        {
          "id": "engine-success-output-validates-schema",
          "status": "pass"
        },
        {
          "id": "schema-rejects-incomplete-input",
          "status": "pass"
        }
      ]
    },
    "report": "https://www.calculatorx.com/.well-known/calculatorx-release-integrity.json"
  }
}
