Ordinals[Power]
ordinal exponentiation
Ordinals[`^`]
&^
inert ordinal exponentiation
Calling Sequence
Parameters
Description
Examples
Compatibility
Power(a, b, ...)
a ^ b
a &^ b
a, b, ...
-
ordinals, nonnegative integers, or polynomials with positive integer coefficients
The Power and ^ calling sequences perform exponentiation of the given ordinal numbers according to the rules of ordinal arithmetic. Let a=ωe⋅c+r, where c is a positive integer and r=0 or e≻degree⁡r in the strict ordering ≻ of ordinals.
0b=0 if b≠0.
a0=1b=1.
If b is a positive integer, then ab=a⋅a⋅…⋅a⏟btimes.
If a=c≥2 is a positive integer and b=ω⋅l+d, where d is a nonnegative integer, then ab=ωl⋅cd.
If e≠0 and tdegree⁡b≠0, then ab=ωe⋅b.
If b=b1+b2, then ab=ab1⋅ab2.
If more than two arguments are specified, the powering will be performed right-associatively, that is, Power⁡a,b,c,...=Power⁡a,Power⁡b,c,....
Mathematically, exponentiation of two ordinals ab corresponds to the set of all functions f:b→a, between the corresponding well-orderings b and a, with finite support, such that f⁡x≠0 for only finitely many x∈b, together with the ordering defined by:
f≺g⇔∃x∈b:f⁡x≺bg⁡x∧∀y≻ax:f⁡y=g⁡y
In the two-argument case, if a,b are both nonzero, a≠1 and at least one of them is an ordinal data structure, that is, an ordinal number greater or equal to ω, then the result is an ordinal data structure. Otherwise, the result is a nonnegative integer or a polynomial with positive integer coefficients.
The &^ calling sequence is the inert form of ordinal exponentiation. No actual exponentiation is performed, but the result will be rendered as an inert power, with parentheses around the first argument.
Applying the value command will turn the inactive &. operator into the active . operator, causing the ordinal multiplication to be computed as described above.
The first argument a can be a parametric ordinal. If it cannot be determined whether its leading or trailing coefficient is nonzero, an error may be raised.
with⁡Ordinals
`+`,`.`,`<`,<=,Add,Base,Dec,Decompose,Div,Eval,Factor,Gcd,Lcm,LessThan,Log,Max,Min,Mult,Ordinal,Power,Split,Sub,`^`,degree,lcoeff,log,lterm,ω,quo,rem,tcoeff,tdegree,tterm
Power⁡,Power⁡0,Power⁡0,0,Power⁡0,0,0,Power⁡0,0,0,0
1,0,1,0,1
Power⁡,Power⁡2,Power⁡2,2,Power⁡2,2,2,Power⁡2,2,2,2
1,2,4,16,65536
length⁡Power⁡2,2,2,2,2
19729
a≔ω·2+3
a≔ω⋅2+3
a0,a,a2,a3,a4
1,ω⋅2+3,ω2⋅2+ω⋅6+3,ω3⋅2+ω2⋅6+ω⋅6+3,ω4⋅2+ω3⋅6+ω2⋅6+ω⋅6+3
0ω,1ω,2ω,3ω,4ω
0,1,ω,ω,ω
2ω·2,2ω·2+3,2ω2+3,2ωω+3
ω2,ω2⋅8,ωω⋅8,ωωω⋅8
aa=ωω·2·a3
ωω⋅2+3⋅2+ωω⋅2+2⋅6+ωω⋅2+1⋅6+ωω⋅2⋅3=ωω⋅2+3⋅2+ωω⋅2+2⋅6+ωω⋅2+1⋅6+ωω⋅2⋅3
The inert exponentiation operator is useful for display purposes:
result≔a&ˆa:
result=value⁡result
ω⋅2+3ω⋅2+3=ωω⋅2+3⋅2+ωω⋅2+2⋅6+ωω⋅2+1⋅6+ωω⋅2⋅3
Parametric examples:
b≔Ordinal⁡2,x+1,1,y,0,z+1
b≔ω2⋅x+1+ω⋅y+z+1
b4
ω8⋅x+1+ω7⋅y+ω6⋅x⁢z+x+z+1+ω5⋅y+ω4⋅x⁢z+x+z+1+ω3⋅y+ω2⋅x⁢z+x+z+1+ω⋅y+z+1
o≔Ordinal⁡ω,3,2,y,0,z
o≔ωω⋅3+ω2⋅y+z
oω
ωω2
oω+1=oω·o
ωω2+ω⋅3+ωω2+2⋅y+ωω2⋅z=ωω2+ω⋅3+ωω2+2⋅y+ωω2⋅z
oω+2
Error, (in Ordinals:-Power) cannot determine if z is nonzero
o+1ω+2
ωω2+ω⋅2⋅3+ωω2+ω+2⋅y+ωω2+ω⋅3⁢z+3+ωω2+2⋅y+ωω2⋅z+1
The Ordinals[Power], Ordinals[`^`] and &^ commands were introduced in Maple 2015.
For more information on Maple 2015 changes, see Updates in Maple 2015.
See Also
Ordinals
Ordinals[Log]
Ordinals[Mult]
Ordinals[Ordinal]
value
Download Help Document