Answered step by step
Verified Expert Solution
Question
1 Approved Answer
so far I have this I keep running in to the problem that my y value is incorrect It is well known that 4=arctan(1) Use
so far I have this
I keep running in to the problem that my y value is incorrect
It is well known that 4=arctan(1) Use the Taylor series for the arctan at the origin to write 4 as a series. Write a function that returns the error when 4 is evaluated truncating the series after n terms. For the exact value of use the builtin matlab variable pi. function y= pi4Error (n) \[ \begin{array}{l}\text { pi_real }=0 ; \\ \text { for } i=0: n \\ \text { pi_real }=\text { pi_real }+(-1)^{\wedge} i /(2 * i+1) \text {; } \\ \text { end } \\ \text { pi_real = pi_real } * 4 \\ y=\text { abs(pi_real-pi) }\end{array} \]Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started