Another approach you could take is to use complex numbers. From de Moivre's formula,
ⅈx = cos(π/2*x) + ⅈ*sin(π/2*x)
Let θ = π/2*x. Then x = 2θ/π, so
- sin(θ) = ℑ(ⅈ^2θ/π)
- cos(θ) = ℜ(ⅈ^2θ/π)
How can you calculate powers of ⅈ without sin and cos? Start with a precomputed table for powers of 2:
- ⅈ4 = 1
- ⅈ2 = -1
- ⅈ1 = ⅈ
- ⅈ1/2 = 0.7071067811865476 + 0.7071067811865475*ⅈ
- ⅈ1/4 = 0.9238795325112867 + 0.3826834323650898*ⅈ
- ⅈ1/8 = 0.9807852804032304 + 0.19509032201612825*ⅈ
- ⅈ1/16 = 0.9951847266721969 + 0.0980171403295606*ⅈ
- ⅈ1/32 = 0.9987954562051724 + 0.049067674327418015*ⅈ
- ⅈ1/64 = 0.9996988186962042 + 0.024541228522912288*ⅈ
- ⅈ1/128 = 0.9999247018391445 + 0.012271538285719925*ⅈ
- ⅈ1/256 = 0.9999811752826011 + 0.006135884649154475*ⅈ
To calculate arbitrary values of ⅈx, approximate the exponent as a binary fraction, and then multiply together the corresponding values from the table.
For example, to find sin and cos of 72° = 0.8π/2:
ⅈ0.8
≈ ⅈ205/256
= ⅈ0b11001101
= ⅈ1/2 * ⅈ1/4 * ⅈ1/32 * ⅈ1/64 * ⅈ1/256
= 0.3078496400415349 + 0.9514350209690084*ⅈ
- sin(72°) ≈ 0.9514350209690084 ("exact" value is 0.9510565162951535)
- cos(72°) ≈ 0.3078496400415349 ("exact" value is 0.30901699437494745).
To find asin and acos, you can use this table with the Bisection Method:
For example, to find asin(0.6) (the smallest angle in a 3-4-5 triangle):
- ⅈ0 = 1 + 0*ⅈ. The sin is too small, so increase x by 1/2.
- ⅈ1/2 = 0.7071067811865476 + 0.7071067811865475*ⅈ . The sin is too big, so decrease x by 1/4.
- ⅈ1/4 = 0.9238795325112867 + 0.3826834323650898*ⅈ. The sin is too small, so increase x by 1/8.
- ⅈ3/8 = 0.8314696123025452 + 0.5555702330196022*ⅈ. The sin is still too small, so increase x by 1/16.
- ⅈ7/16 = 0.773010453362737 + 0.6343932841636455*ⅈ. The sin is too big, so decrease x by 1/32.
- ⅈ13/32 = 0.8032075314806449 + 0.5956993044924334*ⅈ.
Each time you increase x, multiply by the corresponding power of ⅈ. Each time you decrease x, divide by the corresponding power of ⅈ.
If we stop here, we obtain acos(0.6) ≈ 13/32*π/2 = 0.6381360077604268 (The "exact" value is 0.6435011087932844.)
The accuracy, of course, depends on the number of iterations. For a quick-and-dirty approximation, use 10 iterations. For "intense precision", use 50-60 iterations.
sinffrommath.hon my system takes only about 2.5x as much time as your approximation. Considering your function is inlined and the lib call is not, this is really not much difference. My guess is if you added range reduction so it was usuable in the same way as the standard function, you would have exactly the same speed. – Damon Jul 5 '12 at 14:50