Friday, 15 February 2013

functions - Given e=sqrt[y]x isolate y



I have a problem trying to create a function in a programming language that does not support any functions other than that of basic arithmetic (addition, subtraction, exponentiation, division...). This function should replicate that of the natural logarithm, or ln(x) function. Currently, I have e=yx (from ey=x). As of now, I have not found any way to isolate y in that equation without also using the log() function. Is this possible to do without using said function? Once I have the ln(x) function, I can construct the logbase(x) function as logbase(x)=ln(x)ln(base). And, with the Taylor series, I can create dynamic functions for sin,cos, and tan as well as there inverses. From there, I've got a more or less functional programming space.


Answer



Obviously, since y=ln(x) is the solution, this is equivalent to writing log in terms of "elementary" functions. This can't be done - a simple argument to this fact would be that there is no way to, in terms of the map xex and rational functions, create a function tending to infinity, but having vanishing derivative. (A more sophisticated argument could proceed by noting that ln(x) is as "well-defined" as the other operations, since ln(1) could be argued to be 2πi since e2πi=1 - then tossing the word "holomorphic" around a few times, we'd get a result).



However, if you're okay with Taylor series, then the following may be useful:

ln(x+1)=xx22+x33x44+x55+
and, if you want to limit the number of terms you must compute, you could compute, for instance, α=e (or a higher root; you just need to be able to precompute ln(α) and, before computing ln(x) multiply by αn for an integer n such that x is in [α12,α) - that is, let x=yαn where y is in that interval, then ln(x)=ln(yαn)=ln(y)+nln(α) and if you use the Taylor series for ln(y) near y=1, you should be able to get reasonable accuracy on any input, since you're only using the Taylor series in a relatively small interval.



Another method would be to abuse the identity ln(xa)=aln(x) and to use a linear approximation of ln In particular, if you chose some large integer n, then you could compute
ln(x)=nln(nx)n(nx1).



You could also use Newton's method or something similar to numerically solve the equation - you could use one of the above methods to approximate a good place to start, and then iterate Newton's method until you reach acceptable accuracy.


No comments:

Post a Comment

real analysis - How to find limhrightarrow0fracsin(ha)h

How to find lim without lhopital rule? I know when I use lhopital I easy get $$ \lim_{h\rightarrow 0}...