<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.sarg.dev/index.php?action=history&amp;feed=atom&amp;title=Elementary_recursive_function</id>
	<title>Elementary recursive function - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.sarg.dev/index.php?action=history&amp;feed=atom&amp;title=Elementary_recursive_function"/>
	<link rel="alternate" type="text/html" href="https://wiki.sarg.dev/index.php?title=Elementary_recursive_function&amp;action=history"/>
	<updated>2026-07-27T15:16:29Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.44.2</generator>
	<entry>
		<id>https://wiki.sarg.dev/index.php?title=Elementary_recursive_function&amp;diff=397718&amp;oldid=prev</id>
		<title>imported&gt;Oneequalsequalsone: Adding local short description: &quot;Concept in computability theory&quot;, overriding Wikidata description &quot;complexity class, algebra&quot;</title>
		<link rel="alternate" type="text/html" href="https://wiki.sarg.dev/index.php?title=Elementary_recursive_function&amp;diff=397718&amp;oldid=prev"/>
		<updated>2025-11-03T19:15:09Z</updated>

		<summary type="html">&lt;p&gt;Adding local &lt;a href=&quot;https://en.wikipedia.org/wiki/Short_description&quot; class=&quot;extiw&quot; title=&quot;wikipedia:Short description&quot;&gt;short description&lt;/a&gt;: &amp;quot;Concept in computability theory&amp;quot;, overriding Wikidata description &amp;quot;complexity class, algebra&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;{{Short description|Concept in computability theory}}&lt;br /&gt;
{{About| |other meanings|Elementary function}}&lt;br /&gt;
{{use dmy dates|date=July 2025}}&lt;br /&gt;
The term &amp;#039;&amp;#039;&amp;#039;elementary&amp;#039;&amp;#039;&amp;#039; was originally introduced by [[László Kalmár]] in the context of [[computability theory]].{{sfn|Kalmár|1943}}{{sfn|Kleene|1952|pages=285, 526}} He defined the class of &amp;#039;&amp;#039;&amp;#039;elementary recursive functions&amp;#039;&amp;#039;&amp;#039; (&amp;#039;&amp;#039;&amp;quot;Kalmár elementary functions&amp;quot;&amp;#039;&amp;#039;) as a subset of the [[primitive recursive function]]s — specifically, those that can be computed using a limited set of operations such as composition, bounded sums, and bounded products. These functions grow no faster than a fixed-height tower of [[exponentiation]] (for example, &amp;lt;math&amp;gt;O(2^{2^n})&amp;lt;/math&amp;gt;). Not all primitive recursive functions are elementary; for example, [[tetration]] grows too rapidly to be included in the elementary class.&lt;br /&gt;
&lt;br /&gt;
In [[computational complexity theory]], the term [[ELEMENTARY]] refers to a class of decision problems solvable in elementary time — that is, within time bounded by some fixed number of exponentials. Formally:&lt;br /&gt;
&lt;br /&gt;
:&amp;lt;math&amp;gt;\mathsf{ELEMENTARY} = \bigcup_{k \in \mathbb{N}} \text{DTIME}(\exp^k(n^c))&amp;lt;/math&amp;gt;&lt;br /&gt;
:where &amp;lt;math&amp;gt;\exp^k(n)&amp;lt;/math&amp;gt; denotes a &amp;#039;&amp;#039;k&amp;#039;&amp;#039;-level exponential tower (e.g., &amp;lt;math&amp;gt;2^{2^{\cdot^{\cdot^{n}}}}&amp;lt;/math&amp;gt;).&lt;br /&gt;
&lt;br /&gt;
Although the name comes from the same historical origin, the ELEMENTARY complexity class deals with [[decision problem]]s and Turing machine runtime, rather than total functions.&lt;br /&gt;
&lt;br /&gt;
==Definition==&lt;br /&gt;
&lt;br /&gt;
The definitions of elementary recursive functions are the same as for [[primitive recursive function]]s, except that primitive recursion is replaced by bounded summation and bounded product. All functions work over the [[natural number]]s. The basic functions, all of them elementary recursive, are:&lt;br /&gt;
&lt;br /&gt;
# &amp;#039;&amp;#039;&amp;#039;Zero function&amp;#039;&amp;#039;&amp;#039;.  Returns zero: &amp;lt;math&amp;gt;f(x)=0&amp;lt;/math&amp;gt;.&lt;br /&gt;
# &amp;#039;&amp;#039;&amp;#039;Successor function&amp;#039;&amp;#039;&amp;#039;: &amp;lt;math&amp;gt;f(x)=x+1&amp;lt;/math&amp;gt;. Often this is denoted by &amp;lt;math&amp;gt;S&amp;lt;/math&amp;gt;, as in &amp;lt;math&amp;gt;S(x)&amp;lt;/math&amp;gt;. Via repeated application of a successor function, one can achieve addition.&lt;br /&gt;
# &amp;#039;&amp;#039;&amp;#039;Projection functions&amp;#039;&amp;#039;&amp;#039;: these are used for ignoring arguments. For example, &amp;lt;math&amp;gt;f(a,b)=a&amp;lt;/math&amp;gt; is a projection function.&lt;br /&gt;
# &amp;#039;&amp;#039;&amp;#039;Subtraction function&amp;#039;&amp;#039;&amp;#039;: &amp;lt;math&amp;gt;f(x,y)=x-y&amp;lt;/math&amp;gt; if &amp;lt;math&amp;gt;y&amp;lt;x&amp;lt;/math&amp;gt;, or 0 if &amp;lt;math&amp;gt;y\ge x&amp;lt;/math&amp;gt;. This function is used to define conditionals and iteration.&lt;br /&gt;
&lt;br /&gt;
From these basic functions, we can build other elementary recursive functions.&lt;br /&gt;
&lt;br /&gt;
# &amp;#039;&amp;#039;&amp;#039;Composition&amp;#039;&amp;#039;&amp;#039;: applying values from some elementary recursive function as an argument to another elementary recursive function. The function &amp;lt;math&amp;gt;f&amp;lt;/math&amp;gt; defined as the composition &amp;lt;math&amp;gt;f(x_1,\ldots,x_n)=h\bigl(g_1(x_1,\ldots,x_n),\ldots,g_m(x_1,\ldots,x_n)\bigr)&amp;lt;/math&amp;gt; is elementary recursive if &amp;lt;math&amp;gt;h&amp;lt;/math&amp;gt; is elementary recursive and each &amp;lt;math&amp;gt;g_i&amp;lt;/math&amp;gt; is elementary recursive.&lt;br /&gt;
# &amp;#039;&amp;#039;&amp;#039;Bounded summation&amp;#039;&amp;#039;&amp;#039;: &amp;lt;math&amp;gt;f(m, x_1, \ldots, x_n) = \sum\limits_{i=0}^mg(i, x_1, \ldots, x_n)&amp;lt;/math&amp;gt; is elementary recursive if &amp;lt;math&amp;gt;g&amp;lt;/math&amp;gt; is elementary recursive.&lt;br /&gt;
# &amp;#039;&amp;#039;&amp;#039;Bounded product&amp;#039;&amp;#039;&amp;#039;: &amp;lt;math&amp;gt;f(m, x_1, \ldots, x_n) = \prod\limits_{i=0}^mg(i, x_1, \ldots, x_n)&amp;lt;/math&amp;gt; is elementary recursive if &amp;lt;math&amp;gt;g&amp;lt;/math&amp;gt; is elementary recursive.&lt;br /&gt;
&lt;br /&gt;
== Superposition bases for elementary functions ==&lt;br /&gt;
&lt;br /&gt;
In the context of computability theory, &amp;#039;&amp;#039;&amp;#039;superposition&amp;#039;&amp;#039;&amp;#039; is a method of constructing new functions from existing ones by [[function composition|functional composition]]. It allows the outputs of one or more functions to serve as the inputs to another function.&lt;br /&gt;
&lt;br /&gt;
More formally, suppose:&lt;br /&gt;
&lt;br /&gt;
:* &amp;lt;math&amp;gt;f(x_1, \dots, x_k)&amp;lt;/math&amp;gt; is a &amp;lt;math&amp;gt;k&amp;lt;/math&amp;gt;-ary function, and  &lt;br /&gt;
:* &amp;lt;math&amp;gt;g_1(x_1, \dots, x_n), \dots, g_k(x_1, \dots, x_n)&amp;lt;/math&amp;gt; are &amp;lt;math&amp;gt;n&amp;lt;/math&amp;gt;-ary functions.&lt;br /&gt;
&lt;br /&gt;
Then the superposition of these functions yields a new &amp;lt;math&amp;gt;n&amp;lt;/math&amp;gt;-ary function:&lt;br /&gt;
&lt;br /&gt;
:&amp;lt;math&amp;gt;h(x_1, \dots, x_n) = f(g_1(x_1, \dots, x_n), \dots, g_k(x_1, \dots, x_n))&amp;lt;/math&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
The class of elementary recursive functions coincides with the closure under superposition of the projection functions and one of the following sets of initial functions:&lt;br /&gt;
:* &amp;lt;math&amp;gt;\{ n + m,\; n \mathbin{\dot{-}} m,\; \lfloor n/m \rfloor,\; 2^n \}&amp;lt;/math&amp;gt;{{sfn|Marchenkov|1980}}&lt;br /&gt;
:* &amp;lt;math&amp;gt;\{ 1, \; n+m,\; n \mathbin{\dot{-}} m, \; \lfloor n/m \rfloor, \; n \times m, \; n^m \}&amp;lt;/math&amp;gt;{{sfn|Mazzanti|2002}}&lt;br /&gt;
:* &amp;lt;math&amp;gt;\{ n + 1,\; n \mathbin{\dot{-}} m,\; \lfloor n/m \rfloor,\; n^m \}&amp;lt;/math&amp;gt;{{citation needed|date=July 2025}}&lt;br /&gt;
:* &amp;lt;math&amp;gt;\{ n + m,\; n \bmod m,\; n^2,\; 2^n \}&amp;lt;/math&amp;gt;{{sfn|Marchenkov|2007}}&lt;br /&gt;
:* &amp;lt;math&amp;gt;\{ n + m,\; n \bmod m,\; 2^n \}&amp;lt;/math&amp;gt;{{refn|&amp;lt;math&amp;gt;n^2 = 2^{n+n} \bmod (2^n + n)&amp;lt;/math&amp;gt; {{harvtxt|Prunescu|Sauras-Altuzarra|Shunia|2025}}}}&lt;br /&gt;
where &amp;lt;math&amp;gt;n \mathbin{\dot{-}} m = \max (n - m, 0)&amp;lt;/math&amp;gt; denotes truncated subtraction ([[Monus#Natural_numbers|monus]]).&lt;br /&gt;
&lt;br /&gt;
In 2025 Mihai Prunescu, Lorenzo Sauras-Altuzarra and Joseph M. Shunia proved that the class of Kalmár elementary functions can be inductively generated from the addition (&amp;lt;math&amp;gt;n + m&amp;lt;/math&amp;gt;), the integer remainder (&amp;lt;math&amp;gt;n \bmod m&amp;lt;/math&amp;gt;) and the base-two exponentiation (&amp;lt;math&amp;gt;2^n&amp;lt;/math&amp;gt;), improving previous results by Marchenkov{{sfn|Marchenkov|2007}} and Mazzanti.{{sfn|Mazzanti|2002}} In addition, they further proved that the substitution basis defined by these three operations is minimal.{{sfn|Prunescu|Sauras-Altuzarra|Shunia|2025}}&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Example 1&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
Let&lt;br /&gt;
:&amp;lt;math&amp;gt;f(a, b) = a \bmod b, \; g_1(n) = 2^{n+n}&amp;lt;/math&amp;gt;, and &amp;lt;math&amp;gt;g_2(n) = 2^n + n&amp;lt;/math&amp;gt;.&lt;br /&gt;
Then the function&lt;br /&gt;
:&amp;lt;math&amp;gt;h(n) = f(g_1(n), g_2(n)) = 2^{n+n} \bmod (2^n + n)&amp;lt;/math&amp;gt;&lt;br /&gt;
defines the square function &amp;lt;math&amp;gt;h(n) = n^2&amp;lt;/math&amp;gt; by superposition alone.&lt;br /&gt;
&lt;br /&gt;
This shows how functions like squaring can be expressed using only addition, exponentiation, and modulo through superposition, &amp;#039;&amp;#039;&amp;#039;without requiring explicit recursion&amp;#039;&amp;#039;&amp;#039;.&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Example 2&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
:&amp;lt;math&amp;gt;x \mathbin{\dot{-}} y = ((2^{x+y} + x) \bmod (2^{x+y} + y)) \bmod (2^{x+y} + x)&amp;lt;/math&amp;gt;.{{sfn|Prunescu|Sauras-Altuzarra|Shunia|2025|loc=Theorem 3}}&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Example 3&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
:&amp;lt;math&amp;gt; x^y = 2^{(x y + x + 1) y} \bmod ( 2^{x y + x + 1} \mathbin{\dot{-}} x )&amp;lt;/math&amp;gt;.{{sfn|Lysikov|2025}}&lt;br /&gt;
&lt;br /&gt;
== Lower elementary recursive functions ==&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;Lower elementary recursive&amp;#039;&amp;#039; functions follow the definitions as above, except that bounded product is disallowed. That is, a lower elementary recursive function must be a zero, successor, or projection function, a composition of other lower elementary recursive functions, or the bounded sum of another lower elementary recursive function.&lt;br /&gt;
&lt;br /&gt;
Lower elementary recursive functions are also known as Skolem elementary functions.{{sfn|Skolem|1962}}{{sfn|Volkov|2010}}&lt;br /&gt;
&lt;br /&gt;
Whereas elementary recursive functions have potentially more than exponential growth, the lower elementary recursive functions have polynomial growth.&lt;br /&gt;
&lt;br /&gt;
The class of lower elementary functions has a description in terms of composition of simple functions analogous to that we have for elementary functions.{{sfn|Volkov|2010}}{{sfn|Volkov|2016}} Namely, a polynomial-bounded function is lower elementary if and only if it can be expressed using a composition of the following functions: projections, &amp;lt;math&amp;gt;n+1&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;nm&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;n \mathbin{\dot{-}} m&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;n\wedge m&amp;lt;/math&amp;gt;, &amp;lt;math&amp;gt;\lfloor n/m \rfloor&amp;lt;/math&amp;gt;, one exponential function (&amp;lt;math&amp;gt;2^n&amp;lt;/math&amp;gt; or &amp;lt;math&amp;gt;n^m&amp;lt;/math&amp;gt;) with the following restriction on the structure of formulas: the formula can have no more than two floors with respect to an exponent (for example, &amp;lt;math&amp;gt;xy(z+1)&amp;lt;/math&amp;gt; has 1 floor, &amp;lt;math&amp;gt;(x+y)^{yz+x}+z^{x+1}&amp;lt;/math&amp;gt; has 2 floors, &amp;lt;math&amp;gt;2^{2^x}&amp;lt;/math&amp;gt; has 3 floors). Here &amp;lt;math&amp;gt;n\wedge m&amp;lt;/math&amp;gt; is a bitwise AND of {{mvar|n}} and {{mvar|m}}.&lt;br /&gt;
&lt;br /&gt;
== See also ==&lt;br /&gt;
* [[ELEMENTARY]]&lt;br /&gt;
* [[Elementary function arithmetic]]&lt;br /&gt;
* [[Primitive recursive function]]&lt;br /&gt;
* [[Grzegorczyk hierarchy]]&lt;br /&gt;
* [[EXPTIME]]&lt;br /&gt;
&lt;br /&gt;
==Notes==&lt;br /&gt;
{{reflist|2}}&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&lt;br /&gt;
*{{cite journal&lt;br /&gt;
 | last = Kalmár&lt;br /&gt;
 | first = László&lt;br /&gt;
 | author-link= László Kalmár&lt;br /&gt;
 | title = Egyszerű példa eldönthetetlen aritmetikai problémára&lt;br /&gt;
 | trans-title = Ein einfaches Beispiel für ein unentscheidbares arithmetisches Problem&lt;br /&gt;
 | journal = Matematikai és Fizikai Lapok&lt;br /&gt;
 | volume = 50&lt;br /&gt;
 | year = 1943&lt;br /&gt;
 | pages = 1–23&lt;br /&gt;
 | location = Budapest&lt;br /&gt;
 | language = hu&lt;br /&gt;
 | url = https://real-j.mtak.hu/7300/&lt;br /&gt;
 | quote = Hungarian with German abstract.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
*{{Cite book&lt;br /&gt;
|last=Kleene&lt;br /&gt;
|first=Stephen Cole&lt;br /&gt;
|author-link=Stephen Cole Kleene&lt;br /&gt;
|title=Introduction to Metamathematics&lt;br /&gt;
|publisher=Van Nostrand|location=New York&lt;br /&gt;
|year=1952&lt;br /&gt;
|oclc=523942&lt;br /&gt;
}}, {{Cite book|last=Kleene|first=Stephen Cole|author-link=Stephen Cole Kleene|display-authors=0|title=reprint|publisher= [[Ishi Press]]|orig-year=1952|date=13 March 2009|isbn=9780923891572}}&lt;br /&gt;
&lt;br /&gt;
*{{cite journal&lt;br /&gt;
 | last = Marchenkov&lt;br /&gt;
 | first = S. S.&lt;br /&gt;
 | title = A Superposition Basis in the Class of Kalmar Elementary Functions&lt;br /&gt;
 | journal = [[Mathematical Notes|Mathematical Notes of the Academy of Sciences of the USSR]]&lt;br /&gt;
 | volume = 27&lt;br /&gt;
 | issue = 3&lt;br /&gt;
 | pages = 161–166&lt;br /&gt;
 | year = 1980&lt;br /&gt;
 | issn = 0001-4346&lt;br /&gt;
 | doi = 10.1007/BF01140159&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
*{{cite journal&lt;br /&gt;
 | last = Marchenkov&lt;br /&gt;
 | first = S. S.&lt;br /&gt;
 | title = Superpositions of Elementary Arithmetic Functions&lt;br /&gt;
 | journal = Journal of Applied and Industrial Mathematics&lt;br /&gt;
 | volume = 1&lt;br /&gt;
 | issue = 3&lt;br /&gt;
 | pages = 351–360&lt;br /&gt;
 | date = September 2007&lt;br /&gt;
 | issn = 1990-4789&lt;br /&gt;
 | doi = 10.1134/S1990478907030106&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
*{{cite journal&lt;br /&gt;
 | last = Mazzanti&lt;br /&gt;
 | first = Stefano&lt;br /&gt;
 | title = Plain Bases for Classes of Primitive Recursive Functions&lt;br /&gt;
 | journal = Mathematical Logic Quarterly&lt;br /&gt;
 | volume = 48&lt;br /&gt;
 | issue = 1&lt;br /&gt;
 | pages = 93–104&lt;br /&gt;
 | year = 2002&lt;br /&gt;
 | issn = 0942-5616&lt;br /&gt;
 | doi = 10.1002/1521-3870(200201)48:1&amp;lt;93::AID-MALQ93&amp;gt;3.0.CO;2-8&lt;br /&gt;
 | oclc = 5154649764&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
* {{cite arxiv&lt;br /&gt;
 | last1 = Prunescu&lt;br /&gt;
 | first1 = Mihai&lt;br /&gt;
 | last2 = Sauras-Altuzarra&lt;br /&gt;
 | first2 = Lorenzo&lt;br /&gt;
 | title = On the representation of C-recursive integer sequences by arithmetic terms&lt;br /&gt;
 | date = 2025-06-05&lt;br /&gt;
 | arxiv = 2405.04083&lt;br /&gt;
 | class = math.LO&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
*{{cite arXiv&lt;br /&gt;
 | last1 = Prunescu&lt;br /&gt;
 | first1 = Mihai&lt;br /&gt;
 | last2 = Sauras-Altuzarra&lt;br /&gt;
 | first2 = Lorenzo&lt;br /&gt;
 | last3 = Shunia&lt;br /&gt;
 | first3 = Joseph M.&lt;br /&gt;
 | date = 2025-08-08&lt;br /&gt;
 | title = A Minimal Substitution Basis for the Kalmar Elementary Functions&lt;br /&gt;
 | arxiv = 2505.23787&lt;br /&gt;
 | class = math.LO&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
*{{cite book&lt;br /&gt;
 | last = Rose&lt;br /&gt;
 | first = H. E.&lt;br /&gt;
 | title = Subrecursion: Functions and Hierarchies&lt;br /&gt;
 | publisher = [[Oxford University Press]]&lt;br /&gt;
 | year = 1984&lt;br /&gt;
 | isbn = 0-19-853189-3&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
*{{cite journal&lt;br /&gt;
 | last = Skolem&lt;br /&gt;
 | first = Th.&lt;br /&gt;
 | author-link = Thoralf Skolem&lt;br /&gt;
 | title = Proof of some theorems on recursively enumerable sets&lt;br /&gt;
 | journal = [[Notre Dame Journal of Formal Logic]]&lt;br /&gt;
 | volume = 3&lt;br /&gt;
 | issue = 2&lt;br /&gt;
 | pages = 65–74&lt;br /&gt;
 | date = 1962&lt;br /&gt;
 | doi = 10.1305/ndjfl/1093957149&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
*{{cite journal&lt;br /&gt;
 | last = Volkov&lt;br /&gt;
 | first = S. A.&lt;br /&gt;
 | title = On the class of Skolem elementary functions&lt;br /&gt;
 | journal = Journal of Applied and Industrial Mathematics&lt;br /&gt;
 | volume = 4&lt;br /&gt;
 | issue = 4&lt;br /&gt;
 | pages = 588–599&lt;br /&gt;
 | date = 2010&lt;br /&gt;
 | doi = 10.1134/S1990478910040149&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
*{{cite arXiv&lt;br /&gt;
 | last = Volkov&lt;br /&gt;
 | first = Sergey&lt;br /&gt;
 | year = 2016&lt;br /&gt;
 | eprint = 1611.04843&lt;br /&gt;
 | title = Finite Bases with Respect to the Superposition in Classes of Elementary Recursive Functions [dissertation]&lt;br /&gt;
 | class = cs.CC&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== External links ==&lt;br /&gt;
*{{cite web&lt;br /&gt;
 | last= Lysikov&lt;br /&gt;
 | first= Vladimir&lt;br /&gt;
 | title= Can superposition alone generate the Kalmár elementary function x&amp;lt;sup&amp;gt;y&amp;lt;/sup&amp;gt; from ⟨x+y, x mod y, 2&amp;lt;sup&amp;gt;x&amp;lt;/sup&amp;gt;⟩?&lt;br /&gt;
 | url=https://math.stackexchange.com/questions/5094779/can-superposition-alone-generate-the-kalm%c3%a1r-elementary-function-xy-from-x&lt;br /&gt;
 | date = 2025-09-07&lt;br /&gt;
 | website=Math Stack Exchange&lt;br /&gt;
 | access-date=2025-09-08&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{ComplexityClasses}}&lt;br /&gt;
&lt;br /&gt;
[[Category:Complexity classes]]&lt;br /&gt;
[[Category:Computability theory]]&lt;/div&gt;</summary>
		<author><name>imported&gt;Oneequalsequalsone</name></author>
	</entry>
</feed>