Matrix Operator Method
#39
bo198214 Wrote:So the finding is that though the matrix multiplication of the T's is infinite, the result is expressible in finite terms (polynomials) of \( \text{log}(b) \)?

Exactly. The occuring infinite sums are decomposable into sums of simple exponential-series for which then exact values are defined (and computable to arbitrary precision). The compositions of the evaluated exponentials contain then only finitely many terms. See the display of the matrix T^2. I found these by studying the dot-products of the rows and second column of T*T which was then easily generalizable to the other columns of the matrix-product.

Quote:That would be useful to compare. Can you derive a recurrence from your matrix formula?

Yes. For this I see another streamlining of the formula first:
Note, that T = U * P~ , which can also be seen by the operation
Code:
´
  V(x)~ * T = V(b^x)~
  V(x)~ * U = V(b^x -1)~
  also: V(b^x -1)~ * P~ = V(b^x)~
  thus: V(x)~ * (U * P~ ) = V(b^x)~
  ==> U * P~  = T

A further adaption can be made. We have, that the final term in T^2 = U*dV(b^^0) * T*dV(b^^1) is
Code:
´
  T*dV(b^^1) = U *P~ * dV(b^^1)

We can rewrite this in terms of a power of P ( use notation "PPow()" ) by expanding with the trivial product dV(b^^1)*dV(1/b^^1)= I
Code:
´
  T*dV(b^^1) = U *    dV(b^^1)*dV(1/b^^1)   * P~ * dV(b^^1)
             = U * dV(b^^1)*  (dV(1/b^^1)   * P~ * dV(b^^1))
             = U * dV(b^^1)*            PPow(b^^1) ~
The general product-formula changes then to

Code:
´
  T^h =   prod_{k=0}^{h-1} (U * dV(b^^k))
       * PPow(b^^(h-1)) ~

and a recursion is then
Code:
´
  T^(h+1) = T^h    * PPow(-b^^(h-1))~ * U * dV(b^^h) * PPow(b^^h)~

or, even more simple

  T^(h+1) = T^h    * PPow(-b^^(h-1))~ * T * dV(b^^h)

where the first part of the product , T^h * PPow(-b^^(h-1))~ , gives a triangular matrix.

The recursion may also be seen "in action", when evaluated for a parameter x. We need an ascii notation for iterated exponentiation, I use x.b^^h for exp_b°h(x) here, or if x=1, simply b^^h .

We have by definition, that
Code:
'
  V(x)~ * T^(h+1) = V(x.b^^(h+1)) ~

Using the recursion-formula we get
Code:
'
  V(x)~ * T^(h+1) = V(x) ~*T^h  * PPow(-b^^(h-1))~ * T     * dV(b^^h)
                  = V(x.b^^h) ~ * PPow(-b^^(h-1))~ * T     * dV(b^^h)
                  =        V(x.b^^h - b^^(h-1))~   * T     * dV(b^^h)
                  =          V(b^(x.b^^h - b^^(h-1)))~     * dV(b^^h)
                  =          V(b^(x.b^^h)/b^(b^^(h-1)))~   * dV(b^^h)
                  =          V(x.b^^(h+1)/b^^h)~           * dV(b^^h)
                  =          V(x.b^^(h+1))~ * dV(1/b^^h)   * dV(b^^h)
                  =          V(x.b^^(h+1))~ *              I
                  =          V(x.b^^(h+1))~
which is the same result.
Gottfried Helms, Kassel
Reply


