Skip to content

Commit

Permalink
Merge pull request #101 from krehermann/simplify_montgomery_tangent_rule
Browse files Browse the repository at this point in the history
remove unnecessary subscripts for the x, y parameters
  • Loading branch information
PlanetMacro authored Mar 7, 2024
2 parents d652d15 + 8a30cf6 commit 0380db2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions chapters/elliptic-curves-moonmath.tex
Original file line number Diff line number Diff line change
Expand Up @@ -884,8 +884,8 @@ \subsection{Montgomery group law} We have seen that Montgomery curves are specia
\item (Tangent rule) If $P=(x,y)$ with $y\neq 0$, the group law $P\oplus P=(x',y')$ is defined as follows:
$$
\begin{array}{llr}
x' = (\frac{3x_1^2 + 2A x_1 +1}{2By_1})^2\cdot B - (x_1 + x_2) - A &,&
y' = \frac{3x_1^2 + 2A x_1 +1}{2By_1}(x_1-x') - y_1
x' = (\frac{3x^2 + 2A x +1}{2By})^2\cdot B - 2x - A &,&
y' = \frac{3x^2 + 2A x +1}{2By}(x-x') - y
\end{array}
$$
\item (Chord rule) If $P=(x_1,y_1)$ and $Q=(x_2,y_2)$ such that $x_1 \neq x_2$, the group law $R=P\oplus Q$ with $R=(x',y')$ is defined as follows:
Expand Down

0 comments on commit 0380db2

Please sign in to comment.