This problem was posed by a friend of mine. He's got it from a social media post. We don't know how to solve it, but there are similar types of questions in this website, whose techniques I've tried to apply but to no avail.
I'm trying to find some sort of manipulation that allows us to find the real roots of the equation: \begin{equation*}1+\sqrt{1-\frac{1}{x}}+\sqrt{x-\frac{1}{x}}=x^2\end{equation*} \begin{align*}\text{Where } x \in \mathbb{R} \end{align*}
I've already tried many things, but this is what seems cleaner: \begin{align*} a=\sqrt{x-\frac{1}{x}},& \quad b=\sqrt{1-\frac{1}{x}}\\ \implies a+b=x^2-1,&\quad a-b=\frac{1}{x+1}\\ \to a^2+b^2=\frac{x^2+x-2}{x}, &\quad a^2-b^2=x-1 \end{align*} But I couldn't get much further. This looks like a method where I could stay organized and try to spot something with more ease, but I wasn't able to do so.
I'm not interested in employing numerical methods. I know $1$ is a trivial solution and, through the usage of software, that $\varphi$ is also a solution.
Thanks in advance.
Subtract 1 from both sides, and then multiply both sides by $\sqrt{x}$:
$$\sqrt{x-1} + \sqrt{x^2-1} = (x^2-1) \sqrt{x}.$$
Square both sides:
$$(x-1) + 2(x-1)\sqrt{x+1} + (x^2-1) = (x^2-1)^2 x.$$
Collect terms:
$$2(x-1)\sqrt{x+1} = x^5 - 2x^3 - x^2 + 2.$$
Square both sides:
$$2(x-1)^2 (x+1) = (x^5 - 2x^3 - x^2 + 2)^2.$$
Expand, and collect terms:
$$x^{10} - 4x^8 - 2x^7 + 4x^6 + 8 x^5 + x^4-12 x^3 + 4x = 0.$$
Factor the LHS:
$$(x-1)^2 x (x^2-x-1) (x^5+3x^4+3x^3-4x-4) = 0.$$
This immediately shows that $x=0$, $x=1$ and $x=(1\pm\sqrt{5})/2$ are possible roots. Plugging in shows that $x=0$ and $x=(1-\sqrt{5})/2$ are spurious, but $x=1$ and $x=(1+\sqrt{5})/2$ are actual roots. $x^5+3x^4+3x^3-4x-4$ has one real root but it does not satisfy the original equation. Therefore, there are no other solutions to the original equation.
As the comments indicate, there are more elegant and simpler ways to get to a solution, but I wanted to show a brute-force method that requires little or no cleverness and just applies straightforward algebra by "following your nose".