Math of ECGs: Fourier Series
[30 Mar 2010]
I recently had a medical checkup that included an ECG (electro-cardiograph).
This is what my ECG looked like:
How an ECG is done

(Left) Electrodes used for an ECG. Image source
(Right) Nurse performing an ECG. Image source
The electrodes are connected to various parts of your anatomy (chest, legs, arms, feet) and voltage differences over time are measured to give the ECG readout.
The horizontal axis of the ECG printout represents time and the vertical axis is the amplitude of the voltage.

Amplitude units are millivolts (mV) and on the graph, 1 mV = 10 mm high.
The time scale is 25 mm = 1 second (or 1 mm per 0.04 seconds on the graph).
So here’s my readout for Lead II, representing the voltage between the positive electrode on my left leg and the electrode on my right arm. Each thicker red vertical line represents a time of 1 second.

Apparently (according to the doctor), this indicates my heart is quite healthy.
In more detail, the features of the repeated pulse we are looking at are as follows.
The P wave is caused by contraction of the right atrium followed by the left atrium (the chambers at the top of the heart).
The QRS complex represent the point in time when most of the heart muscles are in action, so has highest amplitude.
The T wave represents the polarization of the ventricles (the chambers at the bottom of the heart).

Human heart showing atria and ventricles.
[Image by UCSD, source page no longer available]
Modeling the Heartbeat Using Fourier Series
A heartbeat is roughly regular (if it isn’t, it indicates something is wrong). Mathematically, we say something that repeats regularly is periodic.
Such waves can be represented using a Fourier Series.
Assumptions
In my case, my heart rate was about 70 beats per minute. For the sake of simplicity, I’ll assume 60 beats per minute or 1 per second. So the period = 1 second = 1000 milliseconds.
Also for simplicity, I will only model the R wave for this article. To get a more accurate model for the heartbeat, I would just need to do a similar process for the P, Q, S and T waves and add them to my model.
I observed that my R wave was about 2.5 mV high and lasted for a total of 40 ms. The shape of the R wave is almost triangular and so I could have used straight lines for my model, but these son’t give us a smooth curve.
A beter approach is to use a polynomial and ascending and descending lines are close enough to being straight, so my model is as follows (the time units are milliseconds):
f(t) = -0.0000156(t − 20)⁴ + 2.5
f(t) = f(t + 1000)
Explanation of the Model
The model is based on a quartic (power 4) since this will give me close to the shape I need (a parabola would be too broad).
The (t − 20) term comes from deciding the curve should start at (0,0), pass through (40,0) since the pulse is 40 ms long, and be centered on t = 20.
The "+2.5" comes from the fact the amplitude of the pulse is 2.5 mV.
The -0.0000156 comes from solving
a(t − 20)⁴ + 2.5 = 0.
The "f(t) = f(t + 1000)" part means the function (pulse in this case) is repeated every 1000 ms.
Graph of the Model
This is the graph of part of one period:
Of course. this is just one pulse. How do we produce a graph that repeats this pulse at regular intervals?
This is where we use Fourier Series.
I’ll spare you all the details, but essentially the Fourier Series is an infinite series involving trigonometric terms. When all the terms are added, you get a mathematical model of the original periodic function.
To obtain the Fourier Series, wee need to find the mean value, a0, and 2 coefficient expressions involving n, an and bn which are multiplied by trigonometric terms and summed for n = 1 to infinity.
Mean Value Term
a0 is obtained by integration as follows (L is half of the period):
First Coefficient Term, an
Next, we compute an:
The answer for this integral is pretty ugly. I’ve included it in the PDF solution.
Second Coefficient Term, bn
Now for bn:
Once again, I have spared you from the full details.
Finally, we put it all together and obtain the Fourier Series for our simple model of a heart beat:
When we graph this for just the first 5 terms (n = 1 to 5), we can see the beginnings of a regular 1-second heart beat.
The above graph shows the "noise" you get in a Fourier Series expansion, especially if you haven’t taken enough terms.
Taking more terms (this time, adding the first 100 terms) gives us the following, and we see we get a reasonable approximation for a regular R wave with period 1 second.

I added the T wave for this next model (in blue).

We could keep going, adding the P, Q and S waves to get an even better model.
See the complete solution (up to the T wave, created using Scientific notebook) here:
Model of Human Heartbeat (PDF)
What have we done?
We have taken a single spike representing one R wave of my heartbeat. We then found a formula that repeats our spike at regular time intervals. The Fourier Series (an infinite sum of trigonometric terms) gave us that formula.
Finally, we added the T wave, using the same theory as before.
Fourier Series is very useful in electronics and acoustics, where waveforms are periodic.
For more on Fourier Series go to:
Don’t miss the section on how Fourier is used to create Digital Audio, in
Applications – the Fast Fourier Transform

30 Mar 2010 at 3:21 pm [Comment permalink]
Just to let u know: “The answer for this integral is pretty ugly. I’ve included it in the PDF solution.” – brings up a 404
30 Mar 2010 at 3:34 pm [Comment permalink]
Oops – the second link was fine but I forgot to fix the first. Thanks for your feedback.
31 Mar 2010 at 9:46 am [Comment permalink]
i liked the easy-to-understand English.It made it not boring.
31 Mar 2010 at 5:29 pm [Comment permalink]
it is quite easy to under stand a mathematical approach.
11 Mar 2011 at 12:55 am [Comment permalink]
Sir,
i have modelled R curve in different manner
f(t)=(2.5)*(sin(pi*t/40)) for 0<t<40
= 0 for 40<t<1000
and fourier series upto two terms is
f(t)=(-0.06366)+(0.12613*(cos(pi*x/500)))+(0.12258*(cos(pi*x/250)))+(0.01593*(sin(pi*x/500)))+(0.03147*(sin(pi*x/250)))
when i plotted it i got satisfactory answer as i considered only two terms.
please check my answer and let me know if i am correct.
it took lot of effort and time from me to calculate all coefficients by hand.
12 Mar 2011 at 5:15 pm [Comment permalink]
Hi gagangc. This looks good to me! Good on you for churning away with this.
9 May 2011 at 1:03 am [Comment permalink]
did you calculate de PRS equations?
11 May 2011 at 5:42 pm [Comment permalink]
Sir,
i have a doubt regarding fourier transform of rectangular function.If FT indicates frequency contents of time domain signal,then FT of rect function is sinc function which have infinite frequencies.Does this mean a simple rect function has infinite frequencies??
14 May 2011 at 12:29 pm [Comment permalink]
Hi gagangc. The rectangular function is a single pulse, so it’s not relevant to talk about infinite frequencies. These 2 sources may help:
Wikipedia’s article
Wolfram Demonstrations (requires a plugin)
5 Feb 2013 at 10:04 pm [Comment permalink]
Hi Murray,
I’m interested to know how you have generated your last 3 graphs. If possible could you please email me your matlab codes. My email address is [hidden for protection from spam]
I’m waiting for your reply.
thanks
8 Feb 2013 at 12:14 pm [Comment permalink]
@Dan: Two of the last 3 graphs are based on the formulas I developed in the article (I did 5 terms for the first, then added 100 terms for the next.)
The last one adds the T-wave using the same process (I estimated the “blip” above the horizontal axis, then built it into the Fourier series. I suspect the details are hidden in some archive by now.
I’m using Scientific Notebook for these graphs. It allows for graphing of a summation notation expression.
Sorry it wasn’t so helpful!
8 May 2013 at 3:20 am [Comment permalink]
[...] http://tr.wikipedia.org/wiki/Elektrokardiyografi http://www.intmath.com/blog/math-of-ecgs-fourier-series/4281…]