Knuth's up-arrow notation

In mathematics, Knuth's up-arrow notation is a notation for very large integers introduced by Donald Knuth in 1976. The idea is based on iterated exponentiation in much the same way that exponentiation is iterated multiplication, and multiplication is iterated addition.

Contents

Introduction

Multiplication can be defined as iterated addition:

<math>
 \begin{matrix}
  a\times b & = & \underbrace{a_{}+a+\dots+a} \\
  & & b\mbox{ copies of }a
 \end{matrix}
<math>

and exponentiation can be defined as iterated multiplication:

<math>
 \begin{matrix}
  a^b=a\uparrow b= & \underbrace{a_{}\times a\times\dots\times a}\\
  & b\mbox{ copies of }a
 \end{matrix}
<math>

which inspired Knuth to define a 'double arrow' operator for iterated exponentiation or tetration:

<math>
 \begin{matrix}
  a\uparrow\uparrow b & = & \underbrace{a_{}^{a^{{}^{.\,^{.\,^{.\,^a}}}}}} & 
  = & \underbrace{a_{}\uparrow a\uparrow\dots\uparrow a} 

\\

   & & b\mbox{ copies of }a
   & & b\mbox{ copies of }a
 \end{matrix}
<math>

Here and below evaluation is to take place from right to left.

According to this definition,

<math>3\uparrow\uparrow2=3^3=27\,\!<math>
<math>3\uparrow\uparrow3=3^{3^3}=3^{27}=7625597484987\,\!<math>
<math>3\uparrow\uparrow4=3^{3^{3^3}}=3^{7625597484987}\,\!<math>
<math>3\uparrow\uparrow5=3^{3^{3^{3^3}}}\,\!<math>
etc.

This already leads to some pretty big numbers, but Knuth didn't stop here. He went on to define a 'triple arrow' operator for iterated application of the 'double arrow' operator (also known as quintation):

<math>
 \begin{matrix}
  a\uparrow\uparrow\uparrow b= &
   \underbrace{a_{}\uparrow\uparrow a\uparrow\uparrow\dots\uparrow\uparrow a}\\
   & b\mbox{ copies of }a
 \end{matrix}
<math>

followed by a 'quad arrow' operator:

<math>
 \begin{matrix}
  a\uparrow\uparrow\uparrow\uparrow b= &
   \underbrace{a_{}\uparrow\uparrow\uparrow a\uparrow\uparrow\uparrow\dots\uparrow\uparrow\uparrow a}\\
   & b\mbox{ copies of }a
 \end{matrix}
<math>

and so on. The general rule is that an n-arrow operator expands into a series of (n − 1)-arrow operators. Symbolically,

<math>
 \begin{matrix}
  a\ \underbrace{\uparrow_{}\uparrow\!\!\dots\!\!\uparrow}\ b=
   a\ \underbrace{\uparrow\!\!\dots\!\!\uparrow}
   \ a\ \underbrace{\uparrow_{}\!\!\dots\!\!\uparrow}
   \ a\ \dots
   \ a\ \underbrace{\uparrow_{}\!\!\dots\!\!\uparrow}
   \ a
 \\
  \quad\ \ \,n\qquad\ \ \ \underbrace{\quad n_{}\!-\!\!1\quad\ \,n\!-\!\!1\qquad\quad\ \ \ \,n\!-\!\!1\ \ \ }
 \\
  \qquad\qquad\quad\ \ b\mbox{ copies of }a
 \end{matrix}
<math>

Examples:

<math>3\uparrow\uparrow\uparrow2=3\uparrow\uparrow3=3^{3^3}=3^{27}=7,625,597,484,987\,\!<math>

<math>

 \begin{matrix}
   3\uparrow\uparrow\uparrow3 = 3\uparrow\uparrow3\uparrow\uparrow3 = 3\uparrow\uparrow(3\uparrow3\uparrow3) = &
   \underbrace{3_{}\uparrow 3\uparrow\dots\uparrow 3} \\
  & 3\uparrow3\uparrow3\mbox{ copies of }3
 \end{matrix}
 \begin{matrix}
  = & \underbrace{3_{}\uparrow 3\uparrow\dots\uparrow 3} \\
  & \mbox{7,625,597,484,987 copies of 3}
 \end{matrix}
<math>

Notation

In expressions such as ab, the notation for exponentiation is usually to write the exponent b as a superscript to the base number a. But many environments—such as programming languages and plain-text e-mail— do not support such two-dimensional layout. People have adopted the linear notation ab for such environments; the up-arrow suggests 'raising to the power of'. If the character set doesn't contain an up arrow, the caret ^ is used instead.

The superscript notation ab doesn't lend itself well for generalization, which explains why Knuth chose to work from the inline notation ab instead.

Generalizations

Some numbers are so large that multiple arrows of Knuth's up-arrow notation become too cumbersome; then an n-arrow operator ↑n is useful (and also for descriptions with a variable number of arrows), or equivalently, hyper operators.

