i have tried the following but its not working
**********
syms a b c d x
f_1=a*x^3+b*x^2+c*x+d;
f_2=3*a*x^2+2*b*x+c;
f_3=6*a*x+2*b;
f_4=6*a;
eqns=[f_1==0,f_2==0,f_3==0,f_4==0,x==1];
vars=[a b c d ];
[sol_a,sol_b,sol_c,sol_d]=solve(eqns,vars);
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!