Ruud H.G. van Tol on Sun, 03 May 2026 08:56:39 +0200


[Date Prev] [Date Next] [Thread Prev] [Thread Next] [Date Index] [Thread Index]

Re: why is this happening?



On 2026-05-03 03:53, American Citizen wrote:

Silly me

I thought that subtracting the 2 elliptic curves would result in a vector of zeroes.

I believe that we are left with the one option to test if 2 elliptic curves are the same

? e1 = e2.


ITYM: e1 == e2.


? {
  my
  ( e1 = Vecsmall( [1] )
  , e2 = Vecsmall( [1] )
  );

  vecsum( Vec(e1) - Vec(e2) )
}

% 0

-- Ruud