% CircleParabola_newton.input CONFIG % Perform a Newton iteration & approximate the condition number TrackType:-1; % use 64-bit precision MPType:1; Precision:64; END; INPUT function circle,parabola; variable_group x,y; circle = x^2 + (y-1)^2 - 1; parabola = y - 2*x^2; END;