For some exercise I need to compute the generators of $E(\mathbb{Q})/2E(\mathbb{Q})$, where $E: y^2 = x(x^2 + 3x + 5)$
I did this by the approach from Cassels book 'Lectures on Elliptic Curves' and got the answer $< (0,0), (1,3) >$ which seems reasonable. A friend of mine did the same computation, but did not get $(1,3)$. Therefore we are looking for some (hopefully online) tool that computes this group. However, I know next to nothing of computer algebra systems, so we could use some help.
You could try with Sage, which is open-source and also available online. It has a vast library of functions related to elliptic curves, although I don't know if it can compute $E(\Bbb{Q})/2E(\Bbb{Q})$ directly.
It shouldn't be too difficult to pick up, especially if you know a bit of Python. You can start looking at the tutorial and at the section of the manual devoted to elliptic curves. In particular, be sure to check out how to construct an elliptic curve and the many functions specific for rational curves.
Without further ado, here's a little primer, which should be enough for your purposes (the lines starting with
sage:
are the input, minus thesage:
part).We can construct your elliptic curve with
Then we can inquire about its torsion subgroup
and about the rank and generators of the free part
I believe that this should be enough to conclude that indeed $$ E(\Bbb{Q})/2E(\Bbb{Q}) = \langle (0,0), (1,3) \rangle $$