Skip to main content

Latest Post

Power Essence Coefficients and Bernoulli Numbers

Previously, we have explored methods to compute the essence of power functions $Ȣx^n$ which involves solving a large system of linear equations. This method is equivalent to solving for the inverse of a large $n\times n$ matrix where entries are values of pascal's triangle. Though the matrix method allow us to solve for large number of essences at once, it does not extend easily to solve for next iterations of essence coefficients. Rather than reusing the values we have already solved for, we will have to solve for inverse of a separate larger matrix again. Here we will introduce an iterative method for solving for these coefficients. Chapter 0: Recap Let us first remind ourselves of the definition of essence. For a function $f(x)$, we want to find the transformation $Ȣf(x)$ such that we are able to 'smooth out' its series: $$\sum_{i=a}^b f(i) = \int_{a-1}^b Ȣf(x) dx$$ For example, we can solve for the following functions: $$\begin{align*}Ȣ1 &= 1 \\ Ȣx &= x +

Introduction to Sequence Curve and Essence Transformation

The concept for Summations and Series is very simple: it’s just adding up terms in a sequence! However, calculating the actual Summation can be very runtime-costly especially if number of terms being summed is very large or if terms themselves are complex. In fact, when it comes to infinite Sums, determining rather it Converges or Diverges becomes a whole new problem in itself.

A inspiration came to me as I was studying those Convergence Test off of my friends’ Calc BC worksheets: if it is possible to derive a formula for any Summations, similar to the Arithmetic Series equation or finite and infinite Geometric Series equation, calculating whether a Summation converges or diverges will become much easier, and we will be able to calculate the actual value it converges to.

Wouldn’t it be nice if we can convert a Summation into a simpler formula or a equation?

My mind immediately went to Integrals. To me, Integrals and Summation had a distinct similarity: both notation were essentially adding up values within a certain bound( Summation added up consecutive terms in Sequence, Integral added up infinite lower dimensions within bounds to calculate higher dimensional value such as Area under a curve). In fact, we first define Integral by using Summations with Riemann Summation.
What if we could go the other way around? Define Summations using Integrals?

CONCEPT

What I envisioned is a curve that will represent a Sequence. The area under that curve will represent each terms of that sequence.
Between $0$ and $1$, area under that interval will represent the first term of sequence $a_1$; between $1$ and $2$, interval will have area equal to $a_2$, and so on.
$$a_0=\int_{-1}^0f(x)dx\\
a_1=\int_0^1f(x)dx\\
a_2=\int_1^2f(x)dx\\
\vdots$$
Between interval from $n-1$ to $n$, the Integral of the curve will equal to $a_n$, the $n$-th term of the sequence.
$$a_n=\int_{n-1}^nf(x)dx$$
Visualizing how Integral of the curve will represent each term in a sequence. 
Through this representation of Sequence, we will be able to convert Summation problem into simpler Integral problem.
Summing up consecutive terms of sequences becomes summing Integrals with consecutive bounds, which in turn becomes a single Integral of larger bound.
$$\int_a^bf(x)dx+\int_b^cf(x)dx=\int_a^cf(x)dx\\
\therefore \sum_{i=n}^m a_i = \int_{n-1}^m f(x) dx$$

Visualizing Summation being represented as integral of Sequence Curve.
Arguably, computing a single Integral will be less costly and easier to calculate as bounds become larger and larger compared to Summing up each terms individually.

Now the problem only becomes what function correspond to the sequence in such a manner?
$$\sum_{i=n}^mf(i)=\int_{n-1}^mg(x)dx$$
What kind of transformations must we apply to $f(x)$ to get $g(x)$?

Ȣ Notations

To answer the question above, I will be using the $Ȣ$ Notation, as such:
$$\sum_{i=n}^mf(i) = \int_{n-1}^mȢ(f(x))dx$$

The $Ȣ$ denotes the transformation of a function to yield another curve such that the unit integral of $Ȣf(x)$ represents $f(x)$.
So in a sense, $Ȣ$ acts similarly to $\frac{d}{dx}$ and indefinite $\int dx$.

The $Ȣ$ symbol itself looks similar to Taurus Zodiac symbol and on computer will be typed as the Latin Ou Ligature(Unicode U+A64A).
Wikipedia Latin Ou (Ligature)

$$Ȣf(x) = g(x)$$
I will call the $Ȣ$ symbol itself the Ou symbol and I will pronounce $Ȣf(x)$ as the Essence of $f(x)$, similar to “derivative of” or “integral of” as I believe the resulting curve is essentially linked to the initial function $f(x)$.
The resulting function $g(x)$ will be called the Essence or the Sequence Curve and will follow the property outlined above.

Of course, the names and symbols may change later on, but this is how I’ve used them in my own notes so far.

Goals and Ambitions

I believe that once fully understood, concept of Sequence Curves an be a very useful tool.
I have few goals I wish to achieve:

First, be able to compute the Essences for the major functions, such as Power Functions, Trigonometry Functions and even logarithmic and Fraction Functions.
Second, I want to find general Rules to compute each Essences, such as the general and simple rules of finding the Derivatives.
Lastly, I want to learn the Essence equivalencies of Chain Rule and Quotient Rules; how $Ȣf(x)$ and $Ȣg(x)$ will relate to $Ȣ(f(x)g(x))$.

