<< Chapter < Page Chapter >> Page >

1.

Frequency measures how often a wave passes. We can make a wave with frequency ω by writing:

sin 2 π ω t

Aside : The wave described by sin ( t ) has frequency 1 / 2 π . If we instead write sin ( 2 π t ) , we will have a wave with frequency 1, which is easier to work with.

We can express the same information in terms of wavelength. Wavelength is how close neighboring waves are to each other. It is inversely proportional to frequency, which means that the higher the frequency, the smaller the wavelength. If is wavelength, we write this in the following way:

= 1 ω

A wave with wavelength is written as sin ( 2 π t ) .

2.

Amplitude measures how high the wave is. We can make a wave of amplitude a by writing:

a · sin ( 2 π t )

Sometimes a will be negative. In this case, we still say that the wave has amplitude a , but note that the function will be flipped across the x-axis.

3.

Phase describes how far the wave has been shifted from center. To create a wave with phase p , we write:

sin ( 2 π ω t + p )

Since a sin wave repeats every 2 π , the following is always true (that is, for any ϕ ):

sin ( ϕ ) = sin ( ϕ + 2 π )

Aside : A cosine wave is a sine wave shifted back by a π / 2 , a quarter of the standard wave:

cos ( ϕ ) = sin ( ϕ + π / 2 )

Every sine (cosine) wave can be described completely by these characteristics. These are shown in [link] (phase = 0 for simplicity):

a dog on a bed
A sin wave.

To code [link] in MATLAB, use:

>>t = 0:.01:1;>>amp = 3;>>freq = 1;>>phase = 0>>y = amp*sin(freq*2*pi*t + phase);

Hearing sine waves

The sine wave represents a pure tone. To hear one, we use the MATLAB function sound() , which converts a vector into sound. Find the frequency that is specified, and compare to human range of hearing. Should we be able to hear this sound?

>>freq = 1000;>>samp_rate = 1e4;>>duration = 1;>>samples = 0 : (1/samp_rate) : duration;>>sound_wave = sin(2 * pi * samples * freq);>>sound(sound_wave, samp_rate);

Enter the above code into Matlab to hear the sound.

Adding sine waves

We can add together multiple sin waves to accomplish different shapes. For example, if we add the wave [ 4 · sin ( 2 π t ) ] and the wave [ sin ( 6 · ( 2 π t ) ) ] we get:

a dog on a bed
A compound wave

Look at the figure and try to identify the effect of each wave. The first wave has frequency 1 and amplitude 4. This accounts for the large up-and-down motion that only goes through one cycle in the figure. The second wave has frequency 6 (wavelength 1 6 ) and amplitude 1. This accounts for the small wiggles that happen many times in the figure.

Figure 4 is implemented in MATLAB with the following code:

>t = 0:.01:1;>>y = 4*sin(2*pi*t)+sin(6*2*pi*t);>>plot(t,y)

A wave of any shape can be expressed as a sum of sin and cosine waves, although it may take infinitely many. In the end of this module we will find interesting uses for the this fact.

Exercises

1.1

[link] two shows a sum of two sine waves (with phase 0). Try to replicate it, and report what the amplitudes and frequencies of each wave is.

Perro sentado en la cama
The compound wave for exercise 1.1

1.2

Use the identities cos ( ϕ ) = sin ( ϕ + π / 2 ) and sin ( ϕ ) = sin ( ϕ + 2 π ) to solve for p in the following equations by making the above substitutions. Check your answer visually against the figures of sine and cosine waves:

Get Jobilize Job Search Mobile App in your pocket Now!

Get it on Google Play Download on the App Store Now




Source:  OpenStax, The art of the pfug. OpenStax CNX. Jun 05, 2013 Download for free at http://cnx.org/content/col10523/1.34
Google Play and the Google Play logo are trademarks of Google Inc.

Notification Switch

Would you like to follow the 'The art of the pfug' conversation and receive update notifications?

Ask