In standard Elliptic Curve cryptography, the private key can be reduced modulo the order of the generator point, without changing the matching public key. That order is often noted $n$. In the question's numerical example, that would be $n=2500$. However, customarily, the generator point is chosen such that $n$ is prime.
In practical use, $n$ is part of the curve parameters. Here in sec2-v2 is an example for a common curve; the notation and a brief summary of the math is in sec1-v2.
Mathematically, $n$ is the length of the cycle of the points on the Elliptic Curve reached by adding (in the sense that has for these points) the generator point (starting from the generator point, or from the identity point also known at the point at infinity). That method is usable only for artificially small groups. For larger ones, see e.g. this question.
How to get the public key for private key $555$, from the public key with private key $5555555555$ using any math operation…
If $n$ is $2500$, or more generally if $n$ is a divisor of $5555555555-555$, then $555\equiv5555555555\pmod n$ and the two private keys are the same.
Otherwise, it remains possible to compute the public key for private key $555$ using that private key, the curve and generator parameters, and a standard algorithm for point multiplication, such as the one in the aforementioned summary of the math.
$5555555555 \bmod 2500 = 555$
. – fgrieu Sep 11 '22 at 13:54