Question: Need help with python coding Show code and explain why it works Problem 3: A continuous random variable Description: To simulate real-world behavior of systems,

Problem 3: A continuous random variable Description: To simulate real-world behavior of systems, we often must produce normally distributed values for a property of a system (e.g., the average mass of a pebble in a pile of gravel). Here, you must produce a program that yields an array of data that is normally distributed around a specified mean () and standard deviation (). (Note: if I use a random number generator to produce a uniformly distributed value between 0 and 1 , we can use this value as the dependent variable on a cumulative distribution function and find the independent variable value (x) corresponding to this probability. The values of x will be normally distributed.) Your program should output an array of size N drawn from normally distributed population. You should do this work in a file called HW1SP23_Prob3.py Hint: from the module random, you should investigate the use of the function normalvariate ()
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
