216 ◾ Simple Statistical Methods for Software Engineering
Combining Normal Probability Density
Functions (PDF): The Law of Quadrature
A very useful property of the normal distribution is that we can easily combine
several normal PDFs using a simple rule set:
Add the means to obtain the overall mean.
Add the variances to obtain the overall variance.
For example, the schedule performance of milestones can be combined using
this property. e overall schedule for the project is the sum of schedules of mile-
stones. e overall variance in the project schedule is the sum of individual mile-
stone schedule variances. An example is available in Table 13.2.
e root cause for risk is variance, and Table 13.2 provides variance data across
the project at every declared milestone. ese milestones constitute on the critical
path. eir variances are added by using the law of quadrature to obtain the overall
Box 13.3 gaussian smoothening
In image reconstruction Gaussian distribution is used.
In the domain of electromagnetic radiation, antenna beam widths are
Gaussian reconstructed from the half power beam widths, which are easier to
measure. e empirical construction of the beam with multiple data points is
time consuming and looks less attractive when Gaussian smoothening is an
accepted scientific practice. Gaussian smoothening saves time and money, and
yet succeeds in constructing truth. In image processing, Gaussian smoothening
is widely used.
An example of a common algorithm used to perform image smoothening
is Gaussian. Each pixel is convolved with a Gaussian kernel and summed up;
the result is suppression of noise, better signal-to-noise ratio, and better qual-
ity image. e bell curve is used to beat noise.
In digital signal processing, the Gaussian filter retrieves truer signals. In
spatial smoothening MRI images, Gaussian smoothening is used to enrich the
picture. Gaussian smoothening blurs the noise. e degree of smoothening is
determined by the standard deviation of the Gaussian. Larger standard devia-
tion Gaussians, of course, require larger convolution kernels to be accurately
represented. “e Gaussian outputs a ‘weighted average’ of each pixel’s neighbor-
hood, with the average weighted more towards the value of the central pixels.”
During the reconstruction of scanned images, Gaussian smoothening is
like a low-pass filter. e Gaussian window is an attractive option for volume
visualization in CT scans [8].