aboutsummaryrefslogtreecommitdiffstats
path: root/ee1301/wk3/hw3_directory/strap012_HW3A.cpp
blob: c16482994e922861de6aad90a6e38ab7bb4352cd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/*
27 Feb 2019
Matthew Strapp
5449340
EE1301
Spring 2019
Homework 3A
One-armed Bandit Simulator
*/

#include <iostream>
#include <stdlib.h>
#include <cmath>
#include <iomanip>
using namespace std;

int main () {
  srand(88888888); //Seeds the RNG of the program to a constant of eight 8s
  int w, d, winCount, winTest;
  for (w=3; w<=6; w++) {
    winCount=0;
    for (d=9; d<=27; d++) {
      winCount=0;
      for (long n=1000000; n>0; n--) {
        int winTest = spin_the_wheels(d, w);
        winCount+=winTest;
      }
      cout << "w=" << w << ", d=" << d
           << ": Simulated probability = m/n = " << (winCount / 1000000.0) * 100.0 << "%. "
           << "Theoretical probability = " << (d / (pow(d, w))) * 100 << "%." << endl;
      d+=2;
    }
  }
}

// Function: spin_the_wheels
//  ---------------------------
// Simulates the one-armed bandit from the previous HW
// d: the number of options on the spinner
// w: the number of spinners
// returns: Either 1 for win or 0 for loss

int spin_the_wheels(int d, int w) {
  int spinOG=0, spinNew=0, win=0;
  spinOG = ( (rand() % d) + 1); //Original spin is always the same
  w-=1;
  for (int i=0; i<w; i++) {
    spinNew = ( (rand() % d) + 1);
    if (spinOG==spinNew) {
      win++;
    }
  }
  if (win==w) { //The only win condition is if every wheel matches
    return 1;
  } else {
    return 0;
  }
}