From 9b907565b23a6d2196e47d3806027d2f03185026 Mon Sep 17 00:00:00 2001 From: Chisom <70510212+StephenChi-hi@users.noreply.github.com> Date: Sat, 7 Mar 2026 06:28:46 +0100 Subject: [PATCH] Fix grammar in elliptic curve explanation Corrected the wording to ensure proper grammar in the explanation of elliptic curves. --- 01_1_Introducing_Bitcoin.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01_1_Introducing_Bitcoin.md b/01_1_Introducing_Bitcoin.md index 58de2fedb..9a32308d4 100644 --- a/01_1_Introducing_Bitcoin.md +++ b/01_1_Introducing_Bitcoin.md @@ -56,7 +56,7 @@ ECC does not receive much attention in this tutorial. That's because this tutori **_What is an Elliptic Curve?_** An elliptic curve is a geometric curve that takes the form `y``2` = `x``3`` + ax + b`. A specific elliptic curve is chosen by selecting specific values of `a` and `b`. The curve must then be carefully examined to determine if it works well for cryptography. For example, the secp256k1 curve used by Bitcoin is defined as `a=0` and `b=7`. -Any line that intersects an elliptic curve will typically so at 3 points (absent a few cases for infinity and intersections) ... and that's the basis of elliptic-curve cryptography. +Any line that intersects an elliptic curve will typically do so at 3 points (absent a few cases for infinity and intersections) ... and that's the basis of elliptic-curve cryptography. **_What are Finite Fields?_** A finite field is a finite set of numbers, where all addition, subtraction, multiplication, and division is defined so that it results in other numbers also in the same finite field. One simple way to create a finite field is through the use of a modulo function.