In 1998 I felt compelled to research a certain number I felt was over looked. The inspiration actually came from a dream. I quickly began writing friends and telling them I was going to discover a new constant. I first called the constant rc for root constant. Later it became the MRB Constant for the Marvin Ray Burns Constant. My first tools were a Casio programmable graphing calculator and a Sony hand-held "computer-organizer" and a makeshift internet connection. I went to the Inverse Symbolic Calculator Site and used a very old form of Maple. Here is the story surrounding my compulsion: Download 565_final1.doc
From the autobiography in the above final1.doc, you see that I experienced something mystical while researching that constant with maple. As you read in final1.doc, I am a tradesman; however, the intoxicating power of numbers left me hung-over for knowledge. Particularly, there was the Irresistible draw on my mind that there could be something special to be discovered about that constant I mentioned in the last paragraph. It was in my search for something special about that constant,from an alternating series, that I enrolled in college as a 40 year old.
However, in my second semester of calculus, I got the sad impression from my books that that many alternating series do not converge and thus you can not rely on them to give you any particular values. These series do not converge. They have nothing to do with convergence. They are valueless (have no defined sum). Having already explored some of those alternating series, I was left with a bitter taste in my mouth. Here is a worksheet about a family of so called "non converging" alternating series’ that we can rely on to converge upon at least one constant value. Download 565_mrbgraphs.mws
For more information of the constant shown in the above worksheet you may study this file.
It has a link to a third part that might be of some interest.
Download 565_QA-1.doc
I make no claim to rigor or expertise; the above is just my findings thus far. Click the above MRB Constant Link to continue reading marvinrayburns.com
From the study bench of
Marvin Ray Burns
(317) 371-6571
P.O. Box 19785
Indianapolis, IN 46219
Consider the following family of series.
> restart;
> f:=x->sum((-1)^n*(n^(1/n)),n=1..x);

> f1:=x->sum((-1)^n*(n^(1/n)-1),n=1..x);

> f2:=x->sum((-1)^n*(n^(1/n)-2),n=1..x);

We could also let
,
and so on.
The series' have the following sequence of partial sums.
> for i from 3 to 30 do printf("%f, %f, %f\n",evalf(f(i)),evalf(f1(i)),evalf(f2(i))) od;
-1.028036, -0.028036, 0.971964
0.386178, 0.386178, 0.386178
-0.993552, 0.006448, 1.006448
0.354454, 0.354454, 0.354454
-0.966015, 0.033985, 1.033985
0.330824, 0.330824, 0.330824
-0.945694, 0.054306, 1.054306
0.313232, 0.313232, 0.313232
-0.930343, 0.069657, 1.069657
0.299732, 0.299732, 0.299732
-0.918382, 0.081618, 1.081618
0.289060, 0.289060, 0.289060
-0.908800, 0.091200, 1.091200
0.280407, 0.280407, 0.280407
-0.900945, 0.099055, 1.099055
0.273242, 0.273242, 0.273242
-0.894381, 0.105619, 1.105619
0.267205, 0.267205, 0.267205
-0.888808, 0.111192, 1.111192
0.262043, 0.262043, 0.262043
-0.884012, 0.115988, 1.115988
0.257574, 0.257574, 0.257574
-0.879837, 0.120163, 1.120163
0.253664, 0.253664, 0.253664
-0.876167, 0.123833, 1.123833
0.250211, 0.250211, 0.250211
-0.872912, 0.127088, 1.127088
0.247138, 0.247138, 0.247138...
Notice every other partial sum is shared by the three series.
> for i from 1 to 15 do printf("%f, %f, %f\n",evalf(f(2*i)),evalf(f1(2*i)),evalf(f2(2*i))) od;
0.414214, 0.414214, 0.414214
0.386178, 0.386178, 0.386178
0.354454, 0.354454, 0.354454
0.330824, 0.330824, 0.330824
0.313232, 0.313232, 0.313232
0.299732, 0.299732, 0.299732
0.289060, 0.289060, 0.289060
0.280407, 0.280407, 0.280407
0.273242, 0.273242, 0.273242
0.267205, 0.267205, 0.267205
0.262043, 0.262043, 0.262043
0.257574, 0.257574, 0.257574
0.253664, 0.253664, 0.253664
0.250211, 0.250211, 0.250211
0.247138, 0.247138, 0.247138 ...
Maple confirms to us that even partial sums are shared by both f and f1. However, it is not accurate enough to find all of the zeros by itself. Nor does it know we are looking for positive numbers of terms.
> fsolve(f1(x)-f(x),x,avoid={x=0,x=-6});

