Documentation

Mathlib.Computability.Halting

Computability theory and the halting problem #

A universal partial recursive function, Rice's theorem, and the halting problem.

References #

theorem Nat.Partrec.merge' {f g : ℕ →. ℕ} (hf : Partrec f) (hg : Partrec g) :
∃ (h : ℕ →. ℕ), Partrec h ∧ ∀ (a : ℕ), (∀ x ∈ h a, x ∈ f a ∨ x ∈ g a) ∧ ((h a).Dom ↔ (f a).Dom ∨ (g a).Dom)
theorem Partrec.merge' {α : Type u_1} {σ : Type u_4} [Primcodable α] [Primcodable σ] {f g : α →. σ} (hf : Partrec f) (hg : Partrec g) :
∃ (k : α →. σ), Partrec k ∧ ∀ (a : α), (∀ x ∈ k a, x ∈ f a ∨ x ∈ g a) ∧ ((k a).Dom ↔ (f a).Dom ∨ (g a).Dom)
theorem Partrec.merge {α : Type u_1} {σ : Type u_4} [Primcodable α] [Primcodable σ] {f g : α →. σ} (hf : Partrec f) (hg : Partrec g) (H : ∀ (a : α), ∀ x ∈ f a, ∀ y ∈ g a, x = y) :
∃ (k : α →. σ), Partrec k ∧ ∀ (a : α) (x : σ), x ∈ k a ↔ x ∈ f a ∨ x ∈ g a
theorem Partrec.cond {α : Type u_1} {σ : Type u_4} [Primcodable α] [Primcodable σ] {c : α → Bool} {f g : α →. σ} (hc : Computable c) (hf : Partrec f) (hg : Partrec g) :
Partrec fun (a : α) => bif c a then f a else g a
theorem Partrec.sumCasesOn {α : Type u_1} {β : Type u_2} {γ : Type u_3} {σ : Type u_4} [Primcodable α] [Primcodable β] [Primcodable γ] [Primcodable σ] {f : α → β ⊕ γ} {g : α → β →. σ} {h : α → γ →. σ} (hf : Computable f) (hg : Partrec₂ g) (hh : Partrec₂ h) :
Partrec fun (a : α) => Sum.casesOn (f a) (g a) (h a)
def ComputablePred {α : Type u_1} [Primcodable α] (p : α → Prop) :

A computable predicate is one whose indicator function is computable.

