{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://askcalculators.com/calculator/simplifying-complex-fractions-calculator/schema.json",
  "title": "Simplifying Complex Fractions Calculator inputs",
  "description": "Simplify a complex fraction whose numerator and denominator each contain a sum or difference of two fractions.",
  "type": "object",
  "properties": {
    "a": {
      "title": "a",
      "type": "number",
      "default": 1,
      "x-step": 1,
      "multipleOf": 1
    },
    "b": {
      "title": "b",
      "type": "number",
      "default": 2,
      "x-step": 1,
      "multipleOf": 1
    },
    "topOperation": {
      "title": "Top operation",
      "type": "string",
      "default": "add",
      "enum": [
        "add",
        "subtract"
      ],
      "x-optionLabels": {
        "add": "Add",
        "subtract": "Subtract"
      }
    },
    "c": {
      "title": "c",
      "type": "number",
      "default": 1,
      "x-step": 1,
      "multipleOf": 1
    },
    "d": {
      "title": "d",
      "type": "number",
      "default": 3,
      "x-step": 1,
      "multipleOf": 1
    },
    "e": {
      "title": "e",
      "type": "number",
      "default": 3,
      "x-step": 1,
      "multipleOf": 1
    },
    "f": {
      "title": "f",
      "type": "number",
      "default": 4,
      "x-step": 1,
      "multipleOf": 1
    },
    "bottomOperation": {
      "title": "Bottom operation",
      "type": "string",
      "default": "subtract",
      "enum": [
        "add",
        "subtract"
      ],
      "x-optionLabels": {
        "add": "Add",
        "subtract": "Subtract"
      }
    },
    "g": {
      "title": "g",
      "type": "number",
      "default": 1,
      "x-step": 1,
      "multipleOf": 1
    },
    "h": {
      "title": "h",
      "type": "number",
      "default": 4,
      "x-step": 1,
      "multipleOf": 1
    }
  },
  "required": [
    "a",
    "b",
    "topOperation",
    "c",
    "d",
    "e",
    "f",
    "bottomOperation",
    "g",
    "h"
  ],
  "additionalProperties": false,
  "x-askcalculators": {
    "version": "1.0.0",
    "calculatorUrl": "https://askcalculators.com/calculator/simplifying-complex-fractions-calculator/",
    "queryExample": "https://askcalculators.com/calculator/simplifying-complex-fractions-calculator/?a=1&b=2&topOperation=add&c=1&d=3&e=3&f=4&bottomOperation=subtract&g=1&h=4",
    "migrationStatus": "new",
    "reviewStatus": "pending",
    "pageStatus": "live",
    "workStatus": "pending",
    "formula": {
      "expression": "[(a/b) ± (c/d)] ÷ [(e/f) ± (g/h)]"
    },
    "quality": {
      "availability": "live",
      "technicalReviewRecord": "/reviews/simplifying-complex-fractions-calculator.json",
      "qualifiedReview": "pending",
      "qualifiedReviewer": null,
      "qualifiedReviewDate": null,
      "formulaVersion": "1.0.0",
      "referenceCoverage": "references-pending",
      "releaseTestScope": "Catalog and regression checks are not a professional formula audit; consult release evidence.",
      "historicalMetadataDate": "2026-09-01",
      "historicalMetadataNotice": "The imported date is not evidence of a completed human review."
    },
    "outputs": {
      "simplified": {
        "title": "Simplified result",
        "type": "string",
        "x-format": "text",
        "x-primary": true
      },
      "mixedNumber": {
        "title": "Mixed number",
        "type": "string",
        "x-format": "text"
      },
      "decimal": {
        "title": "Decimal value",
        "type": "number",
        "x-format": "number",
        "x-digits": 12
      },
      "topSimplified": {
        "title": "Simplified numerator expression",
        "type": "string",
        "x-format": "text"
      },
      "bottomSimplified": {
        "title": "Simplified denominator expression",
        "type": "string",
        "x-format": "text"
      }
    }
  }
}
