I want to program the points on elliptic curves $\mod p$, for certain $p$ prime in Python. For this I want for given $p$, $a \pmod p$ and $b \pmod p$ to find $x \pmod p$ and $y \pmod p$ such that: $$y^2 \equiv x^3 + ax + b \pmod p$$ Is there a formula for finding (just one!) specific $(x,y) \in (\mathbb{Z_p},\mathbb{Z_p})$ on this curve. Then I can just implement this.
Alternatively: is there a very fast algorithm to find a solution (even when $p=22801763489$ for example). Running first over all $(0,y)$, then $(1,y)$ for the equation doesn't do the trick.
2026-03-27 04:18:31.1774585111
Find point on Elliptic Curve
1.1k Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
1
The point $(x_0,y_0)$ is on $E$.