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.
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
This tells you that |
|||
|
|
a->Infinity, then typeeq = (x^(17/6))/(a^(17/6)) + (x^2)/a - 1; Limit[eq, a -> Infinity]this gives -1. But @m_goldberg said, you are using wrong terms all over the place. You mentionSolve, then write an equation, then talk about dependence, which implies yet another function, then talk about limits. So it is not clear. In Math you need to use clear and correct terms so not to confuse others. – Nasser Feb 7 at 12:53