> R2 := evalf[5](fsolve(1/2*(-1)^(x+1)+1/2,x,avoid = {x = -6, x = 0}));

We can see the shared, "every other partial sum," in the following graphs, where all of the green, blue and red graphs meet.
> with(plots):
for Inf from 0 to 80 by 20 do
P0(Inf):=plot(Re(f(x)),x=1..Inf,color=green):
P1(Inf):=plot(Re(f1(x)),x=1..Inf,color=blue):
P2(Inf):=plot(Re(f2(x)),x=1..Inf,color=red) od:
for Inf from 0 by 20 to 80 do display([P0(Inf),P1(Inf),P2(Inf)]) od;





Notice that the blue, red and green graphs meet at least one y-value. As x goes to infinity, that y-value is the value of the MRB Constant.
This has served as an introduction to the constant. This is a good time to review my file QA-1.doc and its one hyperlink.
For future investigation, I will look for the MRB Constant in the following two sets of graphs (i and ii).
> for Inf from 0 to 80 by 20 do
P0(Inf):=plot(abs(f(x)),x=1..Inf,color=green):
P1(Inf):=plot(abs(f1(x)),x=1..Inf,color=blue):
P2(Inf):=plot(abs(f2(x)),x=1..Inf,color=red) od:
for Inf from 0 by 20 to 80 do display([P0(Inf),P1(Inf),P2(Inf)]) od;





[updated Dec 17, 2006 MRB]
> for Inf from 0 to 80 by 20 do
P0(Inf):=plot(Im(f(x)),x=1..Inf,color=green):
P1(Inf):=plot(Im(f1(x)),x=1..Inf,color=blue):
P2(Inf):=plot(Im(f2(x)),x=1..Inf,color=red) od:
for Inf from 0 by 20 to 80 do display([P0(Inf),P1(Inf),P2(Inf)]) od;
>





