Given non-negative real numbers $a,b,c$ satisfying $a+b+c=2.$ Find the minimal value of expression $$P=\sqrt{a-2bc+3}+\sqrt{b-2ca+3}+\sqrt{c-2ab+3}.$$ Source: AOPS-Jokehim. See also here.
Here is what I've done so far.
By $a=b=1;c=0$ I get $P=5$ so we need to prove that$$\sqrt{a-2bc+3}+\sqrt{b-2ca+3}+\sqrt{c-2ab+3}\ge 5. $$ I thought of Lagrange multiplier method.
We can split inequality into two cases.
$\bullet$ If $a=0;b+c=2,$ it's $\sqrt{3-2bc}+\sqrt{b+3}+\sqrt{c+3}\ge 5,$which is easy to check $c=2-b$ $$\sqrt{3-2b(2-b)}+\sqrt{b+3}+\sqrt{5-b}\ge 5,$$ where $0\le b\le 2.$
$\bullet$ $abc\neq0,$ we consider$$f(a,b,c,\lambda)=\sqrt{a-2bc+3}+\sqrt{b-2ca+3}+\sqrt{c-2ab+3}-5+\lambda(a+b+c-2).$$ and $(a,b,c)$ be an inside minimum point of $f$.
Thus, $$\frac{\partial f}{\partial a}=\frac{\partial f}{\partial b}=\frac{\partial f}{\partial c}=0,$$ which gives \begin{align*} \frac{1}{2\sqrt{a-2bc+3}}-\frac{2c}{2\sqrt{b-2ca+3}}-\frac{2b}{2\sqrt{c-2ab+3}}+1&=\frac{1}{2\sqrt{b-2ca+3}}-\frac{2c}{2\sqrt{a-2bc+3}}-\frac{2a}{2\sqrt{c-2ab+3}}+1\\&=\frac{1}{2\sqrt{c-2ba+3}}-\frac{2a}{2\sqrt{b-2ca+3}}-\frac{2b}{2\sqrt{a-2bc+3}}+1. \end{align*} (Notice that $a-2bc+3,b-2ca+3,c-2ab+3>0$ since $bc\le\dfrac{(b+c)^2}{4}\le\dfrac{(a+b+c)^2}{4}=1.$)
Now, let in this point $a\neq b$ and $a\neq c$ and we need to prove $b=c.$
I stopped here. Hope you help me. Also, any ideas and comments are welcome.