While calibrating a three-phase system's voltage measurement, I stuck with the following system of equations.
$$a_1=b_1x-b_3z\\a_2=b_2y-b_1x\\a_3=b_3z-b_2y$$
I need solution for $x$, $y$, and $z$. If it is helpful, we can use the following facts about this system.
$$a_1+a_2+a_3=0\\b_1+b_2+b_3=0$$
I used Wolfram alpha with the following code with no success.
Solve[{Subscript[a, 1] == Subscript[b, 1] x - Subscript[b, 3] z, Subscript[a, 2] == Subscript[b, 2] y - Subscript[b, 1] x, Subscript[a, 3] == Subscript[b, 3] z - Subscript[b, 2] y, Subscript[a, 1] + Subscript[a, 2] + Subscript[a, 3] == 0, Subscript[b, 1] + Subscript[b, 2] + Subscript[b, 3] == 0}, {x, y, z}, MaxExtraConditions -> Automatic]
Please help/guide me for the solution. Thank you.