Get startedGet started for free

Plot the standard Gaussian model

The “standard” Gaussian model is a Gaussian model with a mean of zero and a standard deviation of one.

In this exercise, given a set of bins spanning a range of possible values, your goal is to compute and display the theoretical probabilities of each bin.

To do so, use the function NORMDIST(). It has four arguments:

  • x: The value for which you want to compute the density (or the cumulative probability).
  • m: The location (mean) of the Gaussian model.
  • s: The dispersion (standard deviation) of the Gaussian model.
  • cumulative: TRUE if you want the cumulative probability, FALSE if you want the density.

Remember that the probability is the surface below the density curve, and can be computed by taking the difference of the cumulative probability at the boundaries of the bin.

This exercise is part of the course

Financial Analytics in Google Sheets

View Course

Exercise instructions

  • In C3, use NORMDIST(UB, 0, 1, TRUE) minus NORMDIST(LB, 0, 1, TRUE)to compute the theoretical probability of the first bin. UB is the upper bound of the bin and LB is the lower bound of the bin.

  • In C4:C35, complete the series by using the autofill feature.

  • Display the probabilities using a column chart and place the series of bins (lower bound) on the horizontal axis. Include cells with titles (A2 and C2) in your chart.

  • Change the title to Gaussian model.

Hands-on interactive exercise

Turn theory into action with one of our interactive exercises

Start Exercise