# A Variation of Levin Search for All Well-Defined Problems

**Authors:** Fouad B. Chedid

arXiv: 1702.03152 · 2017-02-13

## TL;DR

This paper presents a simplified variation of Levin Search, inspired by Hutter's work, that efficiently solves well-defined problems by leveraging provable bounds on the fastest algorithms.

## Contribution

The paper introduces a new, simpler algorithm that improves upon previous methods by reducing the runtime bound to a quadratic function of the proof length times the fastest algorithm's runtime.

## Key findings

- Achieves problem-solving time bounded by O(l(f)^2) times the fastest algorithm's runtime.
- Simplifies the existing algorithms by integrating ideas from Hutter's approach.
- Provides a more practical and theoretically efficient method for solving well-defined problems.

## Abstract

In 1973, L.A. Levin published an algorithm that solves any inversion problem $\pi$ as quickly as the fastest algorithm $p^*$ computing a solution for $\pi$ in time bounded by $2^{l(p^*)}.t^*$, where $l(p^*)$ is the length of the binary encoding of $p^*$, and $t^*$ is the runtime of $p^*$ plus the time to verify its correctness. In 2002, M. Hutter published an algorithm that solves any well-defined problem $\pi$ as quickly as the fastest algorithm $p^*$ computing a solution for $\pi$ in time bounded by $5.t_{p}(x)+d_p.time_{t_{p}}(x)+c_p$, where $d_p=40.2^{l(p)+l(t_{p})}$ and $c_p=40.2^{l(f)+1}.O(l(f)^2)$, where $l(f)$ is the length of the binary encoding of a proof $f$ that produces a pair $(p,t_p)$, where $t_p(x)$ is a provable time bound on the runtime of the fastest program $p$ provably equivalent to $p^*$. In this paper, we rewrite Levin Search using the ideas of Hutter so that we have a new simple algorithm that solves any well-defined problem $\pi$ as quickly as the fastest algorithm $p^*$ computing a solution for $\pi$ in time bounded by $O(l(f)^2).t_p(x)$.

## Full text

_Full body text omitted from this summary view._ Fetch the complete paper as Markdown: https://tomesphere.com/paper/1702.03152/full.md

## References

9 references — full list in the complete paper: https://tomesphere.com/paper/1702.03152/full.md

---
Source: https://tomesphere.com/paper/1702.03152