STATUS: Draft


Solving Polynomial Equations (9)

Aim: Investigate properties of matrix of values created from the function $C$ which is a generating function for a solution for a general cubic polynomial

Method: Examine the rows and columns of the coeffiecient matrix generated from $C$ using OEIS


Observe: the definition from Solving Polynomials (7) that defines a solution to a general cubic equation.

$$C(m_2, m_3) \equiv(-1)^{m_3 + 1} \frac{(2 m_{2} + 3 m_{3})!}{(1 + m_{2} + 2 m_{3})!m_2!m_3!} \frac{c_0^{1 + m_{2} + 2 m_{3}} c_2^{m_2} c_3^{m_3} }{c_1^{2 m_{2} + 3 m_{3} + 1}}$$

Let $C$ be a function implementation that returns a solution to a general cubic equation.

Let $P1$ be a matrix generated from $C$

Observe: Many different interacting patterns here, with interelationships between $c_0, c_1, c_2$ and $c_3$. Not simply horizontal and vertical patterns, but diagonal patterns, patterns specific to different variables etc.)

Let $P4$ be a matrix generated from $C$, returning only coefficients without signs.

Observe: important to consider problem for many different angles (columns, rows, diagonals etc). Consult Online Encyclopedia of Integer Sequences to explore this.

Let $P6$ be the first column in $P5$

Observe: This is sequence A000108 in OEIS, the Catalan Numbers, generated with the following formula

$$ C(n) = \frac{(2n)!}{n!(n + 1)!)} $$

Observe: Euler originally studied this sequence in terms of properties of polygons

Let $P6$ be the second column in $P5$

Observe: This is sequence A002054 in OEIS and is a binomial coeffient function, generated with the following formula:

$$C(2n +1, n - 1)$$

Let $P7$ be the third column in $P5$

Observe: This is sequence A074922 in OEIS. It is the number of ways of arranging n chords on a circle (handshakes between 2n people across a table) with exactly 2 simple intersections.

Observe: This is similiar to the interpretation of Catalan in the context of Euler's work with Catalan numbers

Let $P8$ be the third column in $P5$

Observe: No match in OEIS

Observe: Unlikely to be more matches of columns

Let $P9$ be the first row in $P5$

Observe: This is sequence A001764 in OEIS, generated with the following formula:

$$a(n) = binomial \frac{(3n,n)}{(2n+1)}$$

Observe: this formula enumerates ternary trees and also noncrossing trees.

Observe: Catalan numbers connected to binary trees so there may be a relationship here.

Let $P10$ be the second row in $P5$

Observe: This is sequence A025174 in OEIS. It is also binomial generated with the following formula:

$$a(n) = binomial(3n-1, n-1) $$

Let $P11$ be the third row in $P5$

Observe: No match in OEIS

Observe: Unlikely to be more matches of rows

Observe: Also possible to search diagonals

Let $P12$ be the first diagonal in $P5$

Observe: No match in OEIS

Observe cross diagnonals:

1
1,1
2,5,3
5, 21, 28, 12 </br>

Proposed Definition: The alternating sums across cross diagonals in a matrix of cubic polyseries array are equal to 0


Conclusion

There is structure here that seems to be some kind of extension to the Catalan numbers but more investigation is needed. Observe that all coefficients appear to be natural numbers and this may be related to the Catalan numbers.