Fisher92 said:
Thanks, that's the answer according to matlab, i.e. that's the answer...
I get the s shift with a power of 2, even found a very similar example in my textbook for it...
I can see that te^(-2t) comes from 1/(s+2)^2, working backwards leaves me with 3t to add from somewhere - which could be 3/s^2? I can't see how 6/(s+2)^3 breaks up like this? Could you please tell me how you broke this up?
Righto, I'll try break it down into steps, starting with a basic example before showing how I got the one you're asking about.
Let's start with:
\frac{8}{(s+4)^2}
Now, we obviously can't do a straight transform, so we need to break it up into parts we can. The easiest way to identify the first component is to replace whatever is inside the brackets with 's', which gives us:
\frac{8}{s^2}
This one is easy to transform, looking at the table of laplace transforms we can see it is of the form:
\frac{n!}{s^{n+1}}
Now we know we have an s^2 term, so "n" must be 1, which gives us:
\frac{1}{s^2} however we need:
\frac{8}{s^2}
Therefor we must multiply by 8, eg:
8 * \frac{1}{s^2} = \frac{8}{s^2}
So we take the laplace transform of 1/s^2 (which is 't') and multiply it by 8 giving us 8t, that's our first part. Next we need to deal with the brackets we replaced earlier with 's'. As (s+4) is in the denominator, we take it as 1/(s+4) and then transform it, which is another easy one. The transform is:
\frac{1}{s+4} = e^{-4t}
Now, combining the two we get:
8te^{-4t}
So that's a basic example, onto the one you wanted help with:
\frac{6}{(s+2)^3}
So again, replace the bracket with 's', yielding:
\frac{6}{s^3}
Again, this is in a very familiar form, the same as that in the original equation only our n = 2 in order to give us s^3. But as you noticed we run into an issue, if we sub n = 2 into the formula we get:
\frac{2}{s^3}
Only we need:
\frac{6}{s^3}
So, as with the first example, we need to multiply it by some number so that it is correct, thus:
3 * \frac{2}{s^3} = \frac{6}{s^3}
So, we know the transform of
\frac{2}{s^3} = t^2
So then we multiply it by 3, giving us 3t^2. That is the first part of our transform, now we move onto the brackets we replaced with 's'. Same as with the first example, take it of the form 1/(s+2) which is easily transformed using the table:
\frac{1}{s+2} = e^{-2t}
Now combining the two we get:
3t^{2}e^{-2t}
Phew! Big post.. that took a long time to write out (partially because I was watching a movie) but hopefully it helps!