It all started while I was trying to calculate the intersection points between two possibly rotated ellipses, each characterised by an equation like the following: $$\frac{((x-h) \cos A + (y-k) \sin A)^2}{a^2}+\frac{((x-h) \sin A - (y-k) \cos A)^2}{b^2}=1$$ where $(h, k)$ reflect the location of its centre, $a$ and $b$ reflect the lengths of the horizontal and vertical axes prior to rotation, and $A$ reflects the rotation angle in radians.
Trying to follow the suggestions found on this SE answer and solving for $t$, at some point I arrive to the following polynomial division:
$$\frac{\alpha t^8+\beta t^7+\gamma t^6+\delta t^5+\epsilon t^4+\zeta t^3+\eta t^2+\theta t+\iota}{\kappa t^8+\lambda t^6+\mu t^4+\nu t^2+\xi}$$ where the greek coefficients stand for constant expressions in terms of $h$, $k$, $a$, $b$ and $A$.
At this point, I am considering plugging in the expressions at the coefficients, and then trying to factor things out in the resulting equation, but that looks messy because the constant expressions are not exactly simple. This division, however, looks much more simple, so I am also wondering whether I might be able to divide one polynomial into the other and get a lower degree polynomial where I could then plug in the constant expressions and carry on solving for t in terms of $h$, $k$, $a$, $b$ and $A$.
Now, it has been a while since I even looked at a polynomial, nevermind simplifying it, so I have been searching around to refresh my memory regarding the division of polynomials. But all the examples I have found so far have been rather cumbersome procedures with numerical coefficients, so my question is, is there a general method for the division of polynomials with unknown coefficients?
Thanks!