![]() |
|
Left associative exponentiation- an iteration exercise - Printable Version +- Tetration Forum (https://tetrationforum.org) +-- Forum: Tetration and Related Topics (https://tetrationforum.org/forumdisplay.php?fid=1) +--- Forum: Mathematical and General Discussion (https://tetrationforum.org/forumdisplay.php?fid=3) +--- Thread: Left associative exponentiation- an iteration exercise (/showthread.php?tid=200) |
Left associative exponentiation- an iteration exercise - Gottfried - 09/12/2008 A nice accidental result - although it is nearly trivial... I tried, which matrix-operator would perform the left-associative exponentiation - well, this can easily be solved, but the appearance of this operator was much surprising to me. First assume the factorially similarity-scaled matrices of Stirling numbers 2nd and 1st kind (as I described them many times). If S2 is that lower-triangle containing Stirling-numbers 2nd kind and S1 that containing 1st kind, then fS2F and fS1F are the factorially similarity scalings: fS1F = dF^-1 * S1 * dF fS2F = dF^-1 * S2 * dF for instance: Code: ´Now consider the matrix Code: ´If we use it as matrix-operator we have the following transform of powerseries: Code: ´Code: ´and integer iterations by integer powers of DPW_m Code: ´If we interpret V(x-1) as a binomial-transform of V(x) then we can note this at the beginning and at end we have: Code: ´and denote the new product of matrices in the parenthese formally Code: ´then we have the operator for x-> x^m or, when k-times iterated, x -> x^(m^k), whenever the product P^-1~ * () is computable. The much surprising aspect is the shape of DPW_m * P~: this is just the binomial-matrix where the columns represent the binomial-coefficients for the orders according to m - which also can be fractional. For instance, m=2, DPW_2*P~ = Code: ´which gives, premultiplied by P^-1~ (here the multiplication is possible) Code: ´For instance, the even-indexed powers in [(1),x,(x^2),x^3,(x^4)...] get simply shifted to the consecutive positions [(1),(x^2),(x^4),(x^6),...], so we have a transform of x->x^2 and of all consecutive powers. For fractional "bases of iteration" ( this means exponents here) m=1/2 Code: ´The most interesting aspect is, that with integer m the column-vectors of PW_m are finite - so we can safely define the version with P^-1~ premultiplied - which gives, for integer m (and heights) - nicely the quasi-diagonal-matrices, which transform a vandermondevector V(x) into one of V(x^2), V(x^3) or the like... And finally, the aspect, which really pleases me, is, that for fractional m we just get the correct column-vectors of fractional binomials - a smooth procedure, which I was looking for over the last monthes (unsatisfied with the hardcoded binomial-expressions otherwise) Here another example with m=2/3, which means, each multiple of third power of x in the result is composed by smaller integer powers of x, and only the other powers are composed by the infinite sequences of according fractional binomially weighted powers of x: Code: ´so, the spin-off-result here is: the fractional m in fS1F*dV(m)*fS2F*P~ gives the correct composition for the matrix-operator, which performs the binomial-theorem for fractional exponents, and its (possibly fractional) powers give the expected formal powerseries for the expected binomial composition. |