I am trying to determine the numerical condition of the quadratic formula: $$x = \frac{-b \pm \sqrt{b^2-4ac}}{2a}$$ As I understand it, the quadratic formula can be interpreted as a mapping $$\phi:\mathbb{R}^3\to\mathbb{R}, (a,b,c)\mapsto \frac{-b \pm \sqrt{b^2-4ac}}{2a} \text{, for } a \ne 0.$$
My notes define the condition number for some $\phi$ as follows: $\kappa(\phi):= \frac{\lVert x\rVert\lVert D\phi(x)\rVert_M}{\lVert \phi(x)\rVert}$ for some compatible matrix norm. Which simplifies to $\kappa(f)= \frac{\lvert xf'(x)\rvert}{\lvert f(x)\rvert}$ in the one-dimensional case (which isn't the case anyway).
What I have tried so far was yet another method of computing the condition via the formula: $$\kappa_{ij}=\frac{x_j}{\phi_i(x)}\cdot\frac{\partial\phi_i(x)}{\partial x_j}\quad \text{Here: } i=1, j\in\{1,2,3\}$$
I am not really sure if the given formula(s) is/are the best approach to solving this problem or if there is some other preferably easier method. Looking at the discussion on this post about the numerical stability of the quadratic formula I am hoping to find some intuition to solving this problem without these long winded calculations.