Consider the following system of equations with strictly positive unknowns $\lambda_1,\lambda_2,\lambda_3,\lambda_4$
$$ \begin{cases} \lambda_1 d=\lambda_4 a\\ \lambda_2 d=\lambda_4 b\\ \lambda_1 c=\lambda_3 a\\ \lambda_2 c=\lambda_3 b\\ \lambda_3 d=\lambda_4 c\\ \lambda_1+\lambda_2+\lambda_3+\lambda_4=1 \end{cases} $$
and parameters $a>0,b>0,c>0,d>0$ with $a+b+c+d=1$. Show that the unique solution of the system is
$$ \lambda_1=a\\ \lambda_2=b\\ \lambda_3=c\\ \lambda_4=d\\ $$
I tried by taking several routes but I couldn't find any clear pattern.
Using SymPy, we create the augmented matrix:
Imposing the constraint $a + b + c + d = 1$:
Using Gaussian elimination to compute the RREF:
Simplifying: