Skip to main content

FOURIER TRANSFORM - A VISUAL NARRATION

First, a quick intro to sine wave.
Y = sin(x)  or
Y = A sin(2pi*n*t)
A- amplitude
n- frequency
t - time
     The above function describes (a graph) a simple and neat sine curve as the time progress.



     Take two such waves and add them or superimpose one on the other(interference).
Mathematically
   Y = A sin(2pi*n*t)+ A sin(2pi*n*t)
   Y = (A+A) sin( 2pi*n*t)
    Here the amplitude doubles.  We get a bigger wave.
    Now subtract both the waves.
Y = A sin(2pi*n*t) - A sin(2pi*n*t)
   = 0
The waves cancel each other. Figures are given above.




Take two sine waves of slightly different frequencies and overlap them.
     Y = A sin(2pi*n*t)+ A sin(2pi*(n+m)*t)
    m = 1 or 2

    If one draws a graph for the above function, a beautiful wave pattern results.  It is called beats.  Suppose, the two waves are sound waves and they overlap, beats arises.  Beats is periodic waxing and waning of the sound.  The wave pattern clearly indicates this.

     Now we understand that by adding sine waves, one can produce any complex wave pattern.  By extending the argument, we can say, any periodic wave can be split up into sine waves of different frequencies.  For example, a square wave can be broken down as follows.

     Any wave can be split up into its sine wave components as illustrated below.  

     "Splitting a complicated waves into its sine wave or cosine wave components of different frequencies" is called Fourier transformation.  The experts say that it is bringing the wave from time domain to frequency domain.

     There are formulas, procedures, software, tools, website to do this transformation effectively.

     What is the use:  The voice, picture and video all can be represented in wave forms.  They can be Fourier-transformed electronically.  Once we get the waves in frequency domain,
1. We can compress, store and transmit them with less resources.
2. Unwanted noise -certain frequencies can be eliminated easily.

     Any wave form can be analysed with this mathematical tool.  It plays  an important role in science, engineering and medicine.  It is an important invention in the history of mathmatics.

Note:  Even your signature can be taken as waveform.  It also can be analysed with Fourier's tool. 

Comments

Popular posts from this blog

DISORDER IS THE "ORDER OF THE DAY"

         Imagine a balloon full of air.  The air molecules are moving randomly inside the balloon.  Let us pierce the balloon with a pin.  The air rushes out.  Why should not the air molecules stay inside the balloon safely and ignore the little hole?  That is not the way the world works.  The molecules always "want to occupy as many states as possible".  Hence the air goes out in the open to occupy more volume.   The things always goes into disorder (entropy) and the disorder increases with time.  The above statement is what we call "second law of thermodynamics".      Consider a cup of coffee on the table. Suppose the heat from entire room flows to your cup of coffee, the coffee will boil and the rest of the room will freeze.  Freezing means bringing things to order and arrangement.  It violates the second law.  Hence it will never happen.  Hence heat must flow from high ...

THE EARTH, A SUPER ORGANISM

     JOIN MY COURSE: "Become a programmer in a day with python"       A man called 'love lock' (what a name) proposed a theory called Gaia theory, named after Greek Goddess.      It says, "Earth is a self-regulating organism like a human being.  The organic life in it interacts with in-organic matter and maintains atmosphere, temperature and environment".  Hence the earth is still suitable for the life to thrive.      Imagine, in a particular place, there are lot of flowers.  Some flowers are white and some are darkly coloured.  We know, white reflects light and heat while dark absorbs the same.  White flowers can thrive in hot climate.  But dark flowers requires cold climate.  The absorption and reflection balances and the environment reaches average, warm temperature at which both the flowers can co-exist.  This is the essence of "Gaia" theory.      On our earth, ...

THE WORK HORSE "="

    One cannot think of  a mathematical step without 'is equal to ' .  It balances right hand side and left hand side.  It aids simplification and manipulation of a mathematical expression. example: 2(A+B)  = C 2A+2B  = C         2A = C-2B           A = C-2B/ 2   In an electronic calculator,  the pressing of ' = " sign executes an asthmatic expression  or simply calculates.       In computer languages, it plays very important role.                                                                 A = B   When a computer looks at this expression, the value stored in the location named B is just transferred to the storage named A .  After execution both A and B will have the same value an...