Evaluating the Svein-Graham Sum

  • Thread starter Thread starter 6c 6f 76 65
  • Start date Start date
  • Tags Tags
    Sum
AI Thread Summary
The discussion centers on the Svein-Graham sum and the quest for a simpler evaluation formula. A participant shares their Mathematica function, sg[x, k], which computes the sum and generates plots for values of x between 1 and 2 as k varies from 1 to 5. There is interest in deriving an analytic expression similar to the formula for the sum of integers, and a potential connection to Bernoulli numbers is suggested. The conversation highlights the complexity of the Svein-Graham sum and the desire for a more straightforward mathematical representation. Overall, the thread emphasizes the intersection of mathematics and computational methods in exploring this sum.
6c 6f 76 65
Messages
22
Reaction score
0
Good evening dearest physicians and mathematicians,

I recently came across the so-called "Svein-Graham sum", and i wondered: is it possible to find a simple formula for evaluating it?
\sum_{i=0}^k x\uparrow\uparrow i = \left .1+x+x^x+x^{x^x}+ ... +x^{x^{x^{x^{.^{.^{.^x}}}}}}\right \}k
 
Mathematics news on Phys.org
Hi, I use Mathematica to define a function sg[x,k] to calculate the Svein-Graham sum and plot some figures for ##x \in [1,2]## with ##k## varies from 1 to 5.
Code:
sg[x_, k_] := Module[{f},
  f[y_] := #^y &;
  (FoldList[f[x], x, Range[k - 1]] // Total) + 1]
Plot[sg[x, #], {x, 1, 2}] & /@ Range[1, 5]
 
Last edited:
Quantioner said:
Hi, I use Mathematica to define a function sg[x,k] to calculate the Svein-Graham sum and plot some figures for ##x \in [1,2]## with ##k## varies from 1 to 5.
Code:
sg[x_, k_] := Module[{f},
  f[y_] := #^y &;
  (FoldList[f[x], x, Range[k - 1]] // Total) + 1]
Plot[sg[x, #], {x, 1, 2}] & /@ Range[1, 5]
I was looking for a more analytic expression like \sum_{i=1}^n i = \frac{n(n+1)}{2}. Maybe it's possible to find yet another connection to the Bernoulli numbers? But thank you nevertheless!
 
Suppose ,instead of the usual x,y coordinate system with an I basis vector along the x -axis and a corresponding j basis vector along the y-axis we instead have a different pair of basis vectors ,call them e and f along their respective axes. I have seen that this is an important subject in maths My question is what physical applications does such a model apply to? I am asking here because I have devoted quite a lot of time in the past to understanding convectors and the dual...
Insights auto threads is broken atm, so I'm manually creating these for new Insight articles. In Dirac’s Principles of Quantum Mechanics published in 1930 he introduced a “convenient notation” he referred to as a “delta function” which he treated as a continuum analog to the discrete Kronecker delta. The Kronecker delta is simply the indexed components of the identity operator in matrix algebra Source: https://www.physicsforums.com/insights/what-exactly-is-diracs-delta-function/ by...

Similar threads

Replies
8
Views
2K
Replies
1
Views
2K
Replies
6
Views
2K
Replies
2
Views
2K
Replies
3
Views
1K
Replies
1
Views
1K
Replies
2
Views
2K
Back
Top