{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://www.calculatorx.com/schemas/math.linear_algebra.input.json",
  "title": "Linear system / small matrix — input",
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "mode": {
      "type": "string",
      "enum": [
        "solve",
        "det",
        "inverse",
        "multiply",
        "transpose"
      ]
    },
    "order": {
      "type": "integer",
      "minimum": 2,
      "maximum": 4
    },
    "a11": {
      "type": "number"
    },
    "a12": {
      "type": "number"
    },
    "a21": {
      "type": "number"
    },
    "a22": {
      "type": "number"
    },
    "b1": {
      "type": "number"
    },
    "b2": {
      "type": "number"
    },
    "A": {
      "type": "number"
    }
  },
  "description": "Solve Ax=b for order 2–4, plus det, inverse, multiply, transpose. Same engine as /workspace/matrix. Not a CAS. (calculation_version 1.0.0) Provide at least 1 of: a11, A."
}
