I have been working on this problem for quite a while and frankly, I ran out of ideas quite a while ago and hence I decided to ask it here(my ideas are below). I will greatly appreciate any help.
Given $(x_0,x_1,x_2,x_3)\in \mathbb{Q}$ where all $(x_0,x_1,x_2,x_3)$ are larger than one and they are all unique and given $$f(x) = \dfrac{x(x^2 - 1)}{(x^2 + 1)^2}$$ I was trying to determine a valid $(x_0,x_1,x_2,x_3)$ such that $$f(x_2) - f(x_0) - f(x_3) = 0$$ and $$2f(x_2) - f(x_1) - f(x_3) = 0$$
My approaches
- Trigonometry
As $\cos \theta$ and $\sin \theta$ can be parametarized by $\dfrac{2x}{x^2 + 1}$ and $\dfrac{x^2 - 1}{x^2 + 1}$, $f(x)$ can be thought to be $\dfrac{\sin 2\theta}{4}$. Hence, the first condition can be thought as $$\sin 2\theta _2 - sin 2\theta _0 - \sin 2\theta _3 = 0$$ Yet I failed to reach any ideas from here.
- Groebner basis
I am quite new to this idea of Groebner basis yet using Sage, I found 9 Groebner bases of an ideal defined by the variance given by the two conditions above. Yet I found that two of those 9 were the two conditions above while for the others to be 0, $(x_0,x_1,x_2,x_3)$ cannot be all unique or larger than one. Yet as I said, I am quite new to this concept as I am quite new to algebraic geometry, I may be wrong. If this is the case I will greatly appreciate any corrections
- Brute Force
I defined two terms $m_i$ and $n_i$ where they are both integers which gives $$f(x_i) = \dfrac{n_im_i(n_i^2 - m_i^2)}{(n_i^2 + m_i^2)^2}$$ where $x_i = \dfrac{n_i}{m_i}$. Here, I ran a octa-loop(horrendous amounts of loops), making sure n_i and m_i are mutually prime, with hope that some $n_0, m_0$.....$n_3, m_3$ might be found.
I was unsuccessful.
I'm fairly confident that there is a better way to go about doing this and I am just unfamiliar with it. Any help is appreciated. Thank you in advance!
Fixing or choosing any two points on the curve, with $(x_3,f(x_3))$ and $(x_2,f(x_2))$, one could then find the other two points $x_0,x_1$ by using the two given equations and so $f(x_0)=f(x_2)-f(x_3)$ and $f(x_1)=2f(x_2)-f(x_3)$. To find $x_0$ and $x_1$ we can then use the function $f(x)$.