I am using Matlab Symbolic Toolbox with its solve function and attempting to solve a nonlinear system of 4 equations,
with 4 variables:
x1 y1 x2 y2
and 4 parameters
delta1 delta2 alpha beta
The equations are described in the following image:

Here is the Matlab code:
syms x1 x2 y1 y2 alpha beta delta1 delta2
[x1,y1,x2,y2] = solve('delta1 * x1^alpha * y1^(1 - alpha) = (1 - x2)^alpha * (1 - y2)^(1-alpha)',...
'delta2 * x2^alpha * y2^(1 - alpha) = (1 - x1)^beta* (1 - y1)^(1-beta)',...
'alpha / (1-alpha) * (1 - y2) / (1 - x2) = beta / (1 - beta) * y2/x2',...
'alpha / (1-alpha) * y1 / x1 = beta / (1 - beta) * (1 - y1) / (1 - x1)','x1','y1','x2','y2')
Matlab returns:
Warning: Explicit solution could not be found.
> In solve at 81
However, if I try to substitute both alpha and beta to 0.5.
[x1,y1,x2,y2] = solve('delta1 * x1^0.5 * y1^ 0.5 = (1 - x2)^0.5* (1 - y2)^0.5',...
'delta2 * x2^0.5 * y2^0.5 = (1 - x1)^0.5* (1 - y1)^0.5',...
'(1 - y2) / (1 - x2) = y2/x2',...
'y1 / x1 = (1 - y1) / (1 - x1)','x1','y1','x2','y2')
then Matlab will give result.
So I wonder:
Are the equations really unsolvable?
If it can solved, am I using Matlab Symbolic Toolbox in the wrong way? Matlab can actually solve it.
If Matlab is not capable enough to solve it, are there other tools that can solve nonlinear equation system?