Another benefit of using Sequence Curves to calculate Summations is that using this method, you will be able to perform Summations with non-integer bounds. Similar to how Gauss's Gamma Function interpolates through factorial, Integration of Essence of a Sequence will interpolate through integer Summation.

Some of these goals are completed or nearly done, others have barely begun. Maybe some are even impossible, but I still want to try explore deeper into this connection.
Maybe someone else had already done this hundreds of years ago, but I want to try discovering this myself. Even if this is a trivial and insignificant contribution to maths, I still want to be able to be able to claim that I had done this myself.
That is my ambition for this project and if the journey interests you in any way, come along down my path through Sequence Curve and Summation to Integrals on this blog. 

Comments

Popular posts from this blog

Large Polynomial Series using Matrices (Calculating Bernoulli's Number with Pascal Matrix)

Polynomial Series can be easily solved using Power Series Formulas for each term in the polynomial. However, this can be frustrating since not every Power Formula are intuitive to memorize. We would like to find a more elegant and easier-to-recall formula for computing a Polynomial Series. This can be done using matrices. Notations and Equations We will borrow the notations and simple equations from Sequence Curve articles . There, we have extended a series to be continuous through the following identity: $$\sum_{i=m}^n f(i) = \int_{m-1}^nȢ\{f(x)\}dx $$ The $Ȣ\{f(x)\}$ acts as the rate of change of a series relative to its bounds. $$\frac{d}{dt} \sum_{i=m}^nf(i) = Ȣ\{f(n)\}\frac{dn}{dt} - Ȣ\{f(m-1)\}\frac{dm}{dt}$$ Letting $t=m=n$, we find $$\frac{d}{dt} \sum_{i=t}^tf(i) = \frac{d}{dt}f(t)= Ȣ\{f(t)\} - Ȣ\{f(t-1)\} $$ Remebering that $Ȣ$ Transformation is Linear, we can derive a simple identity of $$\frac{d}{dx}f(x+1) = Ȣ\{f(x+1)\} - Ȣ\{f(x)\} = Ȣ\{f(x+1)-f(x)\}$$ This will be use

Partition Counter using Trees, Recursion, Tables, and Algorithm

Partitions are number of ways an integer can be represented as sum of positive integers. We can ask, for example, what is the partition of 5? If we write out every possible combination, $$\begin{align*}  5 &= 1+1+1+1+1 \\  &= 1+1+1+2\\ &= 1+1+3\\ &= 1+4\\ &= 1+2+2\\ &= 2+3\\  &= 5 \end{align*} $$ we can see that partition of 5 is 7. One will immediately notice, however, that this is not the most efficient approach to answering the question: not only does partition grow quickly, attempting to organize and not miss or repeat an algebraic expression becomes messy and impractical. Chapter 1: Partition Tree A cleaner, but still not the best, approach would be to use tree diagrams to represent the partitions of a number. In a Partition Tree of $n$, every path to a terminating node will add up to the number $n$. And also, every child of a node (every nodes below a given parent node) will always be greater than or equal to the parent node in order to not

Vector Plane Rotation

Vector is a useful tool in maths and in physics that describes both magnitude and direction in a space. Vectors are used to describe concepts where direction matter, such as forces and velocity. For example, two cars can have same speed(scalar) but if one if heading north and the other south, they will have different velocity(vector). Vectors are usually written in terms of their components. Components are magnitude of the vector in one dimension. In 2D space, vector can be represented as coordinate of 2 components, <x,y>, and in 3D space, vector can be represented as coordinate of 3 components, <x, y, z>. Breaking down vectors into their components is extremely useful, especially in physics, because it allows one to break down complicated changes in vector into simpler and easier-to-work-with changes in its components. Take a look at projectile motion, for example. Velocity of an object fired up into the sky at an angle changes both its direction and magnitude. Attem

Summation of Harmonic Interval and Simplified Riemann Sum

When you first learn of Summation in Pre-Calc class, it is probably in build-up to Riemann Sum. You are taught the basics of Summation and simple manipulations, such a $\sum_nc*a_n = c*\sum_na_a$ for constant $c$, but you don't get to explore deeper into Summations and really play around with it. One thing that really intrigued me was why Summations only incremented by a unit. When we have a Sum like $\sum_{n=3}^{10}a_n$, it is equal to $a_3+a_4+a_5+\dots+a_9+a_{10}$, always incrementing by a unit( $1$ ). Why couldn't we Sum with interval that is not a unit? How could we have something like $a_3+a_{3.5}+a_4+a_{4.5}+a_5+a_{5.5}+\dots+a_{8.5}+a_9+a_{9.5}+a_{10}$, incrementing by a half instead of a full unit? Sets Of course you technically can use Sets and Set Builder Notation to create a specific Summation. $$\sum_{i \in S}i,S=\{\frac{x}{2}|x\in\mathbb{N_0}\} \, = \, 0+\frac{1}{2}+1+\frac{3}{2}+\dots$$ The above is Sum of all Rational Numbers incrementing by $\frac{1