Quote:
Originally Posted by David24 CaptainBlack,
Am I correct in conjecturing that the value of x which minimises f(x) satisfies,
|x-2| =|x-2^16| ?
David
ps - I apologise for any grammatical and or spelling mistakes that may be present in the above statement. |
Well lets see,
implies (assuming

anyway) that:
or:
Now lets do some calculations:
Code:
>i=1:16;
>
>x=[2^8-1:2^8+1]'
255
256
257
>
>s=abs(x-2^i);
>S=sum(s)
130052
130050
130050
>
So we conclude that, no your proposed condition does not define the solution.
CB