Recall from the discussion in Group Theory, we learnt how a generator point can be added to itself repeatedly to generate every element of the group. In this section, we'll understand how to perform this addition, and implement it in Python.
The theory behind point addition
To add two points Pand Q on an elliptic curve, find the third point R where line joining P and Q intersects. This value of R is equal to −(P+Q). Reflecting the point along the X-axis will give us P+Q.
Addition of two points on an elliptic curve over a field of real numbers.
To find the coordinates of the third point of intersection, simply calculate the slope between P and Q, and extrapolate it using the general equation of elliptic curve.
Addition of two points on an elliptic curve over a finite field.
Implementation in Python
Point at Infinity
Also known as the identity point, it is the third point where P and Q meet, in the figure below.
P+(−P)=I
Point at infinity is the third point where the line joining P and Q meets the curve.
We can initialise the point at infinity like this: