Warning: foreach() argument must be of type array|object, bool given in /var/www/html/web/app/themes/studypress-core-theme/template-parts/header/mobile-offcanvas.php on line 20

Gaussian (Normal) Distribution. Function randomo returns a uniformly distributed random variable in the range \([0,1)\), which means that there is an equal probability of any given number in the range occurring on a given call to the function. Another type of random distribution is the Gaussian distribution, in which the random value takes on the classic bellshaped curve shown in Figure 5.9. A Gaussian distribution with an average of \(0.0\) and a standard deviation of \(1.0\) is called a standardized normal distribution, and the probability of any given value occurring in the standardized normal distribution is given by the equation $$ p(x)=\frac{1}{\sqrt{2 \pi}} e^{-x^{2} / 2} $$ It is possible to generate a random variable with a standardized normal distribution starting from a random variable with a uniform distribution in the range \([-1,1)\) as follows. 1\. Select two uniform random variables \(x_{1}\) and \(x_{2}\) from the range \([-1,1)\) such that \(x_{1}^{2}+x_{2}^{2}<1\). To do this, generate two uniform random variables in the range \([-1,1)\), and see if the sum of their squares happens to be less than \(1.0\). If so, use them. If not, try again. 2\. Then each of the values \(y_{1}\) and \(y_{2}\) in the equations that follow will be a normally distributed random variable. $$ \begin{aligned} &y_{1}=\sqrt{\frac{-2 \ln r}{r}} x_{1} \\ &y_{2}=\sqrt{\frac{-2 \ln r}{r} x_{2}} \end{aligned} $$ where $$ r=x_{1}^{2}+x_{2}^{2} $$ a In is the natural logarithm (log to the base e). Write a function that returns a normally distributed random value cach time that it is called. Test your function by getting 1000 random values, calculating the standard deviation, and plotting a histogram of the distribution. How close to \(1.0\) was the standard deviation?

Short Answer

Expert verified
To solve this problem, we implement a function that returns normally distributed random values. We generate two uniform random variables, \(x_1\) and \(x_2\), in the range \([-1, 1)\) using the Python `random.uniform` function and ensure their sum of squares is less than 1.0. Then, we calculate the values of \(y_1\) and \(y_2\) using the derived equations, which are normally distributed random values. To test the function, we obtain 1000 random values, calculate their standard deviation using Python and matplotlib, and plot a histogram of the distribution. The calculated standard deviation should be close to 1.0, as the random values are expected to follow a standardized normal distribution.

Step by step solution

01

Generate uniform random variables in the range \([-1, 1)\)

To generate uniform random variables in the range \([-1, 1)\), we can use the random.uniform Python function. Keep generating \(x_1\) and \(x_2\) until their sum of squares is less than 1. ```python import random def generate_uniform_random_variable(): while True: x1 = random.uniform(-1, 1) x2 = random.uniform(-1, 1) if x1**2 + x2**2 < 1: return x1, x2 ```
02

Calculate \(y_1\) and \(y_2\)

Using the generated uniform random variables, we can now calculate \(y_1\) and \(y_2\). ```python import math def generate_normal(): x1, x2 = generate_uniform_random_variable() r = x1**2 + x2**2 y1 = math.sqrt((-2 * math.log(r)) / r) * x1 y2 = math.sqrt((-2 * math.log(r)) / r) * x2 return y1, y2 ```
03

Test the function

Generate 1000 random values from our function, calculate their standard deviation, and plot a histogram of the distribution. ```python import matplotlib.pyplot as plt # Generate 1000 random values random_values = [] for _ in range(500): y1, y2 = generate_normal() random_values.append(y1) random_values.append(y2) # Calculate standard deviation mean = sum(random_values) / len(random_values) squared_sum = sum((x - mean)**2 for x in random_values) standard_deviation = math.sqrt(squared_sum / len(random_values)) print("Standard Deviation:", standard_deviation) # Plot histogram plt.hist(random_values, bins=20, density=True) plt.xlabel('Value') plt.ylabel('Frequency') plt.title('Normal Distribution') plt.show() ``` This code will print the calculated standard deviation and show a histogram of the distribution of 1000 generated random values. The standard deviation should be close to 1.0, as the random values are expected to follow a standardized normal distribution.

Unlock Step-by-Step Solutions & Ace Your Exams!

  • Full Textbook Solutions

    Get detailed explanations and key concepts

  • Unlimited Al creation

    Al flashcards, explanations, exams and more...

  • Ads-free access

    To over 500 millions flashcards

  • Money-back guarantee

    We refund you if you fail your exam.

Over 30 million students worldwide already upgrade their learning with Vaia!

Key Concepts

These are the key concepts you need to understand to accurately answer the question.

MATLAB Random Variable Generation
Generating random variables in MATLAB is a fundamental aspect of simulations and stochastic analysis. The software provides several built-in functions to create random data according to different distributions, including the Gaussian (Normal) distribution. For example, to generate a random variable from a uniform distribution, MATLAB uses the rand function, which by default gives values between 0 and 1. To obtain values from a different range, one can simply scale and shift the output accordingly.

To adapt uniform random variables to follow a particular distribution, such as the Gaussian distribution, mathematical transformations are applied. In MATLAB, the Box-Muller transform is a common method used to convert uniformly distributed random variables into normally distributed ones. The process involves generating pairs of independent, standard normally distributed random variables using simple algebraic formulae and logarithms, leveraging the inherent features of the uniform distribution.

Steps to Generate Normal Random Variables in MATLAB

  • Generate two uniform random variables.
  • Check if they fit the criteria (their squared sum is less than 1).
  • Apply the Box-Muller transformation to achieve normal distribution.
  • Use MATLAB's vectorization features to generate large sets of random variables efficiently.
Standardized Normal Distribution
The standardized normal distribution, or the standard normal distribution, is a special case of the Gaussian distribution with a mean of 0 and a standard deviation of 1. This distribution is symmetrical and follows the bell curve shape that's characteristic of the Gaussian distribution. Its probability density function (PDF) is described by the equation \( p(x)=\frac{1}{\sqrt{2 \pi}} e^{-x^{2} / 2} \).

Understanding the properties of the standard normal distribution is crucial for statistical analysis since any normal distribution can be converted to a standard normal distribution using z-scores. This conversion can be done by subtracting the mean from the observed value and then dividing by the standard deviation. MATLAB's built-in functions normrnd or randn can directly generate random variables from a standardized normal distribution, thus simplifying simulation studies.

Key Characteristics of Standard Normal Distribution

  • Has a mean of 0.
  • Has a standard deviation of 1.
  • The total area under the curve of the PDF is 1.
  • Is fundamental in statistical z-tests and in generating random samples for various applications.
Histogram Plotting
Histograms are graphical representations of the distribution of numerical data, and they are particularly useful for visualizing the shape and spread of continuous sample data. In MATLAB, histograms can be plotted using the hist or histogram functions. When plotting the histogram of a normally distributed data set, the histogram will approximate the bell curve, with most data points concentrated around the mean and fewer as they move away towards the tails.

To display a histogram, MATLAB counts the number of data points that fall within a range of values, called bins. The height of each bar in the histogram corresponds to the count of data points within that bin's range. When plotted for a large sample size, the histogram provides a clear visualization of the theoretical probability density function on which the Gaussian distribution is based.

Practical Tips for Histogram Plotting in MATLAB

  • Choose an appropriate number of bins for clarity.
  • Ensure a large enough sample size for an accurate representation of the distribution.
  • The histogram function has features for normalization to fit the probability density function.
Probability Density Function
The probability density function (PDF) is a statistical expression that describes the relative likelihood for a random variable to take on a given value. In the context of the Gaussian distribution, the PDF is bell-shaped and peaks at the mean, indicating the highest probability of occurrence. It mathematically assigns a probability to every possible value of the random variable within the distribution’s range.

For a standardized normal distribution, the PDF is defined by the equation \( p(x)=\frac{1}{\sqrt{2 \pi}} e^{-x^{2} / 2} \). This function is essential in various fields such as finance, engineering, and science, for it allows the calculation of the probability that a stochastic variable lies within a particular range of values. MATLAB can effortlessly work with PDFs of many distributions using the Statistics and Machine Learning Toolbox, which provides functions like normpdf for computing the PDF of a normal distribution.

Importance of PDF in Analysis

  • Helps to determine probabilities and make decisions based on statistical models.
  • Can be used to fit theoretical distributions to empirical data.
  • Forms the foundation for hypothesis testing and confidence interval calculations.

