bjnartowt
- 265
- 3
Hi all, I am trying to find a nice back-of-the-envelope way to numerically-calculate nasty things like square roots and stuff. For instance:
\sqrt {4.51} = ?
I tried to use a linearization:
\sqrt x = \sqrt {n + \varepsilon } = \sqrt {\left[ {{\rm{integer}}} \right] + \left[ {{\rm{decimal part}}} \right]} = \sqrt n + L(\sqrt x ) \cdot \varepsilon
…where you “linearly” count your way from \sqrt {n + \varepsilon } to \sqrt x by way of the linearization, L(\sqrt x ), namely, the derivative:
L(\sqrt x ) = {\left. {\frac{d}{{dx}}\sqrt x } \right|_{x = n}} = \frac{n}{{2\sqrt n }}
But that’s another square root to calculate, which would further-roughen my approximation. Are there any other numerical-approximations you’d suggest?
\sqrt {4.51} = ?
I tried to use a linearization:
\sqrt x = \sqrt {n + \varepsilon } = \sqrt {\left[ {{\rm{integer}}} \right] + \left[ {{\rm{decimal part}}} \right]} = \sqrt n + L(\sqrt x ) \cdot \varepsilon
…where you “linearly” count your way from \sqrt {n + \varepsilon } to \sqrt x by way of the linearization, L(\sqrt x ), namely, the derivative:
L(\sqrt x ) = {\left. {\frac{d}{{dx}}\sqrt x } \right|_{x = n}} = \frac{n}{{2\sqrt n }}
But that’s another square root to calculate, which would further-roughen my approximation. Are there any other numerical-approximations you’d suggest?