Messages In This Thread
Matrix Operator Method - by Gottfried - 08/12/2007, 08:08 PM
RE: Matrix Operator Method - by bo198214 - 08/13/2007, 04:15 AM
RE: Matrix Operator Method - by jaydfox - 08/13/2007, 05:40 AM
RE: Matrix Operator Method - by Gottfried - 08/13/2007, 09:22 AM
RE: Matrix Operator Method - by bo198214 - 08/14/2007, 03:43 PM
RE: Matrix Operator Method - by Gottfried - 08/14/2007, 04:15 PM
RE: Matrix Operator Method - by bo198214 - 08/26/2007, 12:18 AM
RE: Matrix Operator Method - by Gottfried - 08/26/2007, 11:24 AM
RE: Matrix Operator Method - by bo198214 - 08/26/2007, 11:39 AM
RE: Matrix Operator Method - by Gottfried - 08/26/2007, 04:22 PM
RE: Matrix Operator Method - by Gottfried - 08/26/2007, 10:54 PM
RE: Matrix Operator Method - by bo198214 - 08/27/2007, 08:29 AM
RE: Matrix Operator Method - by Gottfried - 08/27/2007, 11:04 AM
RE: Matrix Operator Method - by bo198214 - 08/27/2007, 11:35 AM
RE: Matrix Operator Method - by Gottfried - 08/27/2007, 11:58 AM
RE: Matrix Operator Method - by bo198214 - 08/27/2007, 12:13 PM
RE: Matrix Operator Method - by Gottfried - 08/27/2007, 01:19 PM
RE: Matrix Operator Method - by Gottfried - 08/27/2007, 02:29 PM
RE: Matrix Operator Method - by bo198214 - 08/27/2007, 02:36 PM
RE: Matrix Operator Method - by Gottfried - 08/27/2007, 03:09 PM
RE: Matrix Operator Method - by bo198214 - 08/27/2007, 07:15 PM
RE: Matrix Operator Method - by Gottfried - 08/27/2007, 08:15 PM
RE: Matrix Operator Method - by bo198214 - 08/29/2007, 05:28 PM
RE: Matrix Operator Method - by Gottfried - 08/27/2007, 12:43 PM
RE: Matrix Operator Method - by Gottfried - 10/08/2007, 12:11 PM
RE: Matrix Operator Method - by Gottfried - 10/14/2007, 09:32 PM
RE: Matrix Operator Method - by Gottfried - 04/04/2008, 09:41 AM
RE: Matrix Operator Method - by Gottfried - 04/17/2008, 09:21 PM
RE: Matrix Operator Method - by bo198214 - 04/25/2008, 03:39 PM
RE: Matrix Operator Method - by Gottfried - 04/26/2008, 06:09 PM
RE: Matrix Operator Method - by bo198214 - 04/26/2008, 06:47 PM
RE: Matrix Operator Method - by Gottfried - 04/18/2008, 01:55 PM
RE: Matrix Operator Method - by Gottfried - 07/08/2008, 06:46 AM
RE: Exact entries for T-tetration Bell-matrix - by Gottfried - 09/26/2008, 09:56 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Fractional tetration method Koha 2 6,119 06/05/2025, 01:40 AM
Last Post: Pentalogue
  The ultimate beta method JmsNxn 8 11,005 04/15/2023, 02:36 AM
Last Post: JmsNxn
  greedy method for tetration ? tommy1729 0 3,045 02/11/2023, 12:13 AM
Last Post: tommy1729
  tommy's "linear" summability method tommy1729 15 18,345 02/10/2023, 03:55 AM
Last Post: JmsNxn
  another infinite composition gaussian method clone tommy1729 2 5,056 01/24/2023, 12:53 AM
Last Post: tommy1729
  Semi-group iso , tommy's limit fix method and alternative limit for 2sinh method tommy1729 1 4,639 12/30/2022, 11:27 PM
Last Post: tommy1729
  Matrix question for Gottfried Daniel 6 9,279 12/10/2022, 09:33 PM
Last Post: MphLee
  [MSE] short review/implem. of Andy's method and a next step Gottfried 4 6,816 11/03/2022, 11:51 AM
Last Post: Gottfried
  Is this the beta method? bo198214 3 6,140 08/18/2022, 04:18 AM
Last Post: JmsNxn
  Describing the beta method using fractional linear transformations JmsNxn 5 8,781 08/07/2022, 12:15 PM
Last Post: JmsNxn



Users browsing this thread: 14 Guest(s)