Compute a derivative using MacLaurin series

Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
4 replies · 4K views
kamil
Messages
6
Reaction score
0

Homework Statement


Compute the 9th derivative of
[tex]f(x) = \frac{\cos\left(3 x^{4} \right) - 1}{x^{7}}[/tex]
at x=(0)

Homework Equations


[tex]f(x)=\sum^{\infty}_{n=0} \frac{f^{(n)}(c)}{n!}x^n[/tex]
[tex]cos(x)=\sum^{\infty}_{n=0} \frac{(-1)^{n}}{(2n)!}x^{2n}[/tex]



The Attempt at a Solution


The correct answer is 1224720.
I've already read this thread(https://www.physicsforums.com/showthread.php?t=362369&highlight=Maclaurin), and I think I know how to do these kind of problems. However, I have a problem with that one since it has [tex]{-1}}[/tex]

What I did is write the power series for cos(x),
[tex]cos(x)=\sum^{\infty}_{n=0} \frac{(-1)^{n}}{(2n)!}x^{2n}[/tex]

Substitute [tex]3 x^{4}[/tex] , substract 1, and divide by [tex]x^{7}[/tex].
And getting:
[tex]\frac{\cos\left(3 x^{4} \right) - 1}{x^{7}}=\sum^{\infty}_{n=0} \frac{\frac{(-1)^{n}3^{2n}}{(2n)!}x^{8n}-1}{x^7}[/tex]
But after that I don't know.
 
Physics news on Phys.org
kamil said:
Substitute [tex]3 x^{4}[/tex] , substract 1, and divide by [tex]x^{7}[/tex].
And getting:
[tex]\frac{\cos\left(3 x^{4} \right) - 1}{x^{7}}=\sum^{\infty}_{n=0} \frac{\frac{(-1)^{n}3^{2n}}{(2n)!}x^{8n}-1}{x^7}[/tex]
But after that I don't know.

Nope. You can't move the 1 inside the sum like that. Sum(something) -1 is not equal to sum(something - 1).

What you should do is recognize that the n = 0 term of the cosine series is 1, so this cancels with your minus 1. Your sum is then from n = 1 to infinity, and you can safely divide the x^7 through. Then I think you probably know what to do from there!
 
But the n= 0 term for the MacLaurin series for cosine is just "1". The "-1" term just cancels that.

[tex]\frac{\cos\left(3 x^{4} \right) - 1}{x^{7}}=\sum^{\infty}_{n=1} \frac{\frac{(-1)^{n}3^{2n}}{(2n)!}x^{8n}}{x^7}[/tex]
 
Thank you, it worked. I knew there was something wrong with the -1. I don't know why I thought I could do that operation on a sum. I had also simplified [tex]\frac{x^{8n}}{x^{7}}[/tex] to [tex]{x^{n}}[/tex] , which is totally wrong. I don't why I did this.