Can the equation of the form $$\sin(\omega t) + at^2+bt=N$$ where $a,b,N \in \mathbb{R}$ be solved analytically for $a \ne 0$?
It, for example, arises when the rotating object falls down subject to gravity. Solving such equation can allow to compute the time of the object touchdown.
Your equation is a transcendental equation. It can not be exactly solved but you can find the roots using numerical methods like Newton's method. However if you are still interested in having a closed form solution, you may use Bhaskara's approximation for domain $[-\frac {π}{2},\frac {π}{2}]$. For example, consider another related equation, $$\cos \omega t + t^2 + bt - N = 0$$ From Bhaskara's approximation formula, $$\cos \omega t ≈ \frac {π^2 - 4\omega^2 t^2}{π^2 + \omega^2 t^2}$$ The equation is reduced to a general quartic, $$t^4+bt^3+(T^2 - (4+N))t^2+T^2bt+T^2(1-N)=0$$ Where $T=\frac {π}{\omega}$This can be solved using Ferrari's method (https://proofwiki.org/wiki/Ferrari%27s_Method). Although the computational cost is high and the solution may turn really ugly, yet it will give you much required insight into the dependence of the time of flight of the object on various parameters.