1

I thought about this but I could not come up with a way to calculate this. Any comment?? note:$x$ is much larger than $\alpha$

eChung00
  • 2,963
  • 8
  • 29
  • 42

3 Answers3

1

Write $\sqrt{x^2-a}$ as $\vert x \vert \sqrt{1-\dfrac{a}{x^2}}$. Now recall that $$(1-y)^{1/2} = 1-\dfrac{y}2-\dfrac{y^2}{8}-\dfrac{y^3}{16}-\dfrac{5 y^4}{128} + \mathcal{O}(y^5)$$

1

Use the binomial theorem:

$$\begin{align*} \frac{\sqrt{x^2-\alpha}}x&=\left(1-\frac{\alpha}{x^2}\right)^{1/2}\\\\ &=\sum_{k\ge 0}\binom{1/2}k(-1)^k\left(\frac{\alpha}{x^2}\right)^k\\\\ &\approx1-\frac{\alpha}{2x^2}\;, \end{align*}$$

with more terms readily available if you need them. Here

$$\binom{1/2}k=\frac{(1/2)^{\underline k}}{k!}\;,$$

where $x^{\underline i}$ is a falling factorial.

Brian M. Scott
  • 616,228
0

For positive $x$, multiply by $\frac{x+\sqrt{x^2-\alpha}}{x+\sqrt{x^2+\alpha}}$. We get $$\frac{\alpha}{x+\sqrt{x^2-\alpha}},$$ which can be computed to good accuracy without roundoff error issues.

André Nicolas
  • 507,029