vote up 0 vote down star

It is described as -||xi-xy||^2.

So for 2 two dimensional points do I code it like this?

- ((x1-x2) + (y1-y2))^2

or

-( (x1-x2)^2 + (y1-y2)^2 )

or

-(sqrt( (x1-x2)^2 + (y1-y2)^2 ))

or some other way?

flag

67% accept rate
1  
You mean ||xi - yi||, not ||xi - xy||. – ShreevatsaR Oct 19 at 19:10

2 Answers

vote up 7 vote down check

The correct answer is

-( (x1-x2)^2 + (y1-y2)^2 )

The mathematical description is accurate, but not useful for implementation. It's stated as the square of the distance between the points, which if implemented directly would be something like:

len = sqrt( (x1-x2)*(x1-x2) + (y1-y2)*(y1-y2) );
result = -( len*len );

which can simplified to

result = -( (x1-x2)*(x1-x2) + (y1-y2)*(y1-y2) );

which is your #2.

link|flag
There's really no reason for the sqrt and the latter - operation on the square. Just apply - to the sum of the squares (after eliminating sqrt) as that value will always be positive. – Adam Robinson Oct 19 at 19:09
Thanks Adam, I clarified my answer. – tfinniga Oct 19 at 19:31
vote up 1 vote down

The third is the negative of the distance. The second appears to be the negative of the square of the distance.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.