Elliptic Curve Scatter Plot
Curve points
G generator
Q public key
R nonce point
R' verify point
Why a tiny curve? Real Bitcoin uses secp256k1 (256-bit prime), but the math is identical.
We use p = 97 so every number fits on screen and you can verify each step by hand.
🔑 Key Generation
Pick a random private key d and compute the public key Q = d × G
d
(private key — keep secret!)
G
(generator point)
Q
(public key — share freely)