Can Euler's formula accurately calculate arcsine?

In summary, the conversation discusses using the Euler formula of arctan to calculate arcsine and presents an equation for this calculation. The issue of truncating the infinite series and the resulting inaccuracy is also addressed, with a suggested solution to use a better calculator. A python program is provided to demonstrate the convergence of the calculation.
  • #1
Marie Cury
10
0
1. I use Euler formula of arctan to calculate arcsine
2. This equation[tex]\arctan x = \frac{x}{1+x^2} \sum_{n=0}^\infty \prod_{k=1}^n \frac{2k x^2}{(2k+1)(1+x^2)}.[/tex]
If I input 0.9999999999, I will not be able to get the expected result. If input = 0.9 then it is pretty correct, but 0.99 is definitely wrong and more wrong when the decimal digits get higher till uncomputable.
Could someone help me ? :wink:
 
Physics news on Phys.org
  • #2
2 weeks already and everyone stopped breathing into my thread!
you ignore my post I guess!
 
  • #3
It sounds like you just need a better calculator, try using Mathematica.
 
  • #4
It wasn't clear what you were asking. It's an infinite series, so you must be truncating it at some point, and so of course the result is not exact.
 
  • #5
Marie Cury said:
1. I use Euler formula of arctan to calculate arcsine



2. This equation[tex]\arctan x = \frac{x}{1+x^2} \sum_{n=0}^\infty \prod_{k=1}^n \frac{2k x^2}{(2k+1)(1+x^2)}.[/tex]

If I input 0.9999999999, I will not be able to get the expected result. If input = 0.9 then it is pretty correct, but 0.99 is definitely wrong and more wrong when the decimal digits get higher till uncomputable.
Could someone help me ? :wink:

I don't see what the problem is, I get at least 4 digits correct If I evaluate the sum for n<=13 and 10 digits correct for n<=32. (I don't think n=0 should count).
Because [tex] \frac{2k x^2}{(2k+1)(1+x^2)} [/tex] is smaller than 1/2 for all x, the error must halve for each increase of n.

I used the following python program

Code:
rom math import *

x = 0.9999
limit = 20

sum = 0
for n in range (1, limit):
    prod = 1
    for k in range (1, n):
        prod *= 2*k*x*x/((2*k+1)*(1+x*x))
    sum += prod
    print n, atan(x), sum * x / (1+x*x)


1 0.785348160897 0.4999999975
2 0.785348160897 0.666649995833
3 0.785348160897 0.733303328833
4 0.785348160897 0.761866186262
5 0.785348160897 0.77455952004
6 0.785348160897 0.780328640213
7 0.785348160897 0.782991044782
8 0.785348160897 0.784233375995
9 0.785348160897 0.784817943983
10 0.785348160897 0.785094816918
11 0.785348160897 0.785226647987
12 0.785348160897 0.785289691324
13 0.785348160897 0.785319949099
14 0.785348160897 0.7853345162
15 0.785348160897 0.785341547891
16 0.785348160897 0.785344949982
17 0.785348160897 0.785346599315
18 0.785348160897 0.78534740034
19 0.785348160897 0.785347789989
20 0.785348160897 0.785347979799

Converges nicely as you can see.
 

Related to Can Euler's formula accurately calculate arcsine?

1. Can Euler's formula accurately calculate arcsine?

Yes, Euler's formula can accurately calculate arcsine. Euler's formula is a mathematical identity that relates the trigonometric functions sine and cosine with the exponential function. It has been extensively proven and used in many mathematical applications, including calculating arcsine.

2. How does Euler's formula calculate arcsine?

Euler's formula calculates arcsine by using the complex exponential function, which can be expressed as e^ix. When this function is plugged into the formula, it simplifies to the familiar arcsine function, providing an accurate calculation.

3. Are there any limitations to using Euler's formula for calculating arcsine?

Yes, there are some limitations to using Euler's formula for calculating arcsine. It is most accurate for small values of x, and as x approaches larger values, the accuracy decreases. Additionally, it may not be suitable for certain complex or non-real values of x.

4. How does Euler's formula compare to other methods of calculating arcsine?

Euler's formula is a highly efficient and accurate method of calculating arcsine, especially for small values of x. It is often preferred over other methods, such as Taylor series or power series expansions, due to its simplicity and speed of convergence.

5. Can Euler's formula be used to calculate other trigonometric functions?

Yes, Euler's formula can be used to calculate other trigonometric functions, such as cosine and tangent. By plugging in different values for x, the formula can be adapted to calculate a wide range of trigonometric functions with a high degree of accuracy.

Similar threads

  • Precalculus Mathematics Homework Help
Replies
17
Views
1K
  • Linear and Abstract Algebra
Replies
2
Views
1K
  • General Math
Replies
6
Views
1K
  • Calculus and Beyond Homework Help
Replies
1
Views
408
  • Precalculus Mathematics Homework Help
Replies
2
Views
1K
  • Advanced Physics Homework Help
Replies
15
Views
1K
Replies
4
Views
570
  • Calculus and Beyond Homework Help
Replies
3
Views
1K
  • Classical Physics
Replies
3
Views
937
Back
Top