Computing generators of a Mordell curve $$y^2 = x^3 - 44275089430000,$$ can be done in Magma by running the following code:
SetClassGroupBounds("GRH"); Generators(EllipticCurve([0,-44275089430000])) Multiple runs of this code in Magma calculator produces two different outcomes:
[] false false or
[ (18748450031360702684179393606032922472692419624480580773326199534256/3396838\ 01416243388455124782355212643880890159427986479577965225 : 6967657247521859894337760812353908599119616220367281714549084326793359797075167\ 8246596820708687007596/62605466439213150762495390467855187870102299492791336241\ 99210595756050841608942926666398752875 : 1) ] true true The former result means that Magma failed to compute the rank (and generators) of the corresponding Mordell-Weil group, while the latter means it succeeded in that. The discrepancy in possible results seems to be explained by the random choices made during computations. The results can be deterministically reproduced by fixing the random seed as SetSeed(3); or SetSeed(0);, respectively.
So, the failure in computing generators for a given curve does not necessarily mean that Magma cannot do that, but may be just a result of particular "unlucky" random choices. This leads to practical questions:
Q: What are the chances of being just "unlucky" with computation of generators? What is the probability of remaining "unlucky" in a series of $n$ repeated computations (with different random seeds) of the generators for the same curve?