Develop Model Emulating Given Wave Pattern

  • Thread starter Thread starter ausmate
  • Start date Start date
  • Tags Tags
    Model Wave
AI Thread Summary
A model for generating a repeating wave pattern of eight waves, including six smaller waves and two larger ones, can be approached using sine functions. The proposed solution involves a combination of sine functions, specifically y=sin(x)+k(x)s(x), where k(x) adjusts the amplitude based on the desired wave pattern. The function k(x) is defined to enhance the amplitude at specific points, while s(x) utilizes sin(x)^2 to ensure smooth transitions at the x-axis. The discussion highlights the complexity of achieving the desired wave shape through trial and error with sine functions. Further exploration of the functions k(x) and s(x) is encouraged for those interested in refining the model.
ausmate
Messages
1
Reaction score
0
Question:
Develop a model for producing a repeating pattern of 8 waves, with 6 smaller waves of approx. the same size and the second and sixth waves much larger. The sketch below gives a general indication of the eight wave pattern.

8QPnLAZ.jpg


(Sorry for large image)

I would like to know how to "take a shot" at it, the solution must be a sine function. Can be generic, by that I mean no definite amplitude, only that the model clearly resemble the one given.

I have tried to emulate it by trial and error, combining functions such as in the form [y=sin x + 0.3sin3x] with no luck.

Thanks in advance,
-Ausmate
 
Last edited:
Physics news on Phys.org
All I could come up with was a relatively complicated solution which is of the form

y=sin(x)+k(x)s(x)

where k(x) is equal to 1 everywhere that you want the amplitude of sin(x) to be higher, and 0 everywhere else. s(x) is a function that uses sin(x)^2 because it has a derivative of 0 where it touches the x-axis.

k(x)=\frac{1}{2}\left(\frac{|r|}{r}+1\right)

where

r=\sin{\left(\frac{x+3\pi/2}{4}\right)}-\frac{1}{\sqrt{2}}

and I'll leave s(x) to you if you're interested in pursuing this further.
 
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...
Back
Top