I am absolute novice in Maple, sorry... Please, help.
When solving simple system of equations like the one described in manual:
solve({x+2*y = 3, y+1/x = 1}, [x, y])
,
everything works nice. But when trying to solve my system of 12 equations, error Error, (in solve) invalid arguments
is thrown. What is wrong?
My system:
solve( {
y0 = a0+b0*x0+c0*x0^2+d0*x0^3,
y1 = a0+b0*x1+c0*x1^2+d0*x1^3,
y1 = a1+b1*x1+c1*x1^2+d1*x1^3,
y2 = a1+b1*x2+c1*x2^2+d1*x2^3,
y2 = a2+b2*x2+c2*x2^2+d2*x2^3,
y3 = a2+b2*x3+c3*x3^2+d2*x3^2,
2/((x2-x1)/(y2-y1)+(x1-x0)/(y1-y0)) = b0+2*c0*x1+3*d0*x1^2,
2/((x3-x2)/(y3-y2)+(x2-x1)/(y2-y1)) = b1+2*c1*x1+3*d1*x1^2,
2/((x2-x1)/(y2-y1)+(x1-x0)/(y1-y0)) = b1+2*c1*x2+3*d1*x2^2,
2/((x3-x2)/(y3-y2)+(x2-x1)/(y2-y1)) = b2+2*c2*x2+3*d2*x2^2,
diff(2/((x2-x1)/(y2-y1)+(x1-x0)/(y1-y0)), x1) = 0,
diff(2/((x3-x2)/(y3-y2)+(x2-x1)/(y2-y1)), x2) = 0
}, [a0,b0,c0,d0,a1,b1,c1,d1,a2,b2,c2,d2])