Answered step by step
Verified Expert Solution
Question
1 Approved Answer
Write the following three methods: visual basic PART B Write the following three methods public int GetRandomUniform(int min, int mai) This method returns a random
Write the following three methods: visual basic
PART B Write the following three methods public int GetRandomUniform(int min, int mai) This method returns a random number from a uniform distribution between min and ma. public double GetRandomNormal(double mean, double stddev) This method returns a random number from a normal distribution with a mean of mean and standard deviation of stddev public int GetBinIndex(double mini, double maxi, int numbins, double valuetobin) This method returns the Bin Index given an input minimum of mini, input maximum of maxi numbins number of bins, and a value to bin of valuetobin PART C Include the methods created in part B to develop a Visual C# NET program that will simulate the basic profit calculation. PT = nP, where n follows a unifomn distribution, R follows a normal distribution, and the user can input the number of bins and number of iterations. The user must also input the min and max for n and the mean and standard deviation for Pv. Finally, the user can click a button and the results will be graphed on a bar chart using the Microsoft Chart Control and the average total profit (Pr) will be displayed in a textbox. Turn in a screen shot of the resulting chart using 1. Iterations: 10000 Bins: 5 n-min: 1 n-max: 10 P-mean: 7000 P-stddev: 1000 2. Iterations: 10000 Bins: 10 n-min: 1 n-max: 10 P-mean: 7000 P-stddev: 1000 3. Iterations: 10000 Bins: 10 n-min: 1 n-max: 10 P-mean: 8000 P-stddev: 1500 That's three screen shotsStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started