Difference between revisions of "Manuals/calci/TETRATE"

From ZCubes Wiki
Jump to navigation Jump to search
Line 13: Line 13:
 
\begin{cases}  
 
\begin{cases}  
 
1,  & \mbox{if }n\mbox{=0} \\
 
1,  & \mbox{if }n\mbox{=0} \\
a, & \mbox{if }n\mbox{ >0}  
+
a^{[(n-1)a]}, & \mbox{if }n\mbox{ >0}  
 
\end{cases}</math>
 
\end{cases}</math>
  
<math>f(n) =  
+
==Examples==
\begin{cases}
+
#TETRATE (3,2) = 27
n/2,  & \mbox{if }n\mbox{ is even} \\
+
#TETRATE (4,3) = 1.3407807929942597e+154
3n+1, & \mbox{if }n\mbox{ is odd}
+
#TETRATE (10,2) = 10000000000
\end{cases}</math>
+
 
 +
==See Also==
 +
*[[Manuals/calci/SLOG| SLOG]]
 +
*[[Manuals/calci/SUPERLOGARITHM| SUPERLOGARITHM]]
 +
*[[Manuals/calci/TETRA| TETRA]]
 +
 
 +
==References==
 +
*https://en.wikipedia.org/wiki/Tetration
 +
 
 +
 
 +
*[[Z_API_Functions | List of Main Z Functions]]
 +
*[[ Z3 |  Z3 home ]]

Revision as of 14:26, 1 June 2017

TETRATE(a,n)


  • is the base value.
  • is power value.

Description

  • This function shows the tetration value of the given number.
  • In , is the base value and is the power value.
  • The hyperoperation after exponentiation is Tetration.
  • Tetration is called iterated exponentiation.
  • The notation means Failed to parse (Conversion error. Server ("https://wikimedia.org/api/rest_") reported: "Cannot get mml. TeX parse error: Double exponent: use braces to clarify"): {\displaystyle a^{a}^{\cdots }^{a}} the application of exponentiation times.
  • For any positive real a>0 and non-negative integer we define by:

Failed to parse (unknown function "\begin{cases}"): {\displaystyle ^n a = \begin{cases} 1, & \mbox{if }n\mbox{=0} \\ a^{[(n-1)a]}, & \mbox{if }n\mbox{ >0} \end{cases}}

Examples

  1. TETRATE (3,2) = 27
  2. TETRATE (4,3) = 1.3407807929942597e+154
  3. TETRATE (10,2) = 10000000000

See Also

References