{
  "capability_id": "mechanical.statics.least_pull",
  "tool_id": "least-pull",
  "engine": "least-pull",
  "calculation_version": "1.0.0",
  "generated_at": "2026-09-23T14:21:08.540Z",
  "engine_build": "2026-09-23",
  "test_count": 7,
  "passed": 7,
  "failed": 0,
  "tests_summary": {
    "golden": {
      "total": 3,
      "passed": 3
    },
    "boundary": {
      "total": 4,
      "passed": 4
    },
    "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/physics/least-pull",
  "api": "https://www.calculatorx.com/api/v1/calc/least-pull",
  "schema_input": "https://www.calculatorx.com/schemas/mechanical.statics.least_pull.input.json",
  "schema_output": "https://www.calculatorx.com/schemas/mechanical.statics.least_pull.output.json",
  "assumptions": [],
  "limitations": [
    "The surface is level",
    "α = arctan μ is the angle that minimizes the pull",
    "P = μW / √(1+μ²) and N = W / (1+μ²)",
    "Not a prescribed angle, an incline, tipping, a wedge, a screw, or a belt"
  ],
  "boundary_conditions": [
    "missing W or μ → MISSING_REQUIRED_INPUT",
    "W ≤ 0 → VALUE_MUST_BE_POSITIVE",
    "μ < 0 → VALUE_OUT_OF_RANGE"
  ],
  "sources": [
    {
      "title": "Hibbeler, Engineering Mechanics: Statics",
      "section": "Dry friction — the least force to move a block",
      "supports": "The pull P = μW / (cosα + μ sinα) is least when α = arctan μ, which gives P = μW / √(1+μ²).",
      "kind": "reference"
    }
  ],
  "methods": [],
  "fingerprint": "sha256:e043f55eeb07b91796a2bee9824351361301d1f4e1e7241b8cff3a0c3e1aec81",
  "tests": [
    {
      "id": "golden-45",
      "ok": true,
      "kind": "golden",
      "inputs": {
        "W": 100,
        "mu": 1
      },
      "expect": {
        "P": 70.71067811865476,
        "N": 50,
        "F": -50,
        "alpha_deg": 45,
        "model": "least_pull"
      },
      "expectWarning": null,
      "actual": {
        "model": "least_pull",
        "W": 100,
        "mu": 1,
        "alpha_deg": 45,
        "P": 70.7106781187,
        "N": 50,
        "F": -50,
        "solver": "angled pull at the friction angle",
        "convention": "The surface is level. α = arctan μ minimizes the pull. P = μW / √(1+μ²). N = W / (1+μ²). A prescribed angle is the angled-pull page."
      },
      "tol": 1e-9
    },
    {
      "id": "golden-three-quarter",
      "ok": true,
      "kind": "golden",
      "inputs": {
        "W": 100,
        "mu": 0.75
      },
      "expect": {
        "P": 60,
        "N": 64,
        "F": -48,
        "alpha_deg": 36.86989764584402
      },
      "expectWarning": null,
      "actual": {
        "model": "least_pull",
        "W": 100,
        "mu": 0.75,
        "alpha_deg": 36.86989764584402,
        "P": 60,
        "N": 64,
        "F": -48,
        "solver": "angled pull at the friction angle",
        "convention": "The surface is level. α = arctan μ minimizes the pull. P = μW / √(1+μ²). N = W / (1+μ²). A prescribed angle is the angled-pull page."
      },
      "tol": 1e-9
    },
    {
      "id": "golden-smooth",
      "ok": true,
      "kind": "golden",
      "inputs": {
        "W": 100,
        "mu": 0
      },
      "expect": {
        "P": 0,
        "N": 100,
        "F": 0,
        "alpha_deg": 0
      },
      "expectWarning": null,
      "actual": {
        "model": "least_pull",
        "W": 100,
        "mu": 0,
        "alpha_deg": 0,
        "P": 0,
        "N": 100,
        "F": 0,
        "solver": "angled pull at the friction angle",
        "convention": "The surface is level. α = arctan μ minimizes the pull. P = μW / √(1+μ²). N = W / (1+μ²). A prescribed angle is the angled-pull page."
      },
      "tol": 1e-12
    },
    {
      "id": "boundary-weight",
      "ok": true,
      "kind": "boundary",
      "inputs": {
        "W": 0,
        "mu": 1
      },
      "expectError": "VALUE_MUST_BE_POSITIVE",
      "code": "VALUE_MUST_BE_POSITIVE",
      "error": "Weight W must be positive."
    },
    {
      "id": "boundary-mu",
      "ok": true,
      "kind": "boundary",
      "inputs": {
        "W": 100,
        "mu": -0.1
      },
      "expectError": "VALUE_OUT_OF_RANGE",
      "code": "VALUE_OUT_OF_RANGE",
      "error": "mu must be non-negative."
    },
    {
      "id": "boundary-missing-mu",
      "ok": true,
      "kind": "boundary",
      "inputs": {
        "W": 100
      },
      "expectError": "MISSING_REQUIRED_INPUT",
      "code": "MISSING_REQUIRED_INPUT",
      "error": "mu is required."
    },
    {
      "id": "boundary-missing-w",
      "ok": true,
      "kind": "boundary",
      "inputs": {
        "mu": 1
      },
      "expectError": "MISSING_REQUIRED_INPUT",
      "code": "MISSING_REQUIRED_INPUT",
      "error": "W is required."
    }
  ],
  "tier": "engine_tested",
  "verification": {
    "tests": {
      "passed": 7,
      "total": 7,
      "golden": 3,
      "boundary": 4,
      "property": 0
    },
    "contract_checks": {
      "passed": 6,
      "total": 6
    }
  },
  "evidence_core_generated_at": "2026-09-23T13:07:54.737Z",
  "rendered_at": "2026-09-23T14:21:08.540Z",
  "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": "460b687b0f3e70aa3c110542fd1fbd20ec7212ef36ce40430cf857ee052ad006",
      "output_schema_sha256": "ee5ba5d32353bc2323f54d567299bba03282268f227fe15ef72e6c00cd6e93bd",
      "evidence_sha256": "0257bda834ba60fa9adf7ae05185e019ef68a9b2ee4f956aeaae7b788b41894b",
      "evidence_core_sha256": "0257bda834ba60fa9adf7ae05185e019ef68a9b2ee4f956aeaae7b788b41894b",
      "capability_sha256": "0d13e60eda62154d0fbd05ffe9d7ef1239a1b2f809efcce5c915f96aa901c71e",
      "engine_sha256": "208304ca4712067561139ce40e8e989b08ad769a073c83f960c49734a91d8b98",
      "mcp_contract_sha256": "c07b6ccec97dcc960230a1aa48fcea3aad2d3b93ce113ae07c095579f88cbc3b"
    },
    "contract_checks": {
      "total": 6,
      "passed": 6,
      "failed": 0,
      "items": [
        {
          "id": "release-artifacts-aligned",
          "status": "pass",
          "detail": "1.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"
  }
}
