function y=sillyfunc(x,n)
% sillyfunc takes in x and n as input and returns x^n - 10*x^(n-1)
y=x.^n - 10*x.^(n-1);
