Ackermann function: Difference between revisions

From formulasearchengine
Jump to navigation Jump to search
en>Tobias Bergemann
Undid revision 486775794 by 195.210.60.2 (talk). Iter(Ack)(m) cannot be right, see talk page. I would like to see a source for these definitions, though.
 
en>CBM
Apparently the bots template was not broad enough; no reason I can see to change existing style, which may not even *be* CS1.
Line 1: Line 1:
Hello, јe suis Adilene et рuis je suis une chagaѕѕе. J'apρrécie les scènes x vraiment de folie gгatis. Dօnc si ça te tente : n'hésite donc pɑs à venir papoter. S'il y a quеlques baіseurs alors qu'ils vіеnnent parler.<br><br>My web site - [http://www.obese.nu/ vod porno gratuit]
{{bots|deny=AWB}}
In [[computability theory]], the '''Ackermann function''', named after [[Wilhelm Ackermann]], is one of the simplest and earliest-discovered examples of a [[total function|total]] [[computable function]] that is not [[Primitive recursive function|primitive recursive]]. All primitive recursive functions are total and computable, but the Ackermann function illustrates that not all total computable functions are primitive recursive.
 
After Ackermann's publication<ref name="Ack">{{cite journal | author=Wilhelm Ackermann | journal=[[Mathematische Annalen]] | title=Zum Hilbertschen Aufbau der reellen Zahlen | year=1928 | volume=99 | pages=118–133 | url=http://gdz.sub.uni-goettingen.de/en/dms/loader/img/?PPN=PPN235181684_0099&DMDID=DMDLOG_0009 | doi=10.1007/BF01459088}}</ref> of his function (which had three nonnegative integer arguments), many authors modified it to suit various purposes, so that today "the Ackermann function" may refer to any of numerous variants of the original function. One common version, the two-argument '''Ackermann–Péter function''', is defined as follows for nonnegative integers ''m'' and ''n'':
 
:<math> A(m, n) =
\begin{cases}
n+1 & \mbox{if } m = 0 \\
A(m-1, 1) & \mbox{if } m > 0 \mbox{ and } n = 0 \\
A(m-1, A(m, n-1)) & \mbox{if } m > 0 \mbox{ and } n > 0.
\end{cases}
</math>
 
Its value grows rapidly, even for small inputs. For example ''A''(4,2) is an integer of 19,729 decimal digits.<ref>[http://www.kosara.net/thoughts/ackermann42.html Decimal expansion of A(4,2)] {{Wayback|url=http://www.kosara.net/thoughts/ackermann42.html|date =20080317104411}}</ref>
 
==History==
In the late 1920s, the mathematicians [[Gabriel Sudan]] and [[Wilhelm Ackermann]], students of [[David Hilbert]], were studying the foundations of computation. Both Sudan and Ackermann are credited<ref>{{cite journal | author=Cristian Calude, [[Solomon Marcus]] and Ionel Tevy | journal = Historia Math. | title=The first example of a recursive function which is not primitive recursive | month=November | year=1979 | pages=380–84 | volume=6 | issue=4 | doi=10.1016/0315-0860(79)90024-7}}</ref> with discovering [[total function|total]] [[computable function]]s (termed simply "recursive" in some references) that are not [[primitive recursive function|primitive recursive]]. Sudan published the lesser-known [[Sudan function]], then shortly afterwards and independently, in 1928, Ackermann published his function <math>\varphi\,\!</math>. Ackermann's three-argument function, <math>\varphi(m, n, p)\,\!</math>, is defined such that for ''p'' = 0, 1, 2, it reproduces the basic operations of addition, multiplication, and exponentiation as
:<math>\varphi(m, n, 0) = m+n,\,\!</math>
:<math>\varphi(m, n, 1) = m\cdot n,\,\!</math>
:<math>\varphi(m, n, 2) = m^n,\,\!</math>
and for ''p'' > 2 it extends these basic operations in a way that happens to be expressible in [[Knuth's up-arrow notation]] as
:<math>\varphi(m, n, p) = m\uparrow^{p - 1}n.\,\!</math>
(Aside from its historic role as a total-computable-but-not-primitive-recursive function, Ackermann's original function is seen to extend the basic arithmetic operations beyond exponentiation, although not as seamlessly as do variants of Ackermann's function that are specifically designed for that purpose — such as [[Reuben Goodstein|Goodstein's]] [[hyperoperation]] sequence.)
 
In ''On the Infinite'', David Hilbert hypothesized that the Ackermann function was not primitive recursive, but it was Ackermann, Hilbert’s personal secretary and former student, who actually proved the hypothesis in his paper ''On Hilbert’s Construction of the Real Numbers''. ''On the Infinite'' was Hilbert’s most important paper on the foundations of mathematics, serving as the heart of [[Hilbert's program]] to secure the foundation of [[transfinite number]]s by basing them on finite methods.<ref name="Ack"/><ref>von Heijenoort. [http://mathgate.info/cebrown/notes/vonHeijenoort.php From Frege To Gödel], 1967.</ref>
 
[[Rózsa Péter]] and [[Raphael Robinson]] later developed a two-variable version of the Ackermann function that became preferred by many authors.<ref>{{cite journal | author=Raphael M. Robinson | title=Recursion and Double Recursion | journal=[[Bulletin of the American Mathematical Society]] | year=1948 | volume=54 | pages=987–93 | url=http://projecteuclid.org/DPubS?verb=Display&version=1.0&service=UI&handle=euclid.bams/1183512393&page=record | doi=10.1090/S0002-9904-1948-09121-2 | issue=10}}</ref>
 
==Definition and properties==
Ackermann's original three-argument function <math>\varphi(m, n, p)\,\!</math> is defined [[recursion|recursively]] as follows for nonnegative integers ''m'', ''n'', and ''p'':
 
:<math> \varphi(m,n,p) = \begin{cases}
\varphi(m, n, 0) = m + n \\
\varphi(m, 0, 1) = 0 \\
\varphi(m, 0, 2) = 1 \\
\varphi(m, 0, p) = m &\text{ for } p > 2 \\
\varphi(m, n, p) = \varphi(m, \varphi(m, n-1, p), p - 1) &\text{ for } n > 0 \text{ and } p > 0.
\end{cases}\,\!</math>
 
Of the various two-argument versions, the one developed by Péter and Robinson (called "the" Ackermann function by some authors) is defined for nonnegative integers ''m'' and ''n'' as follows:
 
:<math> A(m, n) =
\begin{cases}
n+1 & \mbox{if } m = 0 \\
A(m-1, 1) & \mbox{if } m > 0 \mbox{ and } n = 0 \\
A(m-1, A(m, n-1)) & \mbox{if } m > 0 \mbox{ and } n > 0.
\end{cases}
</math>
 
It may not be immediately obvious that the evaluation of <math> A(m, n)</math> always terminates. However, the recursion is bounded because in each recursive application either ''m'' decreases, or ''m'' remains the same and ''n'' decreases. Each time that ''n'' reaches zero, ''m'' decreases, so ''m'' eventually reaches zero as well. (Expressed more technically, in each case the pair (''m'', ''n'') decreases in the [[lexicographic order]] on pairs, which is a [[well-order]]ing, just like the ordering of single non-negative integers; this means one cannot go down in the ordering infinitely many times in succession.) However, when ''m'' decreases there is no upper bound on how much ''n'' can increase — and it will often increase greatly.
 
The Péter-Ackermann function can also be expressed in terms of various other versions of the Ackermann function:
* the indexed version of [[Knuth's up-arrow notation]] (extended to integer indices ≥ -2):
::''A''(''m'', ''n'') = <math>2\uparrow^{m-2} (n+3) - 3.</math>
:The part of the definition ''A''(''m'', 0) = A(''m''-1, 1) corresponds to <math>2\uparrow^{m+1} 3=2\uparrow^m 4.</math>
 
* [[hyper operator]]s:
::''A''(''m'', ''n'') = hyper(2, m, n + 3) − 3.
 
* [[Conway chained arrow]] notation:
::''A''(''m'', ''n'') = (2 → (''n''+3) → ''(m'' − 2)) − 3 for ''m''&nbsp;>&nbsp;2
:hence
::2 → ''n'' → ''m'' = ''A''(''m''+2,''n''-3) + 3 for ''n''>2.
:(''n''=1 and ''n''=2 would correspond with ''A''(''m'',−2)&nbsp;=&nbsp;−1 and ''A''(''m'',−1)&nbsp;=&nbsp;1, which could logically be added.)
 
For small values of ''m'' like 1, 2, or 3, the Ackermann function grows relatively slowly with respect to ''n'' (at most [[exponential growth|exponentially]]). For ''m'' ≥ 4, however, it grows much more quickly; even ''A''(4,&nbsp;2) is about 2{{e|19728}}, and the decimal expansion of ''A''(4,&nbsp;3) is very large by any typical measure.
 
Logician [[Harvey Friedman]] defines a version of the Ackermann function as follows:
 
* For n = 0: A(m, n) = 1
 
*For m = 1: A(m, n) = 2n
*Else: A(m, n) = A(m - 1, A(m, n - 1))
 
He also defines a single-argument version A(n) = A(n, n).<ref>http://www.math.osu.edu/~friedman.8/pdf/AckAlgGeom102100.pdf</ref>
 
A single-argument version A(k) = A(k, k) that increases both ''m'' and ''n'' at the same time dwarfs every primitive recursive function, including very fast-growing functions such as the [[exponential function]], the factorial function, multi- and [[superfactorial]] functions, and even functions defined using Knuth's up-arrow notation (except when the indexed up-arrow is used). It can be seen that A(n) is roughly comparable to f<sub>ω</sub>(n) in the fast-growing hierarchy.
 
This extreme growth can be exploited to show that ''f'', which is obviously computable on a machine with infinite memory such as a [[Turing machine]] and so is a [[computable function]], grows faster than any primitive recursive function and is therefore not primitive recursive. In a category with exponentials, using the isomorphism <math>A \times B \rightarrow C \cong A \rightarrow (B \rightarrow C)</math> (in computer science, this is called [[currying]]), the Ackermann function may be defined via primitive recursion over higher-order functionals as follows:
 
:<math>
\begin{array}{lcl}
\operatorname{Ack}(0) & = & \operatorname{Succ} \\
\operatorname{Ack}(m+1) & = & \operatorname{Iter}(\operatorname{Ack}(m))
\end{array}
</math>
 
where ''Succ'' is the usual [[successor function]] and ''Iter'' is defined by primitive recursion as well:
 
:<math>
\begin{array}{lcl}
\operatorname{Iter}(f)(0) & = & f(1) \\
\operatorname{Iter}(f)(n+1) & = & f(\operatorname{Iter}(f)(n)).
\end{array}
</math>
 
One interesting aspect of the Ackermann function is that the only arithmetic operations it ever uses are addition and subtraction of 1. Its properties come solely from the power of unlimited recursion. This also implies that its running time is at least proportional to its output, and so is also extremely huge. In actuality, for most cases the running time is far larger than the output; see below.
 
==Table of values==
Computing the Ackermann function can be restated in terms of an infinite table. We place the natural numbers along the top row. To determine a number in the table, take the number immediately to the left, then look up the required number in the previous row, at the position given by the number just taken. If there is no number to its left, simply look at the column headed "1" in the previous row. Here is a small upper-left portion of the table:
 
{| class="wikitable"
|+ Values of ''A''(''m'',&nbsp;''n'')
|-
! ''m''\''n''
! 0
! 1
! 2
! 3
! 4
! n
|-
! 0
| 1 || 2 || 3 || 4 || 5 || <math>n + 1</math>
|-
! 1
| 2 || 3 || 4 || 5 || 6 || <math>n + 2 = 2 + (n + 3) - 3</math>
|-
! 2
| 3 || 5 || 7 || 9 || 11 || <math>2n + 3 = 2\cdot(n + 3) - 3</math>
|-
! 3
| 5 || 13 || 29 || 61 || 125 || <math>2^{(n+3)} - 3</math>
|-
! 4
| 13 <BR><BR>=<math>{2^{2^{2}}}-3</math>|| 65533 <BR><BR>=<math>{2^{2^{2^{2}}}}-3</math>
| 2<sup>65536</sup>&nbsp;−&nbsp;3 <BR><BR>=<math>{2^{2^{2^{2^{2}}}}}-3</math>
| <math>{2^{2^{65536}}} - 3</math> <BR><BR>=<math>{2^{2^{2^{2^{2^{2}}}}}}-3</math>
| <math>{2^{2^{2^{65536}}}} - 3</math> <BR><BR>=<math>{2^{2^{2^{2^{2^{2^{2}}}}}}}-3</math>
| <math>\begin{matrix}\underbrace{{2^2}^{{\cdot}^{{\cdot}^{{\cdot}^2}}}} - 3 \\n\mbox{ + 3}\end{matrix}</math>
|}
 
The numbers listed here in a recursive reference are very large and cannot be easily notated in some other form.
 
Despite the large values occurring in this early section of the table, some even larger numbers have been defined, such as [[Graham's number]], which cannot be written with any small number of [[Knuth's up-arrow notation|Knuth arrows]]. This number is constructed with a technique similar to applying the Ackermann function to itself recursively.
 
This is a repeat of the above table, but with the values replaced by the relevant expression from the function definition to show the pattern clearly:
 
{| class="wikitable"
|+ Values of ''A''(''m'',&nbsp;''n'')
|-
! ''m''\''n''
! 0
! 1
! 2
! 3
! 4
! n
|-
! 0
| 0+1 || 1+1 || 2+1 || 3+1 || 4+1 || <math>n + 1</math>
|-
! 1
| A(0,1) || A(0,A(1,0)) || A(0,A(1,1)) || A(0,A(1,2)) || A(0,A(1,3)) || <math>n + 2 = 2 + (n + 3) - 3</math>
|-
! 2
| A(1,1) || A(1,A(2,0)) || A(1,A(2,1)) || A(1,A(2,2)) || A(1,A(2,3)) || <math>2n + 3 = 2\cdot(n + 3) - 3</math>
|-
! 3
| A(2,1) || A(2,A(3,0)) || A(2,A(3,1)) || A(2,A(3,2)) || A(2,A(3,3)) || <math>2^{(n+3)} - 3</math>
|-
! 4
| A(3,1) || A(3,A(4,0)) || A(3,A(4,1)) || A(3,A(4,2)) || A(3,A(4,3)) ||
<math>\begin{matrix}\underbrace{{2^2}^{{\cdot}^{{\cdot}^{{\cdot}^2}}}} - 3 \\n\mbox{ + 3}\end{matrix}</math>
|-
! 5
| A(4,1) || A(4,A(5,0)) || A(4,A(5,1)) || A(4,A(5,2)) || A(4,A(5,3)) ||
''A''(4,&nbsp;''A''(5,&nbsp;n-1))
|-
! 6
| A(5,1) || A(5,A(6,0)) || A(5,A(6,1)) || A(5,A(6,2)) || A(5,A(6,3)) ||
''A''(5,&nbsp;''A''(6,&nbsp;n-1))
|}
 
==Expansion==
To see how the Ackermann function grows so quickly, it helps to expand out some simple expressions using the rules in the original definition. For example, we can fully evaluate <math>A(1, 2)</math> in the following way:
 
:<math>\begin{align}
A(1,2) & = A(0, A(1, 1)) \\
& = A(0, A(0, A(1, 0))) \\
& = A(0, A(0, A(0, 1))) \\
& = A(0, A(0, 2)) \\
& = A(0, 3) \\
& = 4.
\end{align}</math>
 
To demonstrate how <math>A(4, 3)</math>'s computation results in many steps and in a large number:
:<math>\begin{align}
A(4, 3) & = A(3, A(4, 2)) \\
& = A(3, A(3, A(4, 1))) \\
& = A(3, A(3, A(3, A(4, 0)))) \\
& = A(3, A(3, A(3, A(3, 1)))) \\
& = A(3, A(3, A(3, A(2, A(3, 0))))) \\
& = A(3, A(3, A(3, A(2, A(2, 1))))) \\
& = A(3, A(3, A(3, A(2, A(1, A(2, 0)))))) \\
& = A(3, A(3, A(3, A(2, A(1, A(1, 1)))))) \\
& = A(3, A(3, A(3, A(2, A(1, A(0, A(1, 0))))))) \\
& = A(3, A(3, A(3, A(2, A(1, A(0, A(0, 1))))))) \\
& = A(3, A(3, A(3, A(2, A(1, A(0, 2)))))) \\
& = A(3, A(3, A(3, A(2, A(1, 3))))) \\
& = A(3, A(3, A(3, A(2, A(0, A(1, 2)))))) \\
& = A(3, A(3, A(3, A(2, A(0, A(0, A(1, 1))))))) \\
& = A(3, A(3, A(3, A(2, A(0, A(0, A(0, A(1, 0)))))))) \\
& = A(3, A(3, A(3, A(2, A(0, A(0, A(0, A(0, 1)))))))) \\
& = A(3, A(3, A(3, A(2, A(0, A(0, A(0, 2)) )) )) ) \\
& = A(3, A(3, A(3, A(2, A(0, A(0, 3)))))) \\
& = A(3, A(3, A(3, A(2, A(0, 4)))))  \\
& = A(3, A(3, A(3, A(2, 5)))) \\
& = \ldots \\
& = A(3, A(3, A(3, 13))) \\
& = \ldots \\
& = A(3, A(3, 65533)) \\
& = \ldots \\
& = A(3, 2^{65536} - 3) \\
& = \ldots \\
& = 2^{2^{ \overset{65536}{} }} - 3. \\
\end{align}</math>
 
Written as a power of 10, this is roughly equivalent to 10<sup>6.031{{e|19727}}</sup>.
 
==Inverse==
Since the function &nbsp;''f''&nbsp;(''n'')&nbsp;=&nbsp;''A''(''n'',&nbsp;''n'') considered above grows very rapidly, its [[inverse function]], ''f''<sup>−1</sup>, grows very slowly. This '''inverse Ackermann function''' ''f''<sup>−1</sup> is usually denoted by '''α'''. In fact, α(n) is less than 5 for any practical input size ''n'', since A(4,&nbsp;4) is on the order of <math>2^{2^{10^{19729}}}</math>.
 
This inverse appears in the time [[computational complexity theory|complexity]] of some [[algorithm]]s, such as the [[disjoint-set data structure]] and [[Bernard Chazelle|Chazelle]]'s algorithm for [[minimum spanning tree]]s. Sometimes Ackermann's original function or other variations are used in these settings, but they all grow at similarly high rates. In particular, some modified functions simplify the expression by eliminating the ''−3'' and similar terms.
 
A two-parameter variation of the inverse Ackermann function can be defined as follows, where <math>\lfloor x \rfloor</math> is the [[floor function]]:
:<math>\alpha(m,n) = \min\{i \geq 1 : A(i,\lfloor m/n \rfloor) \geq \log_2 n\}.</math>
This function arises in more precise analyses of the algorithms mentioned above, and gives a more refined time bound. In the disjoint-set data structure, ''m'' represents the number of operations while ''n'' represents the number of elements; in the minimum spanning tree algorithm, ''m'' represents the number of edges while ''n'' represents the number of vertices.
Several slightly different definitions of α(''m'',&nbsp;''n'') exist; for example, log<sub>2</sub>&nbsp;''n'' is sometimes replaced by ''n'', and the floor function is sometimes replaced by a [[ceiling function|ceiling]].
 
Other studies might define an inverse function of one where m is set to a constant, such that the inverse applies to a particular row.<ref>[http://cat.inist.fr/?aModele=afficheN&cpsidt=15618233 An inverse-Ackermann style lower bound for the online minimum spanning tree verification problem] November 2002</ref>
 
==Use as benchmark==
The Ackermann function, due to its definition in terms of extremely deep recursion, can be used as a benchmark of a [[compiler]]'s ability to optimize recursion. The first use of Ackermann's function in this way was by Yngve Sundblad, ''The Ackermann function. A Theoretical, computational and formula manipulative study.'' (BIT 11 (1971), 107119).
 
This seminal paper was taken up by Brian Wichmann (co-author of the [[Whetstone (benchmark)|Whetstone benchmark]]) in a trilogy of papers written between 1975 and 1982.<ref>{{cite web | title=Ackermann's Function: A Study In The Efficiency Of Calling Procedures | year = 1975 | url=http://history.dcs.ed.ac.uk/archive/docs/Imp_Benchmarks/ack.pdf}}</ref><ref>{{cite web | title=How to Call Procedures, or Second Thoughts on Ackermann's Function | year = 1977 | url=http://history.dcs.ed.ac.uk/archive/docs/Imp_Benchmarks/ackpe.pdf}}</ref><ref>{{cite web | title=Latest results from the procedure calling test, Ackermann's function | year = 1982 | url=http://history.dcs.ed.ac.uk/archive/docs/Imp_Benchmarks/acklt.pdf}}</ref>
 
==Ackermann numbers==<!-- This section is linked from [[Googolplex]] -->
In ''The Book of Numbers'', [[John Horton Conway]] and [[Richard K. Guy]] define the sequence of '''Ackermann numbers''' to be 1↑1, 2↑↑2, 3↑↑↑3, etc.;<ref>John Horton Conway and Richard K. Guy. [http://books.google.com/books?id=0--3rcO7dMYC&lpg=PA60&dq=%22Ackermann%20number%22&pg=PA60#v=onepage&q=%22Ackermann%20number%22&f=false ''The Book of Numbers'']. New York: Springer-Verlag, pp. 60-61, 1996. ISBN 978-0-387-97993-9</ref> that is, the n-th Ackermann number is defined to be n↑<sup>n</sup>n (''n'' = 1, 2, 3, ...), where m↑<sup>k</sup>n is [[Knuth's up-arrow notation|Knuth's up-arrow]] version of the Ackermann function.
 
The first few Ackermann numbers are:
:* 1↑1 = 1<sup>1</sup> = 1,
:* 2↑↑2 = 2↑2 = 2<sup>2</sup> = 4,
:* 3↑↑↑3 = 3↑↑3↑↑3 = 3↑↑(3↑3↑3) = <math>3\uparrow\uparrow3^{3^3} = 3\uparrow\uparrow7625597484987 = \underbrace{3^{3^{3^{3^{.^{.^{.^{3}}}}}}}}_{7625597484987{\rm\ threes}}</math>
 
The fourth Ackermann number, 4↑↑↑↑4, can be written in terms of [[tetration]] towers as follows:
 
:4↑↑↑↑4 = 4↑↑↑4↑↑↑4↑↑↑4 = 4↑↑↑4↑↑↑(4↑↑4↑↑4↑↑4)
:::<math> = \underbrace{~~^{^{^{^{^{^{^{^{4}.}.}.}4}4}4}4}4~~}_{\underbrace{~^{^{^{^{^{4}.}.}.}4}4~}_{^{^{^{4}4}4}4 {\rm\ fours}} {\rm fours}}</math>
 
Explanation: in the middle layer, there is a tower of tetration whose full height is <math>^{^{^{4}4}4}4</math> and the final result is the top layer of tetrated 4s whose full height equals the calculation of the middle layer. Note that by way of size comparison, the simple expression <sup>4</sup>4 already exceeds a [[googolplex]], so the fourth Ackermann number is quite large.
 
Alternatively, this can be written in terms of [[exponentiation]] towers as
:<math>4\uparrow\uparrow\uparrow\uparrow 4 = </math>
:<math>\quad</math>
:<math>
\left.
\begin{matrix} 4^{4^{\cdot^{\cdot^{\cdot^{\cdot^{4}}}}}}\end{matrix}
\right \}
\left.
\begin{matrix}4^{4^{\cdot^{\cdot^{\cdot^{4}}}}}\end{matrix}
\right \}
\dots
\left.
\begin{matrix}4^{4^{4^4}}\end{matrix}
\right \}
4,
</math>
:where the number of towers on the previous line (including the rightmost "4") is
:<math>
\left.
\begin{matrix}4^{4^{\cdot^{\cdot^{\cdot^{\cdot^{4}}}}}}\end{matrix}
\right \}
\left.
\begin{matrix}4^{4^{\cdot^{\cdot^{\cdot^{4}}}}}\end{matrix}
\right \}
\dots
\left.
\begin{matrix}4^{4^{4^4}}\end{matrix}
\right \}
4,
</math>
:where the number of towers on the previous line (including the rightmost "4") is
:<math>
\left.
\begin{matrix}4^{4^{\cdot^{\cdot^{\cdot^{4}}}}}\end{matrix}
\right \}
\left.
\begin{matrix}4^{4^{\cdot^{\cdot^{\cdot^{4}}}}}\end{matrix}
\right \}
\left.
\begin{matrix}4^{4^{4^4}}\end{matrix}
\right \}
4,
</math>
where the number of "4"s in each tower, on each of the lines above, is specified by the value of the next tower to its right (as indicated by a brace).
 
==See also==
<!-- keep alphabetical -->
* [[Computability theory]]
* [[Double recursion]]
* [[Fast-growing hierarchy]]
* [[Primitive recursive function]]
* [[Recursion (computer science)]]
<!-- keep alphabetical -->
 
==References==
{{reflist|2}}
 
==External links==
* {{springer|title=Ackermann function|id=p/a120110}}
* {{mathworld | urlname = AckermannFunction | title = Ackermann function}}
* {{DADS|Ackermann's function|ackermann}}
* [http://www.gfredericks.com/main/sandbox/arith/ackermann An animated Ackermann function calculator]
* [[Scott Aaronson]], ''[http://www.scottaaronson.com/writings/bignumbers.html Who can name the biggest number?]'' (1999)
* [http://www-users.cs.york.ac.uk/~susan/cyc/a/ackermnn.htm Ackermann function's]. Includes a table of some values.
* [http://forum.wolframscience.com/showthread.php?s=&threadid=579 Hyper-operations: Ackermann's Function and New Arithmetical Operation]
* [http://www.mrob.com/pub/math/largenum.html Robert Munafo's Large Numbers] describes several variations on the definition of ''A''.
* Gabriel Nivasch, [http://www.yucs.org/~gnivasch/alpha/index.html Inverse Ackermann without pain] on the inverse Ackermann function.
* Raimund Seidel, ''[http://cgi.di.uoa.gr/~ewcg06/invited/Seidel.pdf Understanding the inverse Ackermann function]'' (PDF presentation).
* [http://rosettacode.org/wiki/Ackermann_Function The Ackermann function written in different programming languages], (on [[Rosetta Code]])
* [http://www.geocities.com/hjsmithh/Ackerman/index.html Ackermann's Function] ([http://www.webcitation.org/5km8K6GSP Archived] 2009-10-24) &mdash; Some study and programming by Harry J. Smith.
 
{{DEFAULTSORT:Ackermann Function}}
[[Category:Arithmetic]]
[[Category:Large integers]]
[[Category:Special functions]]
[[Category:Theory of computation]]
[[Category:Computability theory]]
 
{{Link FA|de}}
{{Link FA|es}}

Revision as of 20:39, 2 February 2014

Template:Bots In computability theory, the Ackermann function, named after Wilhelm Ackermann, is one of the simplest and earliest-discovered examples of a total computable function that is not primitive recursive. All primitive recursive functions are total and computable, but the Ackermann function illustrates that not all total computable functions are primitive recursive.

After Ackermann's publication[1] of his function (which had three nonnegative integer arguments), many authors modified it to suit various purposes, so that today "the Ackermann function" may refer to any of numerous variants of the original function. One common version, the two-argument Ackermann–Péter function, is defined as follows for nonnegative integers m and n:

Its value grows rapidly, even for small inputs. For example A(4,2) is an integer of 19,729 decimal digits.[2]

History

In the late 1920s, the mathematicians Gabriel Sudan and Wilhelm Ackermann, students of David Hilbert, were studying the foundations of computation. Both Sudan and Ackermann are credited[3] with discovering total computable functions (termed simply "recursive" in some references) that are not primitive recursive. Sudan published the lesser-known Sudan function, then shortly afterwards and independently, in 1928, Ackermann published his function . Ackermann's three-argument function, , is defined such that for p = 0, 1, 2, it reproduces the basic operations of addition, multiplication, and exponentiation as

and for p > 2 it extends these basic operations in a way that happens to be expressible in Knuth's up-arrow notation as

(Aside from its historic role as a total-computable-but-not-primitive-recursive function, Ackermann's original function is seen to extend the basic arithmetic operations beyond exponentiation, although not as seamlessly as do variants of Ackermann's function that are specifically designed for that purpose — such as Goodstein's hyperoperation sequence.)

In On the Infinite, David Hilbert hypothesized that the Ackermann function was not primitive recursive, but it was Ackermann, Hilbert’s personal secretary and former student, who actually proved the hypothesis in his paper On Hilbert’s Construction of the Real Numbers. On the Infinite was Hilbert’s most important paper on the foundations of mathematics, serving as the heart of Hilbert's program to secure the foundation of transfinite numbers by basing them on finite methods.[1][4]

Rózsa Péter and Raphael Robinson later developed a two-variable version of the Ackermann function that became preferred by many authors.[5]

Definition and properties

Ackermann's original three-argument function is defined recursively as follows for nonnegative integers m, n, and p:

Of the various two-argument versions, the one developed by Péter and Robinson (called "the" Ackermann function by some authors) is defined for nonnegative integers m and n as follows:

It may not be immediately obvious that the evaluation of always terminates. However, the recursion is bounded because in each recursive application either m decreases, or m remains the same and n decreases. Each time that n reaches zero, m decreases, so m eventually reaches zero as well. (Expressed more technically, in each case the pair (m, n) decreases in the lexicographic order on pairs, which is a well-ordering, just like the ordering of single non-negative integers; this means one cannot go down in the ordering infinitely many times in succession.) However, when m decreases there is no upper bound on how much n can increase — and it will often increase greatly.

The Péter-Ackermann function can also be expressed in terms of various other versions of the Ackermann function:

A(m, n) =
The part of the definition A(m, 0) = A(m-1, 1) corresponds to
A(m, n) = hyper(2, m, n + 3) − 3.
A(m, n) = (2 → (n+3) → (m − 2)) − 3 for m > 2
hence
2 → nm = A(m+2,n-3) + 3 for n>2.
(n=1 and n=2 would correspond with A(m,−2) = −1 and A(m,−1) = 1, which could logically be added.)

For small values of m like 1, 2, or 3, the Ackermann function grows relatively slowly with respect to n (at most exponentially). For m ≥ 4, however, it grows much more quickly; even A(4, 2) is about 2Template:E, and the decimal expansion of A(4, 3) is very large by any typical measure.

Logician Harvey Friedman defines a version of the Ackermann function as follows:

  • For n = 0: A(m, n) = 1
  • For m = 1: A(m, n) = 2n
  • Else: A(m, n) = A(m - 1, A(m, n - 1))

He also defines a single-argument version A(n) = A(n, n).[6]

A single-argument version A(k) = A(k, k) that increases both m and n at the same time dwarfs every primitive recursive function, including very fast-growing functions such as the exponential function, the factorial function, multi- and superfactorial functions, and even functions defined using Knuth's up-arrow notation (except when the indexed up-arrow is used). It can be seen that A(n) is roughly comparable to fω(n) in the fast-growing hierarchy.

This extreme growth can be exploited to show that f, which is obviously computable on a machine with infinite memory such as a Turing machine and so is a computable function, grows faster than any primitive recursive function and is therefore not primitive recursive. In a category with exponentials, using the isomorphism (in computer science, this is called currying), the Ackermann function may be defined via primitive recursion over higher-order functionals as follows:

where Succ is the usual successor function and Iter is defined by primitive recursion as well:

One interesting aspect of the Ackermann function is that the only arithmetic operations it ever uses are addition and subtraction of 1. Its properties come solely from the power of unlimited recursion. This also implies that its running time is at least proportional to its output, and so is also extremely huge. In actuality, for most cases the running time is far larger than the output; see below.

Table of values

Computing the Ackermann function can be restated in terms of an infinite table. We place the natural numbers along the top row. To determine a number in the table, take the number immediately to the left, then look up the required number in the previous row, at the position given by the number just taken. If there is no number to its left, simply look at the column headed "1" in the previous row. Here is a small upper-left portion of the table:

Values of A(mn)
m\n 0 1 2 3 4 n
0 1 2 3 4 5
1 2 3 4 5 6
2 3 5 7 9 11
3 5 13 29 61 125
4 13

=
65533

=
265536 − 3

=


=


=

The numbers listed here in a recursive reference are very large and cannot be easily notated in some other form.

Despite the large values occurring in this early section of the table, some even larger numbers have been defined, such as Graham's number, which cannot be written with any small number of Knuth arrows. This number is constructed with a technique similar to applying the Ackermann function to itself recursively.

This is a repeat of the above table, but with the values replaced by the relevant expression from the function definition to show the pattern clearly:

Values of A(mn)
m\n 0 1 2 3 4 n
0 0+1 1+1 2+1 3+1 4+1
1 A(0,1) A(0,A(1,0)) A(0,A(1,1)) A(0,A(1,2)) A(0,A(1,3))
2 A(1,1) A(1,A(2,0)) A(1,A(2,1)) A(1,A(2,2)) A(1,A(2,3))
3 A(2,1) A(2,A(3,0)) A(2,A(3,1)) A(2,A(3,2)) A(2,A(3,3))
4 A(3,1) A(3,A(4,0)) A(3,A(4,1)) A(3,A(4,2)) A(3,A(4,3))

5 A(4,1) A(4,A(5,0)) A(4,A(5,1)) A(4,A(5,2)) A(4,A(5,3))

A(4, A(5, n-1))

6 A(5,1) A(5,A(6,0)) A(5,A(6,1)) A(5,A(6,2)) A(5,A(6,3))

A(5, A(6, n-1))

Expansion

To see how the Ackermann function grows so quickly, it helps to expand out some simple expressions using the rules in the original definition. For example, we can fully evaluate in the following way:

To demonstrate how 's computation results in many steps and in a large number:

Written as a power of 10, this is roughly equivalent to 106.031Template:E.

Inverse

Since the function  f (n) = A(nn) considered above grows very rapidly, its inverse function, f−1, grows very slowly. This inverse Ackermann function f−1 is usually denoted by α. In fact, α(n) is less than 5 for any practical input size n, since A(4, 4) is on the order of .

This inverse appears in the time complexity of some algorithms, such as the disjoint-set data structure and Chazelle's algorithm for minimum spanning trees. Sometimes Ackermann's original function or other variations are used in these settings, but they all grow at similarly high rates. In particular, some modified functions simplify the expression by eliminating the −3 and similar terms.

A two-parameter variation of the inverse Ackermann function can be defined as follows, where is the floor function:

This function arises in more precise analyses of the algorithms mentioned above, and gives a more refined time bound. In the disjoint-set data structure, m represents the number of operations while n represents the number of elements; in the minimum spanning tree algorithm, m represents the number of edges while n represents the number of vertices. Several slightly different definitions of α(mn) exist; for example, log2 n is sometimes replaced by n, and the floor function is sometimes replaced by a ceiling.

Other studies might define an inverse function of one where m is set to a constant, such that the inverse applies to a particular row.[7]

Use as benchmark

The Ackermann function, due to its definition in terms of extremely deep recursion, can be used as a benchmark of a compiler's ability to optimize recursion. The first use of Ackermann's function in this way was by Yngve Sundblad, The Ackermann function. A Theoretical, computational and formula manipulative study. (BIT 11 (1971), 107119).

This seminal paper was taken up by Brian Wichmann (co-author of the Whetstone benchmark) in a trilogy of papers written between 1975 and 1982.[8][9][10]

Ackermann numbers

In The Book of Numbers, John Horton Conway and Richard K. Guy define the sequence of Ackermann numbers to be 1↑1, 2↑↑2, 3↑↑↑3, etc.;[11] that is, the n-th Ackermann number is defined to be n↑nn (n = 1, 2, 3, ...), where m↑kn is Knuth's up-arrow version of the Ackermann function.

The first few Ackermann numbers are:

The fourth Ackermann number, 4↑↑↑↑4, can be written in terms of tetration towers as follows:

4↑↑↑↑4 = 4↑↑↑4↑↑↑4↑↑↑4 = 4↑↑↑4↑↑↑(4↑↑4↑↑4↑↑4)

Explanation: in the middle layer, there is a tower of tetration whose full height is and the final result is the top layer of tetrated 4s whose full height equals the calculation of the middle layer. Note that by way of size comparison, the simple expression 44 already exceeds a googolplex, so the fourth Ackermann number is quite large.

Alternatively, this can be written in terms of exponentiation towers as

where the number of towers on the previous line (including the rightmost "4") is
where the number of towers on the previous line (including the rightmost "4") is

where the number of "4"s in each tower, on each of the lines above, is specified by the value of the next tower to its right (as indicated by a brace).

See also

References

43 year old Petroleum Engineer Harry from Deep River, usually spends time with hobbies and interests like renting movies, property developers in singapore new condominium and vehicle racing. Constantly enjoys going to destinations like Camino Real de Tierra Adentro.

External links

  • Other Sports Official Kull from Drumheller, has hobbies such as telescopes, property developers in singapore and crocheting. Identified some interesting places having spent 4 months at Saloum Delta.

    my web-site http://himerka.com/
  • 22 year-old Systems Analyst Rave from Merrickville-Wolford, has lots of hobbies and interests including quick cars, property developers in singapore and baking. Always loves visiting spots like Historic Monuments Zone of Querétaro.

    Here is my web site - cottagehillchurch.com
  • Singapore has elevated a tax on international property buyers as part of new momentary measures to chill its residential housing market which has seen continued strong demand despite earlier efforts to curb costs.

    The Institute of Property Brokers (IEA) has revealed really helpful commissions/fees for real estate transactions. With the steam of an overheated property market dying down, the excitement has now shifted to developers enjoying discount games to push new initiatives or clear previous stock. With so many ‘great offers', patrons are spoiled for choices. LONDON London mayor Boris Johnson mentioned excessive property costs are "the appropriate drawback to have" and that technology startups are interested in the town regardless of its "creaking" infrastructure. More detail SEOUL A prolonged property market stoop and low rates of interest are threatening the way forward for a uniquely South Korean residence lease system that traces its roots back to the 19th century. More detail Typical Sequence of a Venture Preview

    Since 2009 until August 2013, there was eight property cooling measures and 1 automotive mortgage regulation. Here's a abstract of the measures and it's impact until date. Checklist of Property cooling measures by URA/MAS. b. Foreigners and non-individuals (corporate entities) shopping for any residential property pays an ABSD of 10%; c. Everlasting Residents (PRs) proudly owning one and buying the second and subsequent residential property will pay an ABSD of three%; and Anyway, the challenge won't be accomplished till 2019. Who knows what the property market will probably be like five years from now? Amongst others, new rules search to curb non-public property house owners from investing and cashing in on HDB resale flats All residential property loans will now only enable a maximum loan tenor of 35 years.

    which runs alongside Holland Road and boasts essentially the most exclusive and costly properties in Singapore, such nearly as good class bungalows and high-finish condos and flats; and Here at New Zealand Property Solutions we purpose to search out the most suitable property investments in New Zealand for our abroad clients based in Singapore, Malaysia and lots of other developed nations. Many Singaporean and worldwide traders may not have the local market understanding to maximise the complete potential of capital gains and constructive cash flow that comes from New Zealand property funding. New Zealand Property Solutions gives the required information to ensure a sound funding, as well the difficult process of discovering the professional contacts required. condo prices in singapore Amenities

    One Balmoral – Extremely High End Freehold Condominium To Match Your Status! One Balmoral is a ultra high finish freehold condominium located at One Balmoral Highway. One Balmoral A growth by Hong Leong Holdings Restricted, consisting of 91 units in Oceanfront Suites, irresistible pricing for a 946 leasehold property with magnificent sea view. Dreaming of basking and feeling the warmth of pure sunlight is now only a click away. Oceanfront Suites - Seaside residing now not wants to remain an unattainable The Meyerise is essentially the most prestigious freehold Condominium in Meyer Highway District 15! Click on here to register your interest for The Meyerise now! At The Meyerise, every factor is uniquely made to go with the opposite, from the outstanding architecture to

    Resolve Whether To Rent Or Buy Shopping for a house isn't only an investment, however a permanent tie to a location. More importantly, it may restrict job alternatives by making you location dependent. In the event you're unsure about whether or not you may be in the same metropolis in 5-8 years, it's best to hire. Watch In Sweden, one needs to get a license from the government so as to paint his own home. In New Zealand, it's unlawful if a cat leaves the home with out having three bells around its neck. Borgnine owned the home for nearly 60 years earlier than he died on the age of ninety five. It hit the real estate market Sept. 2012 for $3.395 million, a couple of months after Borgnine handed away. Posted by Edison Foo December 13, 2013 Open for booking NOW !!! Posted by Edison Foo October 22, 2013

    Earlier than you decide to buy a House or Flat it's best to ensure that you have sufficientfunds obtainable to complete the acquisition. If you are financing your buy withyour CPF funds and/or a Mortgage you must contact the CPF Board and the Lender financial institution/financecompany upfront to signal all relevant application kinds and furnish all relevantinformation and paperwork to ensure that the CPF funds and/or Loan would be approvedand the funds will probably be obtainable. Along with the acquisition value you'll haveto make provision for the stamp fees and Lawyer's charges. Residential Property Act.

    Do contact us if you want an opinion. We've good contacts and networks with local and foreign banks in Singapore. And we are in a position to provide you data and market talk from the bottom up. Singaporeans have traditionally been averse to wealth redistribution, partly due to the idea that focussing on equalising life opportunities is sufficient. When property taxes have been abolished in 2008, Singapore turned one of the few international locations that does not have capital gains (including property) or estate taxes. Some fear that property duties may result in capital flight. But rich individuals choose Singapore for many reasons, including business convenience and household security. Belgravia Villas Cluster Home @ Ang Mo Kio Open for Sale 19September Types of Residential Property
  • An animated Ackermann function calculator
  • Scott Aaronson, Who can name the biggest number? (1999)
  • Ackermann function's. Includes a table of some values.
  • Hyper-operations: Ackermann's Function and New Arithmetical Operation
  • Robert Munafo's Large Numbers describes several variations on the definition of A.
  • Gabriel Nivasch, Inverse Ackermann without pain on the inverse Ackermann function.
  • Raimund Seidel, Understanding the inverse Ackermann function (PDF presentation).
  • The Ackermann function written in different programming languages, (on Rosetta Code)
  • Ackermann's Function (Archived 2009-10-24) — Some study and programming by Harry J. Smith.

Real Estate Agent Renaldo Lester from Saint-Jean-Chrysostome, has several hobbies which include leathercrafting, property developers in singapore apartment for sale, this contact form, and crochet. Loves to see new cities and places like Ruins of Loropéni. Real Estate Agent Renaldo Lester from Saint-Jean-Chrysostome, has several hobbies which include leathercrafting, property developers in singapore apartment for sale, this contact form, and crochet. Loves to see new cities and places like Ruins of Loropéni.

  1. 1.0 1.1 One of the biggest reasons investing in a Singapore new launch is an effective things is as a result of it is doable to be lent massive quantities of money at very low interest rates that you should utilize to purchase it. Then, if property values continue to go up, then you'll get a really high return on funding (ROI). Simply make sure you purchase one of the higher properties, reminiscent of the ones at Fernvale the Riverbank or any Singapore landed property Get Earnings by means of Renting

    In its statement, the singapore property listing - website link, government claimed that the majority citizens buying their first residence won't be hurt by the new measures. Some concessions can even be prolonged to chose teams of consumers, similar to married couples with a minimum of one Singaporean partner who are purchasing their second property so long as they intend to promote their first residential property. Lower the LTV limit on housing loans granted by monetary establishments regulated by MAS from 70% to 60% for property purchasers who are individuals with a number of outstanding housing loans on the time of the brand new housing purchase. Singapore Property Measures - 30 August 2010 The most popular seek for the number of bedrooms in Singapore is 4, followed by 2 and three. Lush Acres EC @ Sengkang

    Discover out more about real estate funding in the area, together with info on international funding incentives and property possession. Many Singaporeans have been investing in property across the causeway in recent years, attracted by comparatively low prices. However, those who need to exit their investments quickly are likely to face significant challenges when trying to sell their property – and could finally be stuck with a property they can't sell. Career improvement programmes, in-house valuation, auctions and administrative help, venture advertising and marketing, skilled talks and traisning are continuously planned for the sales associates to help them obtain better outcomes for his or her shoppers while at Knight Frank Singapore. No change Present Rules

    Extending the tax exemption would help. The exemption, which may be as a lot as $2 million per family, covers individuals who negotiate a principal reduction on their existing mortgage, sell their house short (i.e., for lower than the excellent loans), or take part in a foreclosure course of. An extension of theexemption would seem like a common-sense means to assist stabilize the housing market, but the political turmoil around the fiscal-cliff negotiations means widespread sense could not win out. Home Minority Chief Nancy Pelosi (D-Calif.) believes that the mortgage relief provision will be on the table during the grand-cut price talks, in response to communications director Nadeam Elshami. Buying or promoting of blue mild bulbs is unlawful.

    A vendor's stamp duty has been launched on industrial property for the primary time, at rates ranging from 5 per cent to 15 per cent. The Authorities might be trying to reassure the market that they aren't in opposition to foreigners and PRs investing in Singapore's property market. They imposed these measures because of extenuating components available in the market." The sale of new dual-key EC models will even be restricted to multi-generational households only. The models have two separate entrances, permitting grandparents, for example, to dwell separately. The vendor's stamp obligation takes effect right this moment and applies to industrial property and plots which might be offered inside three years of the date of buy. JLL named Best Performing Property Brand for second year running

    The data offered is for normal info purposes only and isn't supposed to be personalised investment or monetary advice. Motley Fool Singapore contributor Stanley Lim would not personal shares in any corporations talked about. Singapore private home costs increased by 1.eight% within the fourth quarter of 2012, up from 0.6% within the earlier quarter. Resale prices of government-built HDB residences which are usually bought by Singaporeans, elevated by 2.5%, quarter on quarter, the quickest acquire in five quarters. And industrial property, prices are actually double the levels of three years ago. No withholding tax in the event you sell your property. All your local information regarding vital HDB policies, condominium launches, land growth, commercial property and more

    There are various methods to go about discovering the precise property. Some local newspapers (together with the Straits Instances ) have categorised property sections and many local property brokers have websites. Now there are some specifics to consider when buying a 'new launch' rental. Intended use of the unit Every sale begins with 10 p.c low cost for finish of season sale; changes to 20 % discount storewide; follows by additional reduction of fiftyand ends with last discount of 70 % or extra. Typically there is even a warehouse sale or transferring out sale with huge mark-down of costs for stock clearance. Deborah Regulation from Expat Realtor shares her property market update, plus prime rental residences and houses at the moment available to lease Esparina EC @ Sengkang
  2. Decimal expansion of A(4,2) The minimal educational requirement to take the REA or RES examination is four GCE "" level passes or equal. When you have taken the obligatory preparatory course offered by a CEA Authorised Course Supplier and want to apply for the exam, please click on right here.

    In an ordinary Singapore Tenancy Agreement, there is usually the reimbursement clause together with the diplomatic clause. This clause states that in the event you train the diplomatic clause, you will have to reimburse a part of the commission the landlord had paid to his agent. Figures additionally show that the number of property agents registered with the Council for Estate Companies (CEA) The property company watchdog mentioned property agents who did not continue with their registration were part timers Tuas South Road 5 Industrial Website on the market So the right way to be a Real Estate Agent in Singapore? Be registered with just one Licensed Estate Agent (Actual Estate Firm) Abroad Property Analysis Experiences Region Property Consultancy & Management Providers Pte Ltd UE Square (D09) – Residence For Hire

    final January. There are also fewer property companies in business, down by 5% to lower than 1,500. Other than passing a compulsory examination, registered property brokers also have to endure six hours of Some business players stated new agents face a tough time juggling this and shutting property deals. With a purpose to make the TA a sound authorized document to be honoured by all parties involved, it must be stamped by the Singapore Inland Revenue Authority (IRA). The costs for this process, a so-known as "stamp obligation", are to be borne by the tenant. Softening in residential property costs proceed, led by 2.8 per cent decline within the index for Remainder of Central Area Freehold improvement in the prestigious Ardmore Park / Claymore district with potential for en bloc sale

    An expert property agent in Singapore will assist you and defend your interest all through the purchase, secure the provide for you at the best possible price. With a a lot better data of Singapore, the agent can be in a greater position to recommend and recommendation on the selection of property. He may even ensure that all documents are in order and you might be coping with the rightful owner of the property. Singapore 529508 Contact Leon in OrangeTee or click here to read more if you wish to be property agent – Singapore Real Property Salesperson. Rental estate agent for condominiums, bungalows, semi-detached or public apartments in Singapore. Luxurious condo close to Somerset MRT Condominium For Sale – St Thomas Suites (D09) Singapore Contractors Affiliation Ltd Search

    Freehold Condo near Orchard The Edge on Cairnhill – Condominium For Sale One-cease service for expatriate and foreign patrons. Collection of properties for lease and for sale in Singapore. Property brokers for sale or rental of properties assisting property house owners and those searching for properties to rent or buy. Residences, homes and HDB's. Blk 138 Lorong Ah Soo, Singapore 530138. Commercial and residential property real property agents. 31 Scotts Road, Dean's Property Centre, Singapore 228225. Excessive-end apartment in singapore close to Orchard Road Condominium For Sale – Paterson Residence (D09) Property agent / real estate agent coping with leasing, rental, sale and buy of business and residential properties Meet the Manager Singapore Glass Affiliation REMAX Singapore New Launches

    Property companies embrace buy, sell or hire properties, financial planning, pattern forecasts, relocation, interior design and actual estate planning. Condominium For Lease – The Balmoral (D10) Shopping for a house is a large funding that calls for much consideration and research. The same applies for selling or renting a property, the place a lot effort and time should be spent in negotiating for supreme prices. To watch itemizing and transacted prices Our mistake was that we didn't have our personal agent. One that could have defined all this to us, why it was needed and so forth. But we still did not realise this at the moment, we just assumed that this agent (named A) was serving to us. Little did we know "A" was truly the homeowners agent and we had no 'declare' on him in any respect.

    Vendor Pays the Buyer's Dealer Commission via his itemizing agent. Underneath a Purchaser's Broker arrangement, the named brokerage and agent represent the customer. The price paid to the broker mostly is paid by the vendor. Some buyer dealer agreements include clauses that will compensate the brokerage for the price it's due less the quantity paid by the vendor. When I managed to sell a property for my shopper at double fast time and at a really good worth. The worth was higher than most models being bought at the moment. It was a lot of onerous work and naturally Luck performed an enormous part. The Consumer was very very grateful. Sellers pay a 2% commission. May be decrease for more expensive properties. CONTACTING ME We Will Achieve Your Wants And Desires In Actual Estate
  3. One of the biggest reasons investing in a Singapore new launch is an effective things is as a result of it is doable to be lent massive quantities of money at very low interest rates that you should utilize to purchase it. Then, if property values continue to go up, then you'll get a really high return on funding (ROI). Simply make sure you purchase one of the higher properties, reminiscent of the ones at Fernvale the Riverbank or any Singapore landed property Get Earnings by means of Renting

    In its statement, the singapore property listing - website link, government claimed that the majority citizens buying their first residence won't be hurt by the new measures. Some concessions can even be prolonged to chose teams of consumers, similar to married couples with a minimum of one Singaporean partner who are purchasing their second property so long as they intend to promote their first residential property. Lower the LTV limit on housing loans granted by monetary establishments regulated by MAS from 70% to 60% for property purchasers who are individuals with a number of outstanding housing loans on the time of the brand new housing purchase. Singapore Property Measures - 30 August 2010 The most popular seek for the number of bedrooms in Singapore is 4, followed by 2 and three. Lush Acres EC @ Sengkang

    Discover out more about real estate funding in the area, together with info on international funding incentives and property possession. Many Singaporeans have been investing in property across the causeway in recent years, attracted by comparatively low prices. However, those who need to exit their investments quickly are likely to face significant challenges when trying to sell their property – and could finally be stuck with a property they can't sell. Career improvement programmes, in-house valuation, auctions and administrative help, venture advertising and marketing, skilled talks and traisning are continuously planned for the sales associates to help them obtain better outcomes for his or her shoppers while at Knight Frank Singapore. No change Present Rules

    Extending the tax exemption would help. The exemption, which may be as a lot as $2 million per family, covers individuals who negotiate a principal reduction on their existing mortgage, sell their house short (i.e., for lower than the excellent loans), or take part in a foreclosure course of. An extension of theexemption would seem like a common-sense means to assist stabilize the housing market, but the political turmoil around the fiscal-cliff negotiations means widespread sense could not win out. Home Minority Chief Nancy Pelosi (D-Calif.) believes that the mortgage relief provision will be on the table during the grand-cut price talks, in response to communications director Nadeam Elshami. Buying or promoting of blue mild bulbs is unlawful.

    A vendor's stamp duty has been launched on industrial property for the primary time, at rates ranging from 5 per cent to 15 per cent. The Authorities might be trying to reassure the market that they aren't in opposition to foreigners and PRs investing in Singapore's property market. They imposed these measures because of extenuating components available in the market." The sale of new dual-key EC models will even be restricted to multi-generational households only. The models have two separate entrances, permitting grandparents, for example, to dwell separately. The vendor's stamp obligation takes effect right this moment and applies to industrial property and plots which might be offered inside three years of the date of buy. JLL named Best Performing Property Brand for second year running

    The data offered is for normal info purposes only and isn't supposed to be personalised investment or monetary advice. Motley Fool Singapore contributor Stanley Lim would not personal shares in any corporations talked about. Singapore private home costs increased by 1.eight% within the fourth quarter of 2012, up from 0.6% within the earlier quarter. Resale prices of government-built HDB residences which are usually bought by Singaporeans, elevated by 2.5%, quarter on quarter, the quickest acquire in five quarters. And industrial property, prices are actually double the levels of three years ago. No withholding tax in the event you sell your property. All your local information regarding vital HDB policies, condominium launches, land growth, commercial property and more

    There are various methods to go about discovering the precise property. Some local newspapers (together with the Straits Instances ) have categorised property sections and many local property brokers have websites. Now there are some specifics to consider when buying a 'new launch' rental. Intended use of the unit Every sale begins with 10 p.c low cost for finish of season sale; changes to 20 % discount storewide; follows by additional reduction of fiftyand ends with last discount of 70 % or extra. Typically there is even a warehouse sale or transferring out sale with huge mark-down of costs for stock clearance. Deborah Regulation from Expat Realtor shares her property market update, plus prime rental residences and houses at the moment available to lease Esparina EC @ Sengkang
  4. von Heijenoort. From Frege To Gödel, 1967.
  5. One of the biggest reasons investing in a Singapore new launch is an effective things is as a result of it is doable to be lent massive quantities of money at very low interest rates that you should utilize to purchase it. Then, if property values continue to go up, then you'll get a really high return on funding (ROI). Simply make sure you purchase one of the higher properties, reminiscent of the ones at Fernvale the Riverbank or any Singapore landed property Get Earnings by means of Renting

    In its statement, the singapore property listing - website link, government claimed that the majority citizens buying their first residence won't be hurt by the new measures. Some concessions can even be prolonged to chose teams of consumers, similar to married couples with a minimum of one Singaporean partner who are purchasing their second property so long as they intend to promote their first residential property. Lower the LTV limit on housing loans granted by monetary establishments regulated by MAS from 70% to 60% for property purchasers who are individuals with a number of outstanding housing loans on the time of the brand new housing purchase. Singapore Property Measures - 30 August 2010 The most popular seek for the number of bedrooms in Singapore is 4, followed by 2 and three. Lush Acres EC @ Sengkang

    Discover out more about real estate funding in the area, together with info on international funding incentives and property possession. Many Singaporeans have been investing in property across the causeway in recent years, attracted by comparatively low prices. However, those who need to exit their investments quickly are likely to face significant challenges when trying to sell their property – and could finally be stuck with a property they can't sell. Career improvement programmes, in-house valuation, auctions and administrative help, venture advertising and marketing, skilled talks and traisning are continuously planned for the sales associates to help them obtain better outcomes for his or her shoppers while at Knight Frank Singapore. No change Present Rules

    Extending the tax exemption would help. The exemption, which may be as a lot as $2 million per family, covers individuals who negotiate a principal reduction on their existing mortgage, sell their house short (i.e., for lower than the excellent loans), or take part in a foreclosure course of. An extension of theexemption would seem like a common-sense means to assist stabilize the housing market, but the political turmoil around the fiscal-cliff negotiations means widespread sense could not win out. Home Minority Chief Nancy Pelosi (D-Calif.) believes that the mortgage relief provision will be on the table during the grand-cut price talks, in response to communications director Nadeam Elshami. Buying or promoting of blue mild bulbs is unlawful.

    A vendor's stamp duty has been launched on industrial property for the primary time, at rates ranging from 5 per cent to 15 per cent. The Authorities might be trying to reassure the market that they aren't in opposition to foreigners and PRs investing in Singapore's property market. They imposed these measures because of extenuating components available in the market." The sale of new dual-key EC models will even be restricted to multi-generational households only. The models have two separate entrances, permitting grandparents, for example, to dwell separately. The vendor's stamp obligation takes effect right this moment and applies to industrial property and plots which might be offered inside three years of the date of buy. JLL named Best Performing Property Brand for second year running

    The data offered is for normal info purposes only and isn't supposed to be personalised investment or monetary advice. Motley Fool Singapore contributor Stanley Lim would not personal shares in any corporations talked about. Singapore private home costs increased by 1.eight% within the fourth quarter of 2012, up from 0.6% within the earlier quarter. Resale prices of government-built HDB residences which are usually bought by Singaporeans, elevated by 2.5%, quarter on quarter, the quickest acquire in five quarters. And industrial property, prices are actually double the levels of three years ago. No withholding tax in the event you sell your property. All your local information regarding vital HDB policies, condominium launches, land growth, commercial property and more

    There are various methods to go about discovering the precise property. Some local newspapers (together with the Straits Instances ) have categorised property sections and many local property brokers have websites. Now there are some specifics to consider when buying a 'new launch' rental. Intended use of the unit Every sale begins with 10 p.c low cost for finish of season sale; changes to 20 % discount storewide; follows by additional reduction of fiftyand ends with last discount of 70 % or extra. Typically there is even a warehouse sale or transferring out sale with huge mark-down of costs for stock clearance. Deborah Regulation from Expat Realtor shares her property market update, plus prime rental residences and houses at the moment available to lease Esparina EC @ Sengkang
  6. http://www.math.osu.edu/~friedman.8/pdf/AckAlgGeom102100.pdf
  7. An inverse-Ackermann style lower bound for the online minimum spanning tree verification problem November 2002
  8. Template:Cite web
  9. Template:Cite web
  10. Template:Cite web
  11. John Horton Conway and Richard K. Guy. The Book of Numbers. New York: Springer-Verlag, pp. 60-61, 1996. ISBN 978-0-387-97993-9