Expressing a function as Heaviside function

tics
Messages
15
Reaction score
0
I have a question: given a piecewise function, f(t)= {t when t<=0 ,0 when 0<t<=1, 1-t when t>1. How do express it as a Heaviside function?
I have tried to do the solution which is : f(t)= (1-t)*H(t-1)+t*H(t). Here I have considered two non-zero portions of f(t), which are t and 1-t. Is that right? Please let me know about my attempt.
 
Physics news on Phys.org
tics said:
I have a question: given a piecewise function, f(t)= {t when t<=0, 0 when 0<t<=1, 1-t when t>1. How do express it as a Heaviside function?
I have tried to do the solution which is : f(t)=(1-t)*H(t-1)+t*H(t). Here I have considered two non-zero portions of f(t), which are t and 1-t. Is that right? Please let me know about my attempt.
No, it's not correct. Consider when t=2, for instance. You'd get

f(2) = (1-2) H(2-1) + 2 H(2) = (-1) H(1) + 2 H(2) = 1

whereas according to original the definition of f(t), f(2) should equal -1. You can see from this example the problem arises because the t*H(t) term contributes when it no longer should. Can you see how to modify your function to get that to go away?
 
There are two things I don't understand about this problem. First, when finding the nth root of a number, there should in theory be n solutions. However, the formula produces n+1 roots. Here is how. The first root is simply ##\left(r\right)^{\left(\frac{1}{n}\right)}##. Then you multiply this first root by n additional expressions given by the formula, as you go through k=0,1,...n-1. So you end up with n+1 roots, which cannot be correct. Let me illustrate what I mean. For this...
Back
Top