어케 하노 ㅋㅋ 오차가 저정도면 프로그램 짜서 해야할거같은데

글고 Gauss iteration은 이렇게 코드 짰다는데 맞냐?

clear
syms x;
t=0;
num=0;
k=1;
while(abs(k-0)>0.00001)
t=0.5*(t^2+1)
k=t^2-2*t+1;
num=num+1;
end
t
num