STATUS: Draft


Solving Polynomial Equations: 3

Create required variables

Recall that the original quadratic general equation sought to find solutions for $x_1$ and $x_2$ for a general quadratic

$$t + c_0x + c_1x^2 = 0$$

Recall that, using a power series in $t$, value of $x_1$ and $x_2$, the following solutions could be found:

Note that $x_1$ and $x_2$ into generative functions. $$ x_1 = -\sum_{k=1}^9 C(k - 1)\frac{c_2^{k-1}}{c_1^{2k - 1}}t^k$$

$$ x_2 = -\frac{c_1}{c_2} + \sum_{k=1}^9 C(k - 1)\frac{c_2^{k-1}}{c_1^{2k - 1}}t^k $$

Note that solutions are not available $x_1$ and $x_2$ beyond degree 9. However, note the general case of generative functions:

$$ x_1 = -\sum_{k=1}^+ C(k - 1)\frac{c_2^{k-1}}{c_1^{2k - 1}}t^k$$$$ x_2 = -\frac{c_1}{c_2} + \sum_{k=1}^+ C(k - 1)\frac{c_2^{k-1}}{c_1^{2k - 1}}t^k $$

The cubic case

Goal: Test the cubic case

Create the required variables:

Assume that $t^8 == 0$.

Let s1 be a general cubic equation.

Let s2 be a substitution for x.

Let s3 be s1 with the s2 subsituted for x

Let s4 be the expansion of s3

Enforce assumption that $t^8=0$ in s4

Let s5 be the case where $t = 0$ in s4

Let s6 be the factorisation of of s5. Note there are three solutions

Consider the case where $a_0 = 0$.

Substitute $a_0 = 0$ into s4

Let s8 be a system of equations to linearly solve $a_1, a_2, a_3, a_4, a_5, a_6$, and $a_7$. Append $a_0 = 0$ as a valid equation in this system.

Let s9 be the solutions to this system.

Visualise solutions for $a_1, a_2, a_3, a_4, a_5, a_6$, and $a_7$.

Note that if $c_3 = 0$, the cubic term, then the quadratic case is recovered

Recall the cubic case expression.

Substitute back into x to find one of the solutions of this general cubic.

Subsitute into original equation

Summary

There still appears to be a relationship to the Catalan numbers in the cubic case, but there are numbers present also. Note the the above is only one of the solutions to a general cubic equation. It is valid to degree 7, expressing the values as an on-series in powers in t, where the coefficients are rational functions of $c_i$

Save outputs.