This may help. Let $E/\mathbb{Q}$ be an elliptic curve with points $P$, $Q$, and $R$, such that $P$ is of order $2$, $Q$ is of order $3$, and $R$ is of order $4$. Now:
- Plot $P$, and try to find $2P$ geometrically (i.e., show graphically that $2P=\mathcal{O}$).
- Plot $Q$, find $2Q$ geometrically, plot it, and then try to find $3Q$ (and try to understand why $3Q=\mathcal{O}$).
- Plot $R$, find $2R$, $3R$, and try to find $4R$ geometrically.
To get you started, here is such a curve $E: y^2 = x^3 - 157707x + 78888006$, with
$$P=(-549,0),\quad Q=(27,8640),\quad \text{and} \quad R=(315,-7776).$$
If you use Sage, then you can plot $E$ like this:
E=EllipticCurve([- 157707, 78888006]);
plot(E);
Understanding the geometry behind points of order $2$ and $3$ may be easier in $E:y^2=x^3+1$, where $S=(2,3)$ has order $6$.