Equations
Instances For
    theorem ComputablePred.decide {α : Type u_1} [Primcodable α] {p : α → Prop} [DecidablePred p] (hp : ComputablePred p) :
    Computable fun (a : α) => decide (p a)
    theorem Computable.computablePred {α : Type u_1} [Primcodable α] {p : α → Prop} [DecidablePred p] (hp : Computable fun (a : α) => decide (p a)) :
    theorem computablePred_iff_computable_decide {α : Type u_1} [Primcodable α] {p : α → Prop} [DecidablePred p] :
    ComputablePred p ↔ Computable fun (a : α) => decide (p a)
    theorem PrimrecPred.computablePred {α : Type u_1} [Primcodable α] {p : α → Prop} (hp : PrimrecPred p) :
    def REPred {α : Type u_1} [Primcodable α] (p : α → Prop) :

    A recursively enumerable predicate is one which is the domain of a computable partial function.

    Equations
    Instances For
      theorem REPred.of_eq {α : Type u_1} [Primcodable α] {p q : α → Prop} (hp : REPred p) (H : ∀ (a : α), p a ↔ q a) :
      theorem Partrec.dom_re {α : Type u_1} {β : Type u_2} [Primcodable α] [Primcodable β] {f : α →. β} (h : Partrec f) :
      REPred fun (a : α) => (f a).Dom
      theorem ComputablePred.of_eq {α : Type u_1} [Primcodable α] {p q : α → Prop} (hp : ComputablePred p) (H : ∀ (a : α), p a ↔ q a) :
      theorem ComputablePred.computable_iff {α : Type u_1} [Primcodable α] {p : α → Prop} :
      ComputablePred p ↔ ∃ (f : α → Bool), Computable f ∧ p = fun (a : α) => f a = true
      theorem ComputablePred.not {α : Type u_1} [Primcodable α] {p : α → Prop} (hp : ComputablePred p) :
      ComputablePred fun (a : α) => ¬p a
      theorem ComputablePred.ite {f₁ f₂ : ℕ → ℕ} (hf₁ : Computable f₁) (hf₂ : Computable f₂) {c : ℕ → Prop} [DecidablePred c] (hc : ComputablePred c) :
      Computable fun (k : ℕ) => if c k then f₁ k else f₂ k

      The computable functions are closed under if-then-else definitions with computable predicates.

      theorem ComputablePred.to_re {α : Type u_1} [Primcodable α] {p : α → Prop} (hp : ComputablePred p) :
      theorem ComputablePred.rice (C : Set (ℕ →. ℕ)) (h : ComputablePred fun (c : Nat.Partrec.Code) => c.eval ∈ C) {f g : ℕ →. ℕ} (hf : Nat.Partrec f) (hg : Nat.Partrec g) (fC : f ∈ C) :
      g ∈ C

      Rice's Theorem

      theorem ComputablePred.rice₂ (C : Set Nat.Partrec.Code) (H : ∀ (cf cg : Nat.Partrec.Code), cf.eval = cg.eval → (cf ∈ C ↔ cg ∈ C)) :

      The Halting problem is recursively enumerable

      The Halting problem is not computable

      theorem ComputablePred.computable_iff_re_compl_re' {α : Type u_1} [Primcodable α] {p : α → Prop} :
      ComputablePred p ↔ REPred p ∧ REPred fun (a : α) => ¬p a
      inductive Nat.Partrec' {n : ℕ} :

      A simplified basis for Partrec.

      Instances For
        theorem Nat.Partrec'.of_eq {n : ℕ} {f g : List.Vector ℕ n →. ℕ} (hf : Partrec' f) (H : ∀ (i : List.Vector ℕ n), f i = g i) :
        theorem Nat.Partrec'.of_prim {n : ℕ} {f : List.Vector ℕ n → ℕ} (hf : Primrec f) :
        theorem Nat.Partrec'.tail {n : ℕ} {f : List.Vector ℕ n →. ℕ} (hf : Partrec' f) :
        Partrec' fun (v : List.Vector ℕ n.succ) => f v.tail
        theorem Nat.Partrec'.bind {n : ℕ} {f : List.Vector ℕ n →. ℕ} {g : List.Vector ℕ (n + 1) →. ℕ} (hf : Partrec' f) (hg : Partrec' g) :
        Partrec' fun (v : List.Vector ℕ n) => (f v).bind fun (a : ℕ) => g (a ::ᵥ v)
        theorem Nat.Partrec'.map {n : ℕ} {f : List.Vector ℕ n →. ℕ} {g : List.Vector ℕ (n + 1) → ℕ} (hf : Partrec' f) (hg : Partrec' ↑g) :
        Partrec' fun (v : List.Vector ℕ n) => Part.map (fun (a : ℕ) => g (a ::ᵥ v)) (f v)

        Analogous to Nat.Partrec' for ℕ-valued functions, a predicate for partial recursive vector-valued functions.

        Equations
        Instances For
          theorem Nat.Partrec'.Vec.prim {n m : ℕ} {f : List.Vector ℕ n → List.Vector ℕ m} (hf : Primrec'.Vec f) :
          Vec f
          theorem Nat.Partrec'.cons {n m : ℕ} {f : List.Vector ℕ n → ℕ} {g : List.Vector ℕ n → List.Vector ℕ m} (hf : Partrec' ↑f) (hg : Vec g) :
          Vec fun (v : List.Vector ℕ n) => f v ::ᵥ g v
          theorem Nat.Partrec'.comp' {n m : ℕ} {f : List.Vector ℕ m →. ℕ} {g : List.Vector ℕ n → List.Vector ℕ m} (hf : Partrec' f) (hg : Vec g) :
          Partrec' fun (v : List.Vector ℕ n) => f (g v)
          theorem Nat.Partrec'.comp₁ {n : ℕ} (f : ℕ →. ℕ) {g : List.Vector ℕ n → ℕ} (hf : Partrec' fun (v : List.Vector ℕ 1) => f v.head) (hg : Partrec' ↑g) :
          Partrec' fun (v : List.Vector ℕ n) => f (g v)
          theorem Nat.Partrec'.rfindOpt {n : ℕ} {f : List.Vector ℕ (n + 1) → ℕ} (hf : Partrec' ↑f) :
          Partrec' fun (v : List.Vector ℕ n) => Nat.rfindOpt fun (a : ℕ) => Denumerable.ofNat (Option ℕ) (f (a ::ᵥ v))