STATUS: Draft


Solving Polynomial Equations (10)

Aim: Continue to examine solutions to the general cubic and aspects of the coefficient

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


Observe: the definition from Solving Polynomials (7) for the solution to a general cubic equation which generates Catalan and Fuss numbers.

$$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}}$$

Define: $F1$ as a function implementation of $C$

Let $P3$ be a $8 \times 8$ matrix generated from $F1$

Let $P5$ be a larger $20 \times 20$ matrix generated from $F1$

Observe: $P5$ has only natural numbers, however these numbers are created from the division of factorials

Let $F2$ be an implementation of $C$ that returns factorials without evaluation

Let $P6$ be an $8 \times 8$ matrix created from $F2$.

Observe: the different degrees of numerator and denominator in $P6$.


Aim: find a combnatorial or number theoretic interpretation for numbers appearing in $P5$ (which non evaluated in $P6$) and account for the appearrance of natural numbers only.

Method: Examine similiar structures (the multinomial coefficient) and draw similiarities


Observe: the structure of the numbers returned by $F2$ are very similiar multinomial coefficients. However, while multinomial coefficients have the same degree in numerator and denomiator, the numbers returned by by 1.

Observe: it is possible to see this difference using a specific multinomial coefficient (i.e the trinomial coefficient)

Definition: Trinomial Coefficient for the values $a^k b^l c^m $ in $ (a + b + c)^n$ where $n = k + l + m$ is:

$$ \binom{n}{k, l, m} \equiv \frac{n!}{k!l!m!} = \frac{(k + l + m)!}{k!l!m!} $$

Let $P8$ be another example of a multinomial expression (a quinomial coefficient)

Observe: in the case of $P8$, for the term $20a^3bc$, the coefficient can be computed as $\binom{5}{3, 1, 1} = \frac{5!}{3!1!1!} = 20$. This is generally the case for all terms. Note the numerator and denomiator have the same degree.

Observe: In general case, the multinomial can always be described as per above.

Observe: a Trinomial can be intuiated as the number of ways of obtaining $a^k b^l c^m $ in $ (a + b + c)^n$.

Observe: This is equivalent to the number of ways to:

  1. Choose $k$ a's from $n$: the number of ways is $ \binom{n}{k}$
  2. Choose $l$ b's from $n-k$: the number of ways is $ \binom{n -k}{l}$
  3. Choose $m$ c's from $n - k - l$: the number of ways is $ \binom{n - k - l}{m}$

Observe: the resulting product is:

$$ \binom{n}{k} \binom{n -k}{l} \binom{n - k - l}{m} = \frac{n!}{k!(n - k)!} \frac{(n - k)!}{l!(n - k - l)!} \frac{(n - k - l)!}{m!(n - k - l - m)!} = \frac{n!}{k!l!m!}$$

Observe: The numbers $ C(m_2, m_3) \equiv \frac{(2 m_{2} + 3 m_{3})!}{(1 + m_{2} + 2 m_{3})!m_2!m_3!} $ are similiar to the multinomial coeffient, however the degree of the denominator is 1 more than the numerator.

Definition: A Sub-multinomial Coefficient is a rational number of the form $ \frac{n!}{m_1!m2! \ldots m_k!} $ where $ n, m_1, m2 \ldots, m_k$ are natural numbers and $ n = m_1 + m_2 + \ldots + m_k -1$


Aim: Investigate the Submultinomial Coeffients that appear in the generating function $C$.

Method: Collect data generated from the submultinomial coefficient generating function in order to ascertain those cases where it does and does not not return natural numbers. This will allow the the discovery of the conditions that can be placed on $m_1, m_2 \ldots m_k$ to return a natural number.


Observe: The case of one variable : $ \frac{(m - 1)!}{m!} = \frac{1}{m}$. In the case of one variable, a natural number will usually not be returned.

Observe: The case of two variables: $$J(m_1, m_2) = \frac{(m_1 + m_2 - 1)!}{m_1!m_2!} $$

Define: $F3$ as generating function return submultinomial for two given variables.

Let $P9$ a $F3$ evaluated at $(4, 5)$.

Observe: THis is a natural number. However more data should be collected for the two variable case.

Let $P12$ be $F3$ evaluated for values in an array.

Observe: returned values in $P12$ not always integers.

Observe: the Catalan Numbers appear on the diagonals

Let $F4$ be a function that returns submultinomial values for an arbitrary number of input values

Let $P13$ be $F4$ evaluated for different inputs.

Let $P16$ be $F4$ evaluated for 3 values, where 1 value is fixed.

Observe: values returned in $P16$ not always integers.


Aim: Compare the count of natural numbers and rational numbers across differen choices of inputs to $F4$.

Method: Run multiple iterations and place data in data frames to explore


Observe: It is possible to place data returned from $F4$ into a data frame and ascertain answers if answers returned are Integer Types or Rational Number Types

Let $P19$ be value counts for types returned from $F4$

Observe: It is possible to expand this approach for a greater number of entries.

Let $P23$ be a larger sample of values of values returned from $F4$.

Let $P24$ be a Data Framew sorted by static number and type to display instances of Integers.


Conclusion

More exploration is needed. There are no obvious pattern that emerge when considering diffeheadt values. Alternatives to look more closely at all $i, j$ and $k$ values as inputs to see if there are correlations