Part 1: What Are Elliptic Curves ?
As stated in its name, elliptic curve cryptography (ECC) is based on a particular kind of curve called an elliptic curve. The aim of this first post on ECC is to explain what elliptic curves are.
Definition of elliptic curves
An elliptic curve is an abstract mathematical object generally defined as "a smooth, projective, algebraic curve of genus one, with a specified point (O)." This definition may seem complex, so let's break down the key terms:
Smooth: A smooth curve is a curve that is free of singularities, such as cusps or self-intersections.
Projective: A projective space is a fundamental geometric concept that generalizes the idea of euclidean space by adding "points at infinity," allowing for a unified treatment of lines, intersections, and perspectives.
Algebraic: The curve consists of points that satisfy a polynomial equation.
Genus : The genus of a curve is a topological invariant that, in intuitive terms, counts the number of "holes" in the curve.
Specified point (O): This is the invariant point, the point at infinity of the curve where every lines intersect.
This definition alone doesnāt provide a clear picture of what an elliptic curve looks like. In practice, elliptic curves are usually introduced via their algebraic equation, along with the criteria mentioned above.
Note: Elliptic curves should not be confused with ellipses, which are a different type of curve known as conics.

Familly of elliptic curves
Elliptic curves can be defined by specific algebraic equations. There are several well-known families of elliptic curves, each with particular properties and applications. Letās take a look at some of the most commonly used ones.
Weirstrass curves
where belongs to a field and the discriminant (given by in the reduced form) is nonzero in ., defining an elliptic curve over . Every elliptic curve over . can be converted to a short Weierstrass equation if . is larger than 3.

Montgomery curves
where is nonzero in , defining an elliptic curve over . Substituting and produces the short Weierstrass equation:
where
Montgomery curves were introduced by Montgomery in 1987.

Edwards curves
where is nonzero in , defining an elliptic curve over . Substituting and produces the Montgomery equation:
where
Edwards curves were introduced by Edwards in 2007 in the case that is a fourth power. SafeCurves requires Edwards curves to be complete, i.e., for to not be a square; complete Edwards curves were introduced by Bernstein and Lange in 2007.

Takeaways
This article laid one of the mathematical foundations of elliptic curve cryptography: the elliptic curve itself. If you had to explain what an elliptic curve is, here are two ways to do it:
(Mathematician) Formal definition: Give the rigorous mathematical definition (which, while accurate, is hard to remember and not very intuitive).
(Engineer) Practical approach:
Show how these curves look graphically.
Describe the algebraic equations that define them.
Clarify that they are not ellipses and belong to a different mathematical family.
In Part 2 of this ECC series, weāll explore finite fields and how elliptic curves are defined over them.
Last updated