Unit step function from piecewise

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 · 3K views
cdotter
Messages
305
Reaction score
0

Homework Statement


[tex] f(x) = \begin{cases}<br /> 0, & t < \pi \\<br /> t - \pi , & \pi \leq t < 2 \pi \\<br /> 0, & t \geq 2 \pi<br /> \end{cases}[/tex]

Homework Equations


Unit step function:
[tex]u_c(t) = \begin{cases}<br /> 0, & t < c \\<br /> 1 , & t \geq c \\<br /> \end{cases}[/tex]

The Attempt at a Solution



[itex]u_{\pi}(t)(t-\pi) - u_{2 \pi}(t)(t-2 \pi)[/itex] gives me:

[tex] f(x) = \begin{cases}<br /> 0, & t < \pi \\<br /> t - \pi , & \pi \leq t < 2 \pi \\<br /> \pi, & t \geq 2 \pi<br /> \end{cases}[/tex]

I'm not sure what to do to get the last inequality correct?
 
Physics news on Phys.org
Is [itex]u_{\pi}(t)(t-\pi) - u_{2 \pi}(t)(t- \pi)[/itex] allowed? That does work but the "c" doesn't match.
 
I figured it out. :smile: It is allowed, it just needs forcing.

[itex]u_{\pi}(t)(t-\pi) - u_{2 \pi}(t)(t- \pi) \rightarrow u_{\pi}(t)(t-\pi) - u_{2 \pi}(t)((t- \pi) - \pi)[/itex]

Now that it's in the form [itex]u_c(t)(t-c)[/itex], the Laplace transform can be taken:

[tex] \begin{aligned}<br /> F(s) &= L\{u_{\pi}t(t- \pi)-u_{2 \pi}(t)((t- \pi)- \pi)\}\\<br /> F(s) &= e^{- \pi s}L\{t\} - e^{-2 \pi s}L\{t- \pi\}\\<br /> F(s) &= \frac{e^{- \pi s}}{s^2} - e^{- 2 \pi s} \cdot (\frac{1}{s^2} - \frac{\pi}{s})<br /> \end{aligned}[/tex]
 
SammyS said:
What the exact wording of the question?

The question asked to take the Laplace transform of the piecewise function. I had to create a step function and use [itex]L\{u_c(t)f(t-c)\} = e^{-cs}L\{f(t)\}[/itex], which I figured out.