Assignment # 5 1) Variance and Standard Deviation of a Discrete Random Variable We were given two probability distribution tables and asked to find the variance and standard distribution of each. Table #1 X p(x) 0 0.50 1 0.20 2 0.15 3 0.10 Table #2 x P(x) 1 0.10 3 0.20 5 0.60 4 0.20 R Studio Coding Table #1 is represented by x and Table #2 is represented by y. x <- c(0.5, 0.2, 0.15, 010) y <- c(0.10, 0.2, 0.6, 0.2) Then simply find the variance and standard deviation of each vector by using the var and sd functions. varianceX <- var(x) standardX <- sd(x) varianceY <- var(y) standardY <- sd(y) You can print the results: varianceX varianceY standardX standardY R reports that the variance ...