Documentation

Init.Omega.LinearCombo

Linear combinations #

We use this data structure while processing hypotheses.

Internal representation of a linear combination of atoms, and a constant term.

  • const : Int

    Constant term.

  • coeffs : Coeffs

    Coefficients of the atoms.

Instances For
    Equations
    • One or more equations did not get rendered due to their size.

    Check if a linear combination is an atom, i.e. the constant term is zero and there is exactly one nonzero coefficient, which is one.

    Equations
    Instances For

      Evaluate a linear combination ⟨r, [c_1, …, c_k]⟩ at values [v_1, …, v_k] to obtain r + (c_1 * x_1 + (c_2 * x_2 + ... (c_k * x_k + 0)))).

      Equations
      Instances For

        The i-th coordinate function.

        Equations
        Instances For

          Implementation of addition on LinearCombo.

          Equations
          Instances For

            Implementation of subtraction on LinearCombo.

            Equations
            Instances For

              Implementation of negation on LinearCombo.

              Equations
              Instances For

                Implementation of scalar multiplication of a LinearCombo by an Int.

                Equations
                Instances For
                  @[simp]
                  theorem Lean.Omega.LinearCombo.add_eval (l₁ l₂ : LinearCombo) (v : Coeffs) :
                  (l₁ + l₂).eval v = l₁.eval v + l₂.eval v
                  @[simp]
                  @[simp]
                  theorem Lean.Omega.LinearCombo.sub_eval (l₁ l₂ : LinearCombo) (v : Coeffs) :
                  (l₁ - l₂).eval v = l₁.eval v - l₂.eval v
                  @[simp]
                  theorem Lean.Omega.LinearCombo.smul_eval (lc : LinearCombo) (i : Int) (v : Coeffs) :
                  (i * lc).eval v = i * lc.eval v

                  Multiplication of two linear combinations. This is useful only if at least one of the linear combinations is constant, and otherwise should be considered as a junk value.

                  Equations
                  Instances For