HMMT February 2022, Team Round, Problem 6 (proposed by Akash Das) is:
Let $\operatorname{\it P\!}{\left(x\right)}=x^4+ax^3+bx^2+x$ be a polynomial with four distinct roots that lie on a circle in the complex plane. Prove that $ab\neq9$.
Its solution may be found here.
Recently, certain netizens claimed that there exists a stronger result when $ab$ is real:
Let $P(z)=z^4+az^3+bz^2+z$ be a polynomial with four distinct roots that are concyclic in the complex plane; then $ab\in\mathbb R\implies1<ab<9$.
Nevertheless, I could find neither any proof nor any counterexample of it.
Does the above proposition hold? (And what if $ab\in{\mathbb C\setminus\mathbb R}$?)
Edit. It appears that when $ab\in{\mathbb C\setminus\mathbb R}$, $ab$ can take any values in the complex plane other than the real axis. Here is a simulation: 
As said in the comments, the problem is equivalent to showing that if $ a b \in \mathbb{R}$ and the polynomial
\begin{equation}P \left(z\right) = {z}^{3}+b {z}^{2}+a z+1\end{equation}
has three colinear distinct roots on a line that does not contain zero, then $1 < a b < 9$. We prove here that this result is true in the general case, when $ a$ and $ b$ are complex numbers. Let us define
\begin{equation}a b = {m}^{3} , \qquad b = m c , \quad a = \frac{{m}^{2}}{c} , \quad m \in {\mathbb{R}}^{\ast } , \quad c \in {\mathbb{C}}^{\ast }\end{equation}
hence
\begin{equation}P \left(z\right) = {z}^{3}+m c {z}^{2}+\frac{{m}^{2}}{c} z+1\end{equation}
Let $ \frac{c}{w} \in {\mathbb{C}}^{\ast }$ a direction vector of the line $ L$ containing the roots. This line contains the average of the three roots, which is $-\frac{m c}{3}$, hence if $ z$ is a root,
\begin{equation}z = m c \left(\frac{t}{w}-\frac{1}{3}\right) , \qquad t \in \mathbb{R}\end{equation}
Substituting into $ P$ gives
\begin{equation}P \left(z\right) = {t}^{3} \frac{{m}^{3} {c}^{3}}{{w}^{3}}+t \left(1-\frac{{c}^{3}}{3}\right) \frac{{m}^{3}}{w}+\frac{2 {m}^{3} {c}^{3}}{27}-\frac{{m}^{3}}{3}+1\end{equation}
By multiplying by $ \frac{{w}^{3}}{{m}^{3} {c}^{3}}$, one finds a new depressed cubic polynomial which must now have three real roots
\begin{equation}Q \left(t\right) = {t}^{3}+p t+q = {t}^{3}+t \left(\frac{1}{{c}^{3}}-\frac{1}{3}\right) {w}^{2}+{w}^{3} \left(\frac{2}{27}+\frac{1}{{c}^{3}} \left(\frac{1}{a b}-\frac{1}{3}\right)\right)\end{equation}
Obviously the conditions are now $ \left(p , q\right) \in {\mathbb{R}}^{2}$ and $ 27 {q}^{2}+4 {p}^{3} < 0$. In particular, it is necessary that $ p < 0$. As $ w$ is determined up to an arbitrary non-zero factor, it can be scaled so that $ p =-1$. It follows that
\begin{equation}{c}^{3} = \frac{1}{\frac{1}{3}-\frac{1}{{w}^{2}}}\end{equation}
then
\begin{equation}q = \left(\frac{2}{27 \left(\frac{1}{3}-\frac{1}{{w}^{2}}\right)}-\frac{1}{3}+\frac{1}{a b}\right) \left(\frac{1}{3}-\frac{1}{{w}^{2}}\right) {w}^{3} \in \mathbb{R}\end{equation}
Let us now define the complex numbers
\begin{equation}{\mu} = {\xi}+i {\zeta} = \frac{2}{27 \left(\frac{1}{3}-\frac{1}{{w}^{2}}\right)}-\frac{1}{3} , \qquad {\nu} = {{\xi}'}+i {{\zeta}'} = \left(\frac{1}{3}-\frac{1}{{w}^{2}}\right)^{-1}{w}^{-3}\end{equation}
One has
\begin{equation}{\xi}+\frac{1}{a b}+i {\zeta} = q {{\xi}'}+i q {{\zeta}'} \qquad \text{hence} \qquad q = \frac{{\zeta}}{{{\zeta}'}} \quad \text{and} \quad \boxed{\frac{1}{a b} = {{\xi}'} \frac{{\zeta}}{{{\zeta}'}}-{\xi}}\end{equation}
The cubic equation has three real roots if and only if $ 27 {q}^{2} < 4$ that is to say
\begin{equation}\boxed{27 {{\zeta}}^{2} < 4 {{{\zeta}'}}^{2}}\end{equation}
We now use Sympy to perform symbolic calculations. Let
\begin{equation}w = x+i y\end{equation}
According to Sympy, the above three real roots condition reduces to
\begin{equation}27 {{\zeta}}^{2} - 4 {{{\zeta}'}}^{2} = \frac{12 y^2 (4 {x}^{2}-3)}{|w|^4 |w^2 -3|^2} < 0\end{equation}
which means that $\Im(w)\not = 0$ and $ \Re{\left(w\right)} \in \left]{-\frac{\sqrt{3}}{2}} , \frac{\sqrt{3}}{2}\right[$. The computation gives
\begin{equation}a b = 9 \frac{3+{y}^{2}-3 {x}^{2}}{9+{y}^{2}-3 {x}^{2}}\end{equation}
As $ {y}^{2}-3 {x}^{2}$ can take any value in $ \left]{-\frac{9}{4}} , \infty \right[$, it follows that
\begin{equation}1 = 9 \frac{3-\frac{9}{4}}{9-\frac{9}{4}} < a b < 9 \frac{\frac{3}{\infty }+1}{\frac{9}{\infty }+1} = 9\end{equation}
All the values in this interval can be reached.
Let us conclude this with the Python code that performs the symbolic calculations
The output is