Brocard's problem is a problem in mathematics that asks to find integer values of n for which $$x^{2}-1=n!$$ http://en.wikipedia.org/wiki/Brocard%27s_problem. According to Brocard's problem $$x^{2}-1=n!=5!*(5+1)(5+2)...(5+s)$$ here,$(5+1)(5+2)...(5+s)=\mathcal{O}(5^{s}),5!=k$. So, $$x^{2}-1=k *\mathcal{O}(5^{s})$$ Here, $\mathcal{O}$ is Big O notation. For every rational number $x$ , there is a rational $s$( since $k$ is a constant, if $x$ is increased, $s$ has to be increased to balance the equation). It is a "one-to-one" relation, so there exists a "well-defined" function $f(x)$, so $s=f(x)$ $$x^{2}-1=k *\mathcal{O}(5^{f(x)})$$
Claim: Above equation can not have infinite solution, because change rate of $\mathcal{O}(5^{f(x)})$is much bigger than $x^{2}-1$ ,
$$\frac{d}{dx}x^{2} <\frac{d}{dx} \mathcal{O}(5^{f(x)})$$
if $f(x) = {2 \over \log 5}\log x$ then, $5^{f(x)} = \mathrm e^{f(x) \log 5} = \mathrm e^{2 \log x} = x^2$ but, ${2 \over \log 5}\log x$ is only once integer (when, $x=5$), if Brocard's problem has infinite problem then $f(x)$ must have infinite integer values. So, $f(x) \neq {2 \over \log 5}\log x$.
[if $f(x) = {2 \over \log 5}\log x$ then, $5^{f(x)} = \mathrm e^{f(x) \log 5} = \mathrm e^{2 \log x} = x^2$ so, $x$ has to be $5^m$ and the equation becomes,$$5^{2m}-1=k *\mathcal{O}(5^{s})=n!$$ ]
So, after certain value of $x$, the equation will not hold.
Remarks:
1.you can use other integer value instead of 5.
2. there are terms(factorial), in the expansion of $(5+1)(5+2)...(5+s)$, with bigger growth than $5^{s}$ which is used for simplicity.
edit 1: It is known,$x=a^2-b^2;y=2ab; z=a^2+b^2$ are solutions to$x^2+y^2=z^2$,for any integer $a,b$ these solutions works.It can written that,$x=f_1(a,b),y=f_2(a,b),z=f_3(a,b)$ Keeping $b$ constant,$x=g_1(a),y=g_2(a),z=g_3(a)$.
So, for each integer $a$, an integer solution of the equation can be found and as $a$ increases $g_1,g_2,g_3$ increases, because when these $g_1,g_2,g_3$ are plotted on 2D, it can be noticed that from one integer point to another bigger integer point,each of these $g_1,g_2,g_3$ moves continuously to another $g_1,g_2,g_3$ as $g_1,g_2,g_3$ are algebraic, rational expression (otherwise not possible to provide integer solution with transcendental function expression). Same idea is used above.
In general, $g_1,g_2,g_3$ might have points where these function are not differentiable but those points are finite, so the argument can be carried on after those points. For example, if $g(a)= \frac{5a}{a-1}$ then $g$ is continuous after $a=1$.
Why the above argument is not correct? what are the flaws?
Answer to 1st question is negative because there is an factorial term , that is sure to be integer and must have bigger growth than $2x$ for sufficient large $x$.
– Michael Jun 05 '15 at 06:29