Saturday, August 19, 2017

Magnitude of roots of a quadratic function with complex coefficients



Suppose $c \in \mathbb C$ with $|c| < 1$. I constructed a quadratic function $t^2 - 2 c t + c = 0$. I want to know whether the magnitude of the roots are smaller than $1$. The answer for real $c$ is simple. If $c$ is real, then the roots are $c \pm \frac{\sqrt{4c^2 - 4c}}{2}$. Since $4c^2 - 4c < 0$, the second part is imaginary. So the magnitude will be $\sqrt{c^2 + \frac{4c-4c^2}{4}} = \sqrt{c} < 1$.


I got lost when considering $c$ is complex. Specifically, is the discriminant $4c^2 - 4c$ or $4|c|^2 - 4c$? How do we take the root of complex number?


Answer



(Too long for a comment.)


The equation can be written as $\,(t-c)^2 = c^2-c\,$ then by the triangle inequality with $\lambda=|c| \lt 1\,$:


$$ |t-c|^2 = |c|\,|1-c| \le |c|(1+|c|) \quad\implies\quad |t| \le |t-c|+|c| \le \lambda + \sqrt{\lambda(1+\lambda)} $$


Therefore $\,f(\lambda)=\lambda + \sqrt{\lambda(1+\lambda)}\,$ is an upper bound for the magnitude of roots $\,|t|\,$, but it does not insure that $\,|t| \le 1\,$ since $\,f(\lambda)\,$ can take values larger than $\,1\,$ e.g. $\,f(\lambda) \gt 1\,$ for $\,\forall \lambda \gt \frac{1}{3}\,$.


It also follows that $\,|c| \lt \frac{1}{3}\,$ is a sufficient condition for the roots to have magnitude less than $\,1\,$.


No comments:

Post a Comment

analysis - Injection, making bijection

I have injection $f \colon A \rightarrow B$ and I want to get bijection. Can I just resting codomain to $f(A)$? I know that every function i...