Scalar Multiplication
5 min read
Core idea: Scalar multiplication repeats point addition:
It does not multiply the coordinates: .
Efficient computation
- Build larger multiples from doubling and addition; for example,
- Double-and-add reads the binary digits of : double for every bit, then add when the bit is .
- The work grows roughly as , making enormous scalars practical.
- Every intermediate result remains in the same elliptic-curve group.
Next: Replace approximate real-number coordinates with exact modular arithmetic.