MATLAB HELP - Maclaurin series

Join the discussion
Registration is free. Ask a follow-up in this thread, or start your own.
3 replies · 28K views
figgy111
Messages
2
Reaction score
0
MATLAB HELP! -- Maclaurin series

Hi, i have absolutely no programming experience with MATLAB and really need it. We have been assigned 2 problems using MATLAB and a bunch of others that don't need matlab. I was wondering if someone could show me what to do for the two needed to be done in MATLAB (or send a .m file if you have one/could create one); the questions are:

The Maclaurin series expansion for cos (x) is:

cosx = 1 - (x^2)/2 + (x^4)/4! - (x^6)/6! + (x^8)/8! - ...

Starting with the simplest version, cosx = 1, add terms one at a time to estimate cos(pi/3). After each term is added, compute the true and approximate percent relative errors. Use your pocket calculator to determine the true value. Add terms until the absolute value of the approximate error estimate falls below an error criterion conforming to two significant figures.

The other question is:

Use a centered difference approximation of O(h^2) to estimate the second derivative of the function f(x) = 25x^3 - 6x^2 + 7x - 88. Perform the evaluation at x = 2 using step sizes of h = 0.25 and 0.125. Compare your estimates with the true value of the second derivative. Interpret your results on the basis of the remainder term of the taylor series expansion.

THANK YOU SO MUCH PLEASE HELP!
 
Physics news on Phys.org
figgy111 said:
Hi, i have absolutely no programming experience with MATLAB and really need it. We have been assigned 2 problems using MATLAB and a bunch of others that don't need matlab. I was wondering if someone could show me what to do for the two needed to be done in MATLAB (or send a .m file if you have one/could create one); the questions are:

The Maclaurin series expansion for cos (x) is:

cosx = 1 - (x^2)/2 + (x^4)/4! - (x^6)/6! + (x^8)/8! - ...

Starting with the simplest version, cosx = 1, add terms one at a time to estimate cos(pi/3). After each term is added, compute the true and approximate percent relative errors. Use your pocket calculator to determine the true value. Add terms until the absolute value of the approximate error estimate falls below an error criterion conforming to two significant figures.

The other question is:

Use a centered difference approximation of O(h^2) to estimate the second derivative of the function f(x) = 25x^3 - 6x^2 + 7x - 88. Perform the evaluation at x = 2 using step sizes of h = 0.25 and 0.125. Compare your estimates with the true value of the second derivative. Interpret your results on the basis of the remainder term of the taylor series expansion.

THANK YOU SO MUCH PLEASE HELP!
You don't need MatLab. You have just have to add the first few terms. You do this by replacing x by [itex]\pi/3[/itex] in the MacLaurin/Taylor series expansion and calculating the first few terms on a calculator. Calculate [itex]cos(\pi/3)[/itex] on a calculator. Compare the two. If the difference is less than .005 then you have the answer to two significant figures. If not, keep adding more terms until you get the difference down to less than .005.

AM
 
and if you're required to use matlab, what are you having trouble with? Do you understand AM's logic? Do you need help with the commands for the .m file?

I took a MATLAB class and I still use the program once in a while, if you can aska specific question, or PASTE your .m file here, I'll see what I can help you with.
 
yes we are required to use matlab

i did the first one alright the second one i had some trouble with. here is my .m file for that one i know its a little of but let me know. thanks in advance
 

Attachments

  • p47.m
    p47.m
    422 bytes · Views: 1,602