Question

Calculation of the value of pi: The Nilakantha Series was developed in the 15th century as...

Calculation of the value of pi: The Nilakantha Series was developed in the 15th century as a way to calculate the value of pi: pi = 3 + 4/(2*3*4) -4/(4*5*6) + 4/(6*7*8) -4/(8*9*10)+... . Use a for loop to approximate pi using this technique (5 points). Continue the calculations until the absolute value of the difference between the value of pi stored in MATLAB and the approximation is less than 0.001. Report the appproximation and the number of iterations required (5 points). Hint: to alternate the sign on each term use (-1) raised to a power.

0 0
Add a comment Improve this question Transcribed image text
Answer #1

Your Code 1 clc 2 clear all 4 % variable declaration 5 allowed err-0.001; 6 estimated_pi3 10 flag -true; 11 term-0; 12 iter0Command Window Estimated pi using Nilkantha Series: 3.140881 Iterations conpleted: 7

Add a comment
Know the answer?
Add Answer to:
Calculation of the value of pi: The Nilakantha Series was developed in the 15th century as...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • Write a c++ program to calculate the approximate value of pi using this series. The program...

    Write a c++ program to calculate the approximate value of pi using this series. The program takes an input n that determines the number of values we are going to use in this series. Then output the approximation of the value of pi. The more values in the series, the more accurate the data. Note 5 terms isn’t nearly enough. You will try it with numbers read in from a file. to see the accuracy increase. Use a for loop...

  • this is Matlab. Three images are consecutive and connected. I NEED PROBLEM 2 Chapter 6 Programming in Matlab Week 6 THE ALTERNATING HARMONIC SERIES The alternating harmonic series converges to the na...

    this is Matlab. Three images are consecutive and connected. I NEED PROBLEM 2 Chapter 6 Programming in Matlab Week 6 THE ALTERNATING HARMONIC SERIES The alternating harmonic series converges to the natural log of 2 +--...-In(2) = 0.6931471806 -1--+ Because of this, we can use the alternating harmonic series to approximate the In(2). But how far out do you have to take the series to get a good approximation of the final answer? We can use a while loop to...

  • Please complete using matlab In this problem you will utilize a for loop to compute the...

    Please complete using matlab In this problem you will utilize a for loop to compute the an approximation of the value of using the Leibniz's formula for Pi. The formula uses a summation. Follow the instructions correctly and read the questions thoroughly. 1. Set up the initial number of iteration i to obtain six iterations. 2. The approximate value of it can be given by the following formula: Approximated = Enzo 2n+1 Where n is an integer starting at zero...

  • This is a matlab HW that I need the code for, if someone could help me figure this out it would b...

    This is a matlab HW that I need the code for, if someone could help me figure this out it would be appreciated. The value of t can be estimated from the following equation: in your script file, estimate the value of π for any number of terms. You must ask the user for the desired number of terms and calculate the absolute error/difference between your calculation and the built-in MATLAB value ofpi. Display your results with the following message...

  • 11. (10 points) - MATLAB ce of the alternating harmonic series, shown below: 1-2?--+ - 3...

    11. (10 points) - MATLAB ce of the alternating harmonic series, shown below: 1-2?--+ - 3 4 5 Use a loop to determine when the series has converged within a tolerance of 0.001. The animation should show how the value of the series changes as each successive term is added, resulting in a final

  • Part 2 to the problem in matlabthis is the hint that came with the problem

    part 2 to the problem in matlabthis is the hint that came with the problem The value of T can be estimated from the following equation: In your script file, estimate the value of t for any number of terms. You must ask the user for the desired number of terms and calculate the absolute error/difference between your calculation and the built-in MATLAB value ofpi. Display your results with the following message (including the asterisks) where II is the number...

  • Submission Items: (1) A Word document in which you: a. Describe in brief the problem you...

    Submission Items: (1) A Word document in which you: a. Describe in brief the problem you are solving and the numerical method used. b. Snapshot of the output, when you run the program for the conditions mentioned in the questions. c. Discuss your results. (2) MATLAB code (m) file() Question 1: [10 points) Write a MATLAB function that calculates the approximate value of arctan(x) using the Maclaurin series approximation: arctan(x) = x- + +... The function should accept 3 parameters:...

  • Write a C++ program using a while loop to calculate the value of pi/2 accurate to...

    Write a C++ program using a while loop to calculate the value of pi/2 accurate to 6 digits after the decimal point using the following series: DIsplay the following and turn in printouts of the program and the results: The number of terms needed to find pi/2 THe value of pi/2 using acos(-1.0)/2 using 10 digits after the deciaml point The value of pi/2 found with the series using 10 digits after the decimal points (The first 6 digits after...

  • MATLAB Use the Taylor series cos(x)-1-to compute cos(x) to four decimal places (by comparing the value...

    MATLAB Use the Taylor series cos(x)-1-to compute cos(x) to four decimal places (by comparing the value with the matlab built-in function for cos). How many iterations does it take to get to 4- decimal place agreement? (hint: help factorial) 2! 4! 6!

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT