LoslegenKostenlos loslegen

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.

Diese Übung ist Teil des Kurses

Financial Analytics in Google Sheets

Kurs anzeigen

Anleitung zur Übung

  • 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.

Interaktive Übung

Setze die Theorie in einer unserer interaktiven Übungen in die Praxis um

Übung starten