I am trying to solve the following system of equations:
{a*[1+b*(5+c)]}^(-1/2) = 2388;
{a*[1+b*(5+c)]}^(-1/2) = 2633;
{a*[1+b*(5+c)]}^(-1/2) = 2763;
for which I need to get the values of a, b and c. Can anyone advise on how to proceed? I'm not sure which MATLAB function to use, i tried a normal "solve" as
syms x y z
eqn1 = (x*(1+y*(5+z)))^(-1/2) == 2388;
eqn2 = (x*(1+y*(5+z)))^(-1/2) == 2633;
eqn3 = (x*(1+y*(5+z)))^(-1/2) == 2763;
solutions = solve([eqn1 eqn2 eqn2],(x,y,z));
but it clearly doesn't work. Any suggestions?