Documentation

Analysis.Appendix_A_5

Аналіз I, Додаток A.5 #

Деякі приклади вкладених квантифікаторів у Lean

theorem square_expand (x : ) :
(x + 1) ^ 2 = x ^ 2 + 2 * x + 1
theorem solve_quadratic :
∃ (x : ), x ^ 2 + 2 * x - 8 = 0
def Exercise_A_5_1a :
Decidable (∀ x > 0, y > 0, y ^ 2 = x)

Вправа A.5.1

Equations
Instances For
    def Exercise_A_5_1b :
    Decidable (∃ x > 0, y > 0, y ^ 2 = x)
    Equations
    Instances For
      def Exercise_A_5_1c :
      Decidable (∃ x > 0, y > 0, y ^ 2 = x)
      Equations
      Instances For
        def Exercise_A_5_1d :
        Decidable (∀ y > 0, x > 0, y ^ 2 = x)
        Equations
        Instances For
          def Exercise_A_5_1e :
          Decidable (∃ y > 0, x > 0, y ^ 2 = x)
          Equations
          Instances For