[updated Feb05,2007 MRB]
This post was generated using the MaplePrimes File Manager
View 1_mrbgraphs.mw on MapleNet or Download 1_mrbgraphs.mw
View file details
marvinrayburns.com
searchme!
Marvin Ray Burns
Comments
Updated
I updated your post with the contents of your worksheet. I have also placed it on the front page of MaplePrimes.
____
William Spaetzel
Marketing Engineer, Maplesoft
curious
I must have missed something in this post. Perhaps you could help me understand what some of the insights are?
You started off with something like,
F1:=sum((-1)^n*(n^(1/n)-1),n=1..x):
F2:=sum((-1)^n*(n^(1/n)-2),n=1..x):
F3:=sum((-1)^n*(n^(1/n)-3),n=1..x):
And then you noticed that for each second set of values for these, ie.for x=2,4,6, the F1, F2, and F3 would agree.
But that's just because when x is any even positive integer all three of F1, F2, and F3 simplify immediately to sum((-1)^n*n^(1/n),n = 1 .. infinity);
Now, Maple can show that directly, with,
simplify([F1,F2,F3]) assuming x::even;
You wrote, "Notice that the blue, red and green graphs meet at least one y-value. As x goes to infinity, that y-value is the value of the MRB Constant." But isn't that just the same as the limits of any subsequences of the function coloured green itself, as x goes to infinity? What do the red and blue curves add, for illustrating the behaviour of the green curve?
So it seems that you've named sum((-1)^n*n^(1/n),n=1..infinity) . Is that right?
What do you think of the value that Maple gives when one takes evalf() of that expression? Do you think that the green curve has some subsequences that converge to both a positive number and a negative number? If so, how do you think that those relate to the evalf() result?
I couldn't follow what the summations mean when the index ranges from 1 to sqrt(3). I had thought that the dummy index n was representing positive integers. What does this mean,
sum((-1)^n*n^(1/n),n = 1 .. 27*6^(1/2))));
Thanks very much,
acer
acer, you wrote:>I couldn't
acer, you wrote:
>I couldn't follow what the summations mean when the index ranges from 1 to sqrt(3). I had
>thought that the dummy index n was representing positive integers. What does this mean,
>sum((-1)^n*n^(1/n),n = 1 .. 27*6^(1/2))));
It is important to know, there I am just exploring to see what value
is represented by the graphs that I intend to research next.
You wrote:
>But isn't that just the same as the limits of any subsequences of the function coloured
>green itself, as x goes to infinity? What do the red and blue curves add, for illustrating
>the behaviour of the green curve?
Yes you are right in that it is the top of the green graph. However, as
I demonstrated in the above table, the top value graphed in green is shared
(every other term) by the red and blue.
That sharig of values is because, as you correcly wrote,
>But that's just because when x is any even positive integer all three of F1, F2, and F3
>simplify immediately to sum((-1)^n*n^(1/n),n = 1 .. infinity);
The point of the post is not that it is hard to understand.
The point is, my books failed to tell me that there exists rich value
in breaking up some non-converging infinite series into two series that
do converge. As far as my point is concerned, I only have
scratched the surface. I see (and foresee) that in all disciplines, where there
exists a model that has non-converging alternating sums, much progress can be made
in breaking up the model into series that do indeed converge.
I hope this helps,
From the study bench of
Marvin Ray Burns
(317) 371-6571
P.O. Box 19785
Indianapolis, IN 46219
Well known
Not everything can be covered in basic undergraduate courses...
The types of things you are ``discovering'' were (in part) already well-known to Euler. If you want a (ahem) modern introduction to this topic, I certainly recommend the book Divergent Series by G.H.Hardy. If you read French, then Lecons sur les series divergentes by Borel is well worth it.
Please interject: vous plaît; je vous en prie plaire; être agréa
I believe that some of you could build upon the ideas
I've only broached upon in this blog; I have written these
comments for that purpose. Do not think I will be
offended by your comments and constructive criticism.
marvinrayburns.com
searchme!
Marvin Ray Burns
Rather rude
I do believe that it is rather rude to keep making small changes to your old posts for no other apparent reason than to have your posts show up on the "Recent comments" section. Along the same lines, having 4 lines of content to 6 lines of self-advertising is not very friendly either.
I'm Self Serving
I must confess, I think of the web as a place for people to make themselves and ideas known, If others aren’t posting a lot, I don’t feel bad about using a little of their share of limelight.
I feel somewhat justified in answering questions and posting my (possibly meager) findings followed by a signature that gets me some attention.
I might be alone in that feeling; that’s fine. I just have a need for attention. Right now I seem offensive some people; only for the offence am I sorry.
One great thing about the web, it is self-policing.
These posts still are not all I want them to be; I do try to do my tweaking in groups. That is better that tweaking one every hour.
I’ll try to leave these posts alone for a few days. Maybe I’ll get a new post written.
marvinrayburns.com
searchme!
Marvin Ray Burns
Updates
The post has gotten to the point where it is so incredibly long that no one could read and understand the whole thing.
What I would recommend it that you make a new blog post that talks about what else you have found about your constant.
If you separate the updates into new blog posts, it will be easier for readers to follow along. Also, your posts will appear in the "Recent blog posts" section. instead of the "Recent comments", so you won't be hiding other people's comments.
____
William Spaetzel
MaplePrimes Administrator
Software Developer, Maplesoft
actually
So, since the limit(n^(1/n),n=infinity) is 1, do you suspect that partial sums of the alternating series (-1)^n*n^(1/n) would necessarily have two limiting values (in terms of the alternating partial sums)?
How do you suspect that this might relate, if at all, to the value returned from,
evalf(sum((-1)^n*n^(1/n),n=1..infinity));
Maybe there already is a body of theory for this sort of thing.
What do you foresee a theory about this looking like? I ask because, once one has been motivated by some casual observations, the next step in mathematics is to develop a formalism and a notation. It's not easy to get a good notation, but a sure sign of success is that good notation leads to rich insight. I'm not sure that insight can come from observation alone.
acer
One Member of the Family is an Absolutely Converging Series
I show in the worksheet, mrbgraphs a, that the constant of concern (the MRB Constant) is indeed a limiting point at Infinity for one member of the family. Since all members have equal partial sums at even intervals, they all converge to the mrb in the following sense.
Last update, Firday Dec 17, 7:17PM
restart;
f1:=x->sum((-1)^n*(n^(1/n)-1),n=1..x);
Technically, as x goes to infinity, f1(x) does converge. n^(1/n)->0 as n->infinity. Therefore, the function that describes the local maximums of f:
aslo converges.
Because the function that describes the local maximums of f converges and because the limit(x^1/x,x=infinity)=1, the function that describes the local minimums of f:
also converges.
limit(x^1/x,x=ininity);
As for the plots I was concerned about in mrbgraphs 1, I can focus solely upon f1 since we know it converges. I will look at the real and imaginary parts and the absolute value of f1.
with(plots):
Warning, the name changecoords has been redefined
Inf:=20:
P0(Inf):=plot(Re(f1(x)),x=1..Inf,color=green,tickmarks=[21,3],style=point):
P1(Inf):=plot(Im(f1(x)),x=1..Inf,color=blue,tickmarks=[21,3],style=point):
P2(Inf):=plot(abs(f1(x)),x=1..Inf,color=red,tickmarks=[21,3],thickness=3):
display([P0(Inf),P1(Inf),P2(Inf)]);
From the red graph, it appears that abs(f1) has local minimums (mins) at every odd value of x and the value of a min is getting closer to the value of the next odd value as the value of x grows without bound .
By definition, the red graph, the absolute value of f1 is simply sqrt((-1/2*sin(n*Pi))^2+Re(f1(n))^2); in maple's natural simplification: (I say nothing esle about that.)
ff1:=sqrt((-1/2*sin(n*Pi))^2+Re(f1(n))^2);
Looking further along the x-axis of graph we see that those mins head twoard the MRB Constant, here called f .
f:=sum((-1)^n*(n^(1/n)-1),n=1..infinity):
Inf:=200:
mrb:=plot(f,x=120..Inf,color=black):
P0(Inf):=plot(Re(f1(x)),x=120..Inf,color=green):
P1(Inf):=plot(Im(f1(x)),x=120..Inf,color=blue):
P2(Inf):=plot(abs(f1(x)),x=120..Inf,color=red,thickness=2):
#3 graphs zooming in on the MRB:
display([mrb,P0(Inf),P1(Inf),P2(Inf)]);
display([mrb,P0(Inf),P1(Inf),P2(Inf)],view=[120..200,evalf(f-1/2^2)..evalf(f+1/2^2)]);
display([mrb,P0(Inf),P1(Inf),P2(Inf)],view=[180..200,evalf(f-1/2^3)..evalf(f+1/2^3)]);
This post was generated using the MaplePrimes File Manager
View 565_mrbgraphs a.mw on MapleNet or Download 565_mrbgraphs a.mw
View file details
Updated and MaplePrimes bug
I replaced your images with an HTML version of your worksheet.
If you upload your worksheets in .mw format, MaplePrimes will give you the HTML code that you can paste in. Much easier than uploading screenshots.
You also seem to have found a bug with the site, when you upload in image with a space in the filename, the resizing script does not work correctly. I will fix that.
____
William Spaetzel
Marketing Engineer, Maplesoft
Spirit of JacquesC’s Reply and f1's Convergence
In the spirit of JacquesC’s reply, since f1:=x->sum((-1)^n*(n^(1/n)-1),n=1..x); is an absolutely converging series. The work of crunching out the digits of f1 qualifies for the following methods of (accelerated) convergence; however, practically speaking, only a few really are applicable.
http://numbers.computation.free.fr/Constants/Miscellaneous/seriesacceleration.html
More convenient are two other methods that I know of. One is mentioned in
Let.doc
Since f1 is a partially alpha-convex series(after about the third or fourth term), the methods in
Download 565_4148474.pdf
apply but are hard to understand.
On the other hand, since f1 is a reasonably well-behaved function with a(n)->0 as n->infinity, the algorithms found in
http://projecteuclid.org/Dienst/UI/1.0/Summarize/euclid.em/1046889587
are easier to use.
Attached, also, is a worksheet that demonstates the absolute convergence of f1.
Download 565_mrb dec 17-2.mw
View file details
n-Dimensional Cubes
Previously, we read the link QA-1.doc.
Then we looked at the worksheets describing functions f and f1;
we began to investigate how the summing of their terms can produce a value that represents the value of the MRB Constant.
In this worksheet we will use a pair of sequence of terms s and s1;
we will use them to stack n-dimensional cubes on a 2D coordinate plane in a way that also represents the value of the MRB Constant.
restart;
with(plots):
Warning, the name changecoords has been redefined
s:=n->(-1)^n*n^(1/n):s1:=n->(-1)^n*(n^(1/n)-1):alias(p=pointplot):inf:=2^10:
First we have a stacking of n-dimensional cubes:
the sequence, s, centered at the y-axis, and afterward the series, s, stacked according to QA-1.doc.
p({seq([s(n),n],n=1..inf)});
p({seq([sum(s(u),u=1..n),n],n=1..inf)});
Next, we have a stacking of n-dimensional cubes:
the sequence, s1, centered at the y-axis, afterward the series, s1, stacked according to QA-1.doc.
p({seq([s1(n),n],n=1..inf)});
p({seq([sum(s1(u),u=1..n),n],n=1..inf)});
As the graph goes up -- i.e. as y goes to infinity -- the plateau is removed and it is replaced with a peak.
We see that the sides of the two stacks are shifted from their position in the graph of s to other positions in s1.
Graphically, this peak makes the series' -- i.e. s1 and accordingly f1 -- absolutely converging.
Since we now have a peak, the top left of the map of the series s is shifted by the absolute value of the MRB Constant.
This post was generated using the MaplePrimes File Manager
View 565_mrb dec 17-3.mw on MapleNet or Download 565_mrb dec 17-3.mw
View file details
Some Plot Qualities Part 1
See
MRB Constnat-A
Some Plot Qualities Part 2
MRB Constnat-A
Some Plot Qualities Part 3
MRB Constnat-A
Some Plot Qualities Part 4
MRB Constnat-A
Some Plot Qualities Part 5
MRB Constnat-A
Some Plot Qualities Part 6
MRB Constnat-A
Some Plot Qualities Part 7 and moving on
MRB Constnat-A
Some Numeric Qualities Part 1
See
MRB Constnat-B
Some Numeric Qualities Part 2
MRB Constnat-B
Some Numeric Qualities Part 3
MRB Constnat-B
Some Numeric Qualities Part 4
MRB Constnat-B
Some Numeric Qualities Part 5
MRB Constnat-B
Some Numeric Qualities Part 6
MRB Constnat-B
Some Numeric Qualities Part 7 and moving on
We have been using a process called mit to manufacture the various family members of the MRB Constant.
Continuing in that mode we will use it again to compute m, or the MRB Constant.
restart:
mit := proc (it) global git, m; git := proc (n); (-1)^n*(n^(1/n)-it) end proc; m := sum(git(n),n = 1 .. infinity) end proc;
m:=mit(1):
This is important for understanding the following, the MRB Constant=mit(1)=g1, mit(0)=g0, mit(2)=g(2), etc
Previously when asked:
i. What real numbers to (the power of) their own roots equal mit(1)?
ii. What real number do we get when we raise mit(1) to the power of itself an infinate number of times?
We discovered:
i. and ii. have the same answer.
r:=fsolve(x^(1/x)=mit(1),x);
.
Before I show you the following trick, let's review in the following sentence.
m Is the alternating sums of all integers to (the power of) their roots; r is one number to its root that equals m.
Now we go a step further, to the area under the curve of r to (the power of) all roots. And find out -- that area is nearly rational!
int(r^(x/r),x=1..infinity);
4466/39750.;
This post was generated using the MaplePrimes File Manager
View 565_Jan 1.mw on MapleNet or Download 565_Jan 1.mw
View file details
As we move on, this would be a good time to introduce a
process that will give us desired approximations to the MRB Constant.
I give this to you with the following caveat. Do to the internal structure of Maple
the last 2 to 4 digits may not always be correct.
However, you can use this process to compute many thousands of digits
of MRB. I hold the present world record of 40,000 digits. With little or no
fine tuning of the process, you might be able to beat my record.
e:=100:
restart:
mrb:=proc(e)
local a,b,c,d,s,k,n,m:
if e < 100 then n:=31+e;Digits:=31+e else
n:=131*round(e/100);Digits:=131*round(e/100) end if:
a:=array(0..n-1):
a[0]:=1:
for m from 1 to n-1 do
a[m]:=(m+1)^(1/(m+1)) od:
d:=(3+sqrt(8))^n:
d:=(d+1/d)/2:
b:=-1:
c:=-d:
s:=0:
for k from 0 to n-1 do c:=b-c:
b:=(k+n)*(k-n)*b/((k+1/2)*(k+1)):
s:=s+c*a[k] od:
Digits:=e:
print(evalf(1/2-s/d))
end proc:
for a from 2 to 20 do mrb(a) od:
mrb(100);
mrb(1000);
This post was generated using the MaplePrimes File Manager
View 565_mrb approx.mw on MapleNet or Download 565_mrb approx.mw
View file details
My Desire
Download 565_Jan 1.mw
View file details
Download 565_mrb approx.mw
View file details
MRB Constant Approximations Found
m+(11^(2/3)-3^(1/2)-22)/100~=8.88E-8
For the numerically curious, there are many approximations involving the NRB Constant at
QA-1.doc
marvinrayburns.com
searchme!
Marvin Ray Burns
Improvements to MRB process
It looks like we will need to do some tweaking to beet my 40,000 digit record. With the process I gave you last time, most Maple versions seem to wear out between 2000 and 5000 digits.
This first improvement is mostly cosmetic.
It uses hyperbolic functions.
restart:
mrb1:=proc(e)
local a,b,c,d,s,k,n,m:
if e < 100 then n:=31+e;Digits:=31+e else
n:=131*round(e/100);Digits:=131*round(e/100) end if:
a:=array(0..n-1):
a[0]:=1:
for m from 1 to n-1 do
a[m]:=1/2*(sinh(2*ln(m+1)/(m+1))+2*cosh(ln(m+1)/(m+1))^2-2)/sinh(ln(m+1)/(m+1)) od:
d:=1/2*(3+2*2^(1/2))^n+1/2/(3+2*2^(1/2))^n:
b:=-1:
c:=-d:
s:=0:
for k from 0 to n-1 do c:=b-c:
b:=2*b*(k^2-n^2)/((2*k+1)*(k+1)):
s:=s+c*a[k] od:
Digits:=e:
print(evalf(1/2-s/d))
end proc:
for a from 2 to 20 do mrb1(a) od:
[same results as in Some Numeric Qualities Part 7 and moving on]
Improvements to MRB process part 2
After much tinkering, kudos to maple for the effectiveness of its sum command.
As promised here is an improvement to mrb().
Here, mrb 2 is at least 20% more accuarte than mrb and mrb1.
restart:
mrb2:=proc(e)
local a,b,c,d,s,k,n,m,w,x:
global r:
if e < 100 then n:=31+e;Digits:=31+e else
n:=131*round(e/100);Digits:=131*round(e/100) end if:
a:=array(0..n-1):
a[0]:=1:
for m from 1 to n-1 do
a[m]:=(m+1)^(1/(m+1)) od:
d:=(3+sqrt(8))^n:
d:=(d+1/d)/2:
b:=-1:
c:=-d:
s:=0:
for k from 0 to n-1 do c:=b-c:
b:=(k+n)*(k-n)*b/((k+1/2)*(k+1)):
s:=s+c*a[k] od:
w:=x->(x^(1/x)-1);
r:=1/2-s/d:result:=evalf(r+1/4*(w(10^(n+1))-w(10^(n+2))),e)
end proc;
Warning, `result` is implicitly declared local to procedure `mrb2`
for a from 2 to 20 do mrb2(a) od;:
[same results as are found in, Improvements to MRB process part 1]