I am trying to solve for a2 in the equation below:
(-((ρ σ1 σ2)/(a2 a3)) + σ2^2)^2
> (σ2^2 (-2 a3 ρ σ1 σ2 + a2 (σ1^2 + a3^2 σ2^2)))/(a2^2 a3^3)
I would like to arrange this expression in terms of a2 or a3 if possible.
So far I've tried using Reduce, together with some assumptions intended to produce a 'nice' solution:
Reduce[(-((ρ σ1 σ2)/(a2 a3)) + σ2^2)^2 >
(σ2^2 (-2 a3 ρ σ1 σ2 + a2 (σ1^2 + a3^2 σ2^2)))/(a2^2 a3^3) &&
σ1 > 0 && \[Sigma]2 > 0 && -1 <= ρ <= 1, {a2}]
But Mathematica returns a large output which I don't fully understand; I don't know which solution to take or leave.
a3ora2there is still a some space to find a simpler expression. Perhaps you'll find convenient theBacksubstitution -> Trueoption. You should probably read also e.g. How do I work with Root objects? – Artes Nov 03 '14 at 16:40Reduce[.., {a2, a3, ρ, σ1, σ2}]yields a cylindrical decomposition of the inequality in which inequalities forσ1are given in terms ofσ2, forρin terms ofσ1andσ2, fora3in terms ofρ,σ1,σ2etc. The inequalities for each variable are divided into cases withOr; the inequalities for one variable is connected to the next byAnd. The whole can be represented in a nice tree structure, but sinceAndisFlat, the expression does not usually have this structure. – Michael E2 Nov 03 '14 at 17:56