Some numbers are so large that even that notation is not sufficient. Graham's number is an example. The Conway chained arrow can then be used: a chain of three elements is equivalent with the other notations, but a chain of four or more is even more powerful.

<math>
 \begin{matrix}
  a\uparrow^n b & = & \mbox{hyper}(a,n+2,b) & = & a\to b\to n \\
  \mbox{(Knuth)} & & & & \mbox{(Conway)}
 \end{matrix}
<math>

It is generally suggested that Knuth's arrow should be used for relatively smaller magnitude numbers, and the chained arrow or hyper operators for larger ones.

Definition

The up-arrow notation is formally defined by

<math>
 a\uparrow^n b=
 \left\{
  \begin{matrix}
   1, & \mbox{if }b=0; \\
   a^b, & \mbox{if }n=1; \\
   a\uparrow^{n-1}(a\uparrow^n(b-1)), & \mbox{otherwise}
  \end{matrix}
 \right.
<math>

for all integers a, b and n with b ≥ 0 and n ≥ 1.

All up-arrow operators (including normal exponentiation, ab) are right associative, i.e. evaluation is to take place from right to left in an expression that contains two or more such operators. For example, abc = a↑(bc), not (ab)↑c; for example
<math>3\uparrow\uparrow 3=3^{3^3} \mbox{ is }3^{(3^3)}=3^{27}=7625597484987 \mbox{ not } \left(3^3\right)^3=27^3=19683.<math>

There is good reason for the choice of this right-to-left order of evaluation. If we used left-to-right evaluation, then a↑↑b would equal a↑(a↑(b-1)), so that ↑↑ would not be an essentially new operation. Right associativity is also natural because we can rewrite the iterated arrow expression <math>a\uparrow^n\cdots\uparrow^na<math> that appears in the expansion of an+1b as <math>a\uparrow^n\cdots\uparrow^na\uparrow^n1<math>, so that all the as appear as left operands of arrow operators. This is significant since the arrow operators are not commutative.

Tables of values

Computing <math>2\uparrow^m n<math> can be restated in terms of an infinite table. We place the numbers 2 n in the top row, and fill the left column with values 2. 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.

Values of <math>2\uparrow^m n<math> = hyper(2,m+2,n) = 2 → n → m
m\n 1 2 3 4 5 6 7 formula
0 2 4 6 8 10 12 14 <math>2n<math>
1 2 4 8 16 32 64 128 <math>2^n<math>
2 2 4 16 65536 <math>2^{65536}\approx 2.0 \times 10^{19,729}<math> <math>2^{2^{65536}}\approx 10^{6.0 \times 10^{19,728}}<math> <math>2^{2^{2^{65536}}}\approx 10^{10^{6.0 \times 10^{19,728}}}<math> <math>2\uparrow\uparrow n<math>
3 2 4 65536 <math>
 \begin{matrix}
  \underbrace{2_{}^{2^{{}^{.\,^{.\,^{.\,^2}}}}}} \\
  65536\mbox{ copies of }2  \end{matrix}\approx (10\uparrow)^{65531}(6.0 \times 10^{19,728})
<math>
      <math>2\uparrow\uparrow\uparrow n<math>
4 2 4 <math>
 \begin{matrix}
  \underbrace{2_{}^{2^{{}^{.\,^{.\,^{.\,^2}}}}}}\\
  65536\mbox{ copies of }2
\end{matrix}<math>
        <math>2\uparrow\uparrow\uparrow\uparrow n<math>

Note: <math>(10\uparrow)^k<math> denotes a functional power of the function <math>f(n)=10^n<math> (the function also expressed by the suffix -plex as in googolplex).

The table is the same as that of the Ackermann function, except for a shift in m and n, and an addition of 3 to all values.

Computing <math>3\uparrow^m n<math>

We place the numbers 3 n in the top row, and fill the left column with values 3. 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.

Values of <math>3\uparrow^m n<math> = hyper(3,m+2,n) = 3 → n → m
m\n 1 2 3 4 5 formula
0 3 6 9 12 15 <math>3n<math>
1 3 9 27 81 243 <math>3^n<math>
2 3 27 7,625,597,484,987 <math>3^{7,625,597,484,987}<math>   <math>3\uparrow\uparrow n<math>
3 3 7,625,597,484,987 <math>
 \begin{matrix}
  \underbrace{3_{}^{3^{{}^{.\,^{.\,^{.\,^3}}}}}}\\
  7,625,597,484,987\mbox{ copies of }3
\end{matrix}<math>
    <math>3\uparrow\uparrow\uparrow n<math>
4 3 <math>\begin{matrix}
  \underbrace{3_{}^{3^{{}^{.\,^{.\,^{.\,^3}}}}}}\\
  7,625,597,484,987\mbox{ copies of }3
\end{matrix}<math>
      <math>3\uparrow\uparrow\uparrow\uparrow n<math>

Computing <math>10\uparrow^m n<math>

We place the numbers 10 n in the top row, and fill the left column with values 10. 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.

Values of <math>10\uparrow^m n<math> = hyper(10,m+2,n) = 10 → n → m
m\n 1 2 3 4 5 formula
0 10 20 30 40 50 <math>10n<math>
1 10 100 1,000 10,000 100,000 <math>10^n<math>
2 10 10,000,000,000 <math>10^{10,000,000,000}<math> <math>10^{\,\!10^{10,000,000,000}}<math>   <math>10\uparrow\uparrow n<math>
3 10 <math>
 \begin{matrix}
  \underbrace{10_{}^{10^{{}^{.\,^{.\,^{.\,^{10}}}}}}}\\
  10\mbox{ copies of }10
\end{matrix}<math>
      <math>10\uparrow\uparrow\uparrow n<math>
4 10         <math>10\uparrow\uparrow\uparrow\uparrow n<math>

External links

ja:クヌースの矢印表記 fr:Notation des puissances itres de Knuth

Navigation

  • Art and Cultures
    • Art (https://academickids.com/encyclopedia/index.php/Art)
    • Architecture (https://academickids.com/encyclopedia/index.php/Architecture)
    • Cultures (https://www.academickids.com/encyclopedia/index.php/Cultures)
    • Music (https://www.academickids.com/encyclopedia/index.php/Music)
    • Musical Instruments (http://academickids.com/encyclopedia/index.php/List_of_musical_instruments)
  • Biographies (http://www.academickids.com/encyclopedia/index.php/Biographies)
  • Clipart (http://www.academickids.com/encyclopedia/index.php/Clipart)
  • Geography (http://www.academickids.com/encyclopedia/index.php/Geography)
    • Countries of the World (http://www.academickids.com/encyclopedia/index.php/Countries)
    • Maps (http://www.academickids.com/encyclopedia/index.php/Maps)
    • Flags (http://www.academickids.com/encyclopedia/index.php/Flags)
    • Continents (http://www.academickids.com/encyclopedia/index.php/Continents)
  • History (http://www.academickids.com/encyclopedia/index.php/History)
    • Ancient Civilizations (http://www.academickids.com/encyclopedia/index.php/Ancient_Civilizations)
    • Industrial Revolution (http://www.academickids.com/encyclopedia/index.php/Industrial_Revolution)
    • Middle Ages (http://www.academickids.com/encyclopedia/index.php/Middle_Ages)
    • Prehistory (http://www.academickids.com/encyclopedia/index.php/Prehistory)
    • Renaissance (http://www.academickids.com/encyclopedia/index.php/Renaissance)
    • Timelines (http://www.academickids.com/encyclopedia/index.php/Timelines)
    • United States (http://www.academickids.com/encyclopedia/index.php/United_States)
    • Wars (http://www.academickids.com/encyclopedia/index.php/Wars)
    • World History (http://www.academickids.com/encyclopedia/index.php/History_of_the_world)
  • Human Body (http://www.academickids.com/encyclopedia/index.php/Human_Body)
  • Mathematics (http://www.academickids.com/encyclopedia/index.php/Mathematics)
  • Reference (http://www.academickids.com/encyclopedia/index.php/Reference)
  • Science (http://www.academickids.com/encyclopedia/index.php/Science)
    • Animals (http://www.academickids.com/encyclopedia/index.php/Animals)
    • Aviation (http://www.academickids.com/encyclopedia/index.php/Aviation)
    • Dinosaurs (http://www.academickids.com/encyclopedia/index.php/Dinosaurs)
    • Earth (http://www.academickids.com/encyclopedia/index.php/Earth)
    • Inventions (http://www.academickids.com/encyclopedia/index.php/Inventions)
    • Physical Science (http://www.academickids.com/encyclopedia/index.php/Physical_Science)
    • Plants (http://www.academickids.com/encyclopedia/index.php/Plants)
    • Scientists (http://www.academickids.com/encyclopedia/index.php/Scientists)
  • Social Studies (http://www.academickids.com/encyclopedia/index.php/Social_Studies)
    • Anthropology (http://www.academickids.com/encyclopedia/index.php/Anthropology)
    • Economics (http://www.academickids.com/encyclopedia/index.php/Economics)
    • Government (http://www.academickids.com/encyclopedia/index.php/Government)
    • Religion (http://www.academickids.com/encyclopedia/index.php/Religion)
    • Holidays (http://www.academickids.com/encyclopedia/index.php/Holidays)
  • Space and Astronomy
    • Solar System (http://www.academickids.com/encyclopedia/index.php/Solar_System)
    • Planets (http://www.academickids.com/encyclopedia/index.php/Planets)
  • Sports (http://www.academickids.com/encyclopedia/index.php/Sports)
  • Timelines (http://www.academickids.com/encyclopedia/index.php/Timelines)
  • Weather (http://www.academickids.com/encyclopedia/index.php/Weather)
  • US States (http://www.academickids.com/encyclopedia/index.php/US_States)

Information

  • Home Page (http://academickids.com/encyclopedia/index.php)
  • Contact Us (http://www.academickids.com/encyclopedia/index.php/Contactus)

  • Clip Art (http://classroomclipart.com)
Toolbox
Personal tools