Efficiently Approximate sqrt(35) Using Binomial Series | 10^-7 Accuracy

Click For Summary
SUMMARY

The forum discussion focuses on using the binomial series to approximate the square root of 35 with an accuracy of 10-7. The formula applied is (1+x)n where x is -1/36 and n is 1/2, leading to the expression 6*sqrt(35/36). The initial approximation yielded 5.917237472, but the user identified an error in the coefficient for the square term, which should be -1/8 instead of 1/8. This correction is crucial for achieving the desired accuracy.

PREREQUISITES
  • Understanding of binomial series expansion
  • Familiarity with Taylor series and their applications
  • Basic knowledge of square root approximations
  • Proficiency in handling numerical accuracy and error analysis
NEXT STEPS
  • Study the derivation of the binomial series for fractional exponents
  • Explore Taylor series and their convergence properties
  • Learn about numerical methods for root approximation
  • Investigate error analysis techniques in numerical computations
USEFUL FOR

Mathematicians, engineers, and students interested in numerical methods and approximations, particularly those focusing on series expansions and accuracy in calculations.

sami23
Messages
69
Reaction score
1
Use binomial series to approximate sqrt (35) with an accuracy of 10^(-7)

(35) = sqrt(35*36/36) = 6*sqrt(35/36)
Formula: (1+x)^n where x=(-1/36) and n=(1/2):

6*sqrt(35/36) = 6[(1 + (- 1/36))^(1/2)] =

from k=0 to k=4:
= 6[(1 - (1/2)*(1/36) + (1/8)*(1/36)^2 - (1/16)*(1/36)^3 +
(5/128)*(1/36)^4]

= 5.917237472 but it has to be more accurate

I don't know where the mistake is in the series. I used the 4 terms because (5/128)(1/36) = 2.30*10^(-8) Please help, thanks again.
 
Physics news on Phys.org
The coefficient for the square term should be -1/8, not 1/8. Specifically it is (1/2)(-1/2)/2.

I didn't look any further.
 

Similar threads

  • · Replies 6 ·
Replies
6
Views
3K
  • · Replies 7 ·
Replies
7
Views
2K
Replies
2
Views
2K
  • · Replies 17 ·
Replies
17
Views
5K
Replies
1
Views
2K
Replies
2
Views
2K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 3 ·
Replies
3
Views
2K
Replies
2
Views
1K
  • · Replies 5 ·
Replies
5
Views
3K