Is this entire expression for tetration legal
#3
(12/10/2012, 03:43 PM)JmsNxn Wrote: \( (^\omega b)^s = \sum_{N=0}^{\infty} \frac{\sum_{k=0}^{N} \frac{(-1)^{N-k}}{(N-k)!}(^k b)^s}{\Gamma(\omega - N +1)} \)
Mindblowing.

I'll have to look at it a bit more, but this method reminds me a lot of Woon's approach, which many on this forum have lumped in with Newton.

Code:
JmsTetrate[b_, w_, s_, m_] := Sum[Sum[(-1)^(n-k)*Tetrate[b, k]^s/(n-k)!, {k, 0, n}]/Gamma[w - n + 1], {n, 0, m}];

I tested your method with the above snippet, and it works well for small m, but it doesn't take long to blow up and overflow/underflow. I don't remember if I read it on this forum or not, but I believe someone has researched which bases the Newton methods work well for, and perhaps I was using the wrong bases. Anyway, this is certainly an interesting approach, even if it is a spin on something known.

Andrew Robbins

Refs:
S.C.Woon "Analytic Continuation of Operators" http://arxiv.org/abs/hep-th/9707206
Reply


Messages In This Thread
RE: Is this entire expression for tetration legal - by andydude - 12/13/2012, 05:03 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Transc entire = exp a + exp b + exp c tommy1729 0 5,054 07/15/2015, 07:37 AM
Last Post: tommy1729
  [entire exp^0.5] The half logaritm. tommy1729 1 8,734 05/11/2014, 06:10 PM
Last Post: tommy1729
  entire function close to sexp ?? tommy1729 8 29,904 04/30/2014, 03:49 PM
Last Post: JmsNxn
  Is the following expression for tetration useful? JmsNxn 9 27,493 11/14/2012, 11:29 PM
Last Post: tommy1729
  Understanding Abel/Schroeder with matrix-expression Gottfried 12 36,653 05/26/2008, 08:45 PM
Last Post: Gottfried



Users browsing this thread: 1 Guest(s)