One App. One Place for Learning.

All the tools & learning materials you need for study success - in one app.

Get started for free

Most popular questions from this chapter

Derivative in the Presence of Noise. We will now explore the effects of input noise on the quality of a numerical derivative. First, generate an input vector containing 100 values of the function \(\sin x\) starting at \(x=0\), using a step size \(\Delta x\) of \(0.05\), just as you did in the previous problem. Next, use function randomo to generate a small amount of random noise with a maximum amplitude of \(\pm 0.02\), and add that random noise to the samples in your input vector (see Figure 5.8). Note that the peak amplitude of the noise is only \(2 \%\) of the peak amplitude of your signal, since the maximum value of \(\sin x\) is 1. Now take the derivative of the function using the derivative function that you developed in the last problem. How close to the theoretical value of the derivative did you come?

Rayleigh Distribution. The Rayleigh distribution is another random number distribution that appears in many practical problems. A Rayleighdistributed random value can be created by taking the square root of the sum of the squares of two normally distributed random values. In other words, to generate a Rayleigh-distributed random value \(r\) get two normally distributed random values \(\left(n_{1}\right.\) and \(\left.n_{2}\right)\), and perform the following calculation. $$ r=\sqrt{n_{1}^{2}+n_{2}^{2}} $$ a. Create a function rayleigh \((\mathrm{n}, \mathrm{m})\) that returns an \(\mathrm{n} \mathrm{x} \mathrm{m}\) array of Rayleigh-distributed random numbers. If only one argument is supplied [rayleigh \((\mathrm{n})\) ], the function should return an \(\mathrm{n} \times \mathrm{n}\) array of Rayleigh- distributed random numbers. Be sure to design your function with input argument checking and with proper documentation for the MATLAB help system. b. Test your function by creating an array of 20,000 Rayleigh-distributed random values and plotting a histogram of the distribution. What does the distribution look like? c. Determine the mean and standard deviation of the Rayleigh distribution.

Read Traffic Density. Function random0 produces a number with a uniform probability distribution in the range \([0.0,1.0)\). This function is suitable for simulating random events if each outcome has an equal probability of occurring. However, in many events the probability of occurrence is not equal for every event, and a uniform probability distribution is not suitable for simulating such events. For example, when traffic engineers studied the number of cars passing a given location in a time interval of length \(t\), they discovered that the probability of \(k\) cars passing during the interval is given by the equation $$ P(k, t)=e^{-\lambda t} \frac{(\lambda t)^{4}}{k !} \text { for } t \geq 0, \lambda>0, \text { and } k=0,1,2, \ldots $$ This probability distribution is known as the Poisson distribution: it occurs in many applications in science and engineering. For example, the number of calls \(k\) to a telephone switchboard in time interval \(t\), the number of bacteria \(k\) in a specified volume \(t\) of liquid, and the number of failures \(k\) of a complicated system in time interval \(t\) all have Poisson distributions. Write a function to evaluate the Poisson distribution for any \(k, t\), and A. Test your function by calculating the probability of \(0,1,2, \ldots, 5\) cars passing a particular point on a highway in I minute, given that \(\lambda\) is \(1.6\) per minute for that highway. Plot the Poisson distribution for \(t=1\) and \(\lambda=1.6\).

Dice Simulation. It is often useful to be able to simulate the throw of a fair die. Write a MATLAB function dice that simulates the throw of a fair die by returning some random integer between 1 and 6 every time that it is called. (Hint: Call randomo to generate a randem number. Divide the possible values out of random0 into six equal intervals, and return the number of the interval that a given random value falls into.)

Write three MATLAB functions to caiculate the hyperbolic sine, cosine, and tangent functions. $$ \sinh (x)=\frac{e^{x}-e^{-x}}{2}, \cosh (x)=\frac{e^{x}+e^{-x}}{2}, \tanh (x)=\frac{e^{x}-e^{-x}}{e^{x}+e^{-x}} $$ Use your functions to plot the shapes of the hyperbolic sine, cosine, and tangent functions.

See all solutions

Recommended explanations on Psychology Textbooks

View all explanations

What do you think about this solution?

We value your feedback to improve our textbook solutions.

Study anywhere. Anytime. Across all devices.

Sign-up for free