Can You Create a Single Equation for Multiple Time-Dependent Cosine Functions?

  • Thread starter Thread starter ACLerok
  • Start date Start date
  • Tags Tags
    Function Periodic
AI Thread Summary
It is possible to create a single equation for multiple time-dependent cosine functions using the Heaviside step function. The proposed equation combines the three cosine functions by adjusting their contributions based on the time intervals defined by the Heaviside function. For each time segment, the equation simplifies to the appropriate cosine function based on the value of t. The discussion raises the question of whether this combined equation is more advantageous than the original piecewise function. Ultimately, the approach provides a valid method to represent the piecewise function in a unified format.
ACLerok
Messages
194
Reaction score
0
Given:
x(t) =
cos(2*pi*f1*t) 0 <= t < 4
cos(2*pi*f2*t) 4 <= t < 8
cos(2*pi*f3*t) 8 <= t < 12

f1, f2, and f3 are given as well

Would it be possible to combine all three of these conditions into one convenient equation or am I just dreaming? I tried using Matlab to concatenate the three graphs, but it won't give me an equation of it.
 
Last edited:
Physics news on Phys.org
I'm not sure what you mean by a "convenient" equation. What you have is a perfectly good function, You could use the "Heaviside step function" which is defined by H(x)= 0 if x<= 0, H(x)= 1 if x> 0.

Then f(t)= cos(2pi f1 t)+ ((cos(2pi f2 t)- cos(2pi f1 t))H(t-4)+ (cos(2pi f3 t)- cos(2pi f2 t))H(t-8).

for 0<= t<= 4, both t-4< 0 and t-8< 0 so both H(t-4) and H(t-8) are 0 and only the first term, cos(2pi f1 t), is non zero. For 4< t<= 8, t-4> 0 so H(t-4)= 1 but H(t-8) is still 0: f(t)= cos(2pi f1 t)+ cos(2pi f2 t)- cos(2pi f1 t)= cos(2pi f2 t). If 8< t<= 12, both t-4> 0 and t-8>0 so both H(t-4) and H(t-8) are 1. f(t)= cos(2pi f1 t)+ cos(2pi f2 t)- cos(2pi f1 t)+ cos(2pi f3 t)- cos(2pi f2 t)= cos(2pi f3 t).

But is cos(2pi f1 t)+ ((cos(2pi f2 t)- cos(2pi f1 t))H(t-4)+ (cos(2pi f3 t)- cos(2pi f2 t))H(t-8) better than what you have?
 
I picked up this problem from the Schaum's series book titled "College Mathematics" by Ayres/Schmidt. It is a solved problem in the book. But what surprised me was that the solution to this problem was given in one line without any explanation. I could, therefore, not understand how the given one-line solution was reached. The one-line solution in the book says: The equation is ##x \cos{\omega} +y \sin{\omega} - 5 = 0##, ##\omega## being the parameter. From my side, the only thing I could...

Similar threads

Back
Top