Alexander Bass

Math Notes Fall 24

Often times when trying to teach myself math I come across little tidbits that, while likely not original, are neat and obscure. Here are some.

Integrals of Step Functions

The integral of the function x with respect to x is equal to

xdx==n=0x1n+(xx)(x)=12(x1)(x1+1)+(xx)x=(x12)x12x2

A similar process can be done for the ceiling function x .

xdx==n=0xn+(x(x))x=12x(x+1)+(xx)x=(x+12)x12x2

I’ll spare the fine details on the final one. The ‘round to the nearest integer’ function nint(x) can also be integrated.

nint(x)dx=x(nint(x))12nint(x)2

Fibonacci Sequence

The Fibonacci sequence is defined as

F1=F2=1Fn+2=Fn+1+Fn

Are there any Fibonacci numbers Fn such that Fn+1>2Fn ?

Fn+1=Fn+Fn1

Substitute into inequality

Fn+Fn1>2Fn Fn1>Fn

Which is never true for the sequence.


Another question: which Fibonacci numbers Fn are such that Fn+2>2Fn ?

Again substitute

Fn+1+Fn>2Fn Fn+1>Fn

Which is true for all Fibonacci numbers except for when n=1 .


In a similar spirit, it is obvious that

Fn=Fn1+Fn2

But this form can be reduced further to be a sum of Fn2 and Fn3

Fn=Fn1+Fn2=Fn2+Fn3+Fn2=2Fn2+Fn3and again=2Fn3+2Fn4+Fn3=3Fn3+2Fn4

The coefficients on the reduced forms are interesting to me. Given coefficients ak,bk in a specific level of reduced Fibonacci, find ak+1,bk+1

akFn1+bkFn2=ak(Fn2+Fn3)+bkFn2=(ak+bk)Fn2+akFn3

We define a1=b1=1 . and,

ak+1=ak+bkbk+1=ak ak+2=ak+1+bk+1=ak+1+ak

Notice something peculiar about the above identity: it’s also the Fibonacci sequence!

This allows us to define a specific level of reduced Fibonacci symbolically. Let k>1

Fn=akFnk+1+bkFnk Fn=FkFnk+1+Fk1Fnk

As an example n=10 and k=4

F10=F4F7+F3F6 55=313+28

Generalized Geometric Series

The geometric series is defined as

n=1rn

Where 1<r<1 . The algebraic way to solve for the closed form x of the series is as follows

x=r+r2+r3++rnx=r(1+r+r2++rn1)x=r(1+x)x=r1r

How about some other values for the exponent of r ? Let’s try the odd numbers 2n1

x=r+r3+r5++r2n1x=r(1+r2+r4++r2n2)x=r(1+r(r+r3++r2n3))x=r(1+rx)x=r1r2 n=1r2n1=r1r2

How about for the multiples of three 3n

x=r3+r6+r9++r3nx=r3(1+r3+r6++r3n3)x=r3(1+x)x=r31r3 n=1r3n=r31r3

Generally, it can be assumed that for any natural number k>0 and for any real r where 1<r<1 that

n=1rkn=rk1rk

To show that this is true, consider the following

x=rk+r2k+r3k++rnkx=rk(1+rk+r2k++rnkk)x=rk(1+x)x=rk1rk

How about for numbers which leave a remainder of two when divided by three: 3n1 ?

x=r2+r5+r8++r3n1x=r2(1+r3+r6++r3n3)

The earlier found identity allows us to solve this

x=r2(1+n=1r3n)x=r2(1+r31r3)x=r2+r51r3x=r21r3 n=1r3n1=r21r3

That got me thinking, is there a general closed form of

n=1ranb=x

where a,b , 0b<a , and 1<r<1 ?

x=rab+r2ab+r3ab++ranbx=ra(rb+rab+r2ab++ra(n1)b)x=ra(rb+x)x=rab+raxx=rab1ra

Which seems to agree with the previous result of a=3,b=1

r21r3

And the even earlier result of odd numbers a=2,b=1

r1r2

Thus I think it’s fair to say

n=1ranb=rab1ra

There’s one final case that has not been covered an+b where a,b and where a,b>0

n=1ran+b x=ra+b+r2a+b+r3a+b++ran+bx=ra+b(1+ra+r2a++ra(n1))x=ra+b(1+ra1ra)x=ra+b+r2a+b1rax=ra+br2a+b+r2a+b1ra

Thus

n=1ran+b=ra+b1ra

All this would seem to imply that if f(n) is a linear function which maps then there exists a trivially obtainable closed form for the sum

n=1rf(n)

I’d like to see this extended to other number systems than natural numbers, but I’m a bit exhausted of series at this point.