I have an equation I want to solve, so I entered the following into Mathematica.
(x^(17/6))/(a^(17/6)) - (x^2)/a -1 == 0
where I assume $a>>1$ and $x$ is the unknown. How do I compute the dependence of $x$ on $a$ as $a \rightarrow \infty$.
I have an equation I want to solve, so I entered the following into Mathematica.
(x^(17/6))/(a^(17/6)) - (x^2)/a -1 == 0
where I assume $a>>1$ and $x$ is the unknown. How do I compute the dependence of $x$ on $a$ as $a \rightarrow \infty$.
Find the first two terms of the expression expanded as a series at a=infinity. Trial and error quickly indicates that expanding to order 2 suffices.
ee = (x^(17/6))/(a^(17/6)) + (x^2)/a - 1;
ser = Normal[Series[ee, {a, Infinity, 2}]]
(* Out[112]= -1 + x^2/a *)
This tells you that x will be approximately sqrt(a). You can check this for plausibility by using FindRoot with a set to 1000, say. The solution is around 31.622, which is fairly close to sqrt(1000).