Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

A discrete random variable $X$ has possible values 0, 1, 2, 3, 4, 5, 6, 7, 8 with the following partial probability distribution. The missing

A discrete random variable $X$ has possible values 0, 1, 2, 3, 4, 5, 6, 7, 8 with the following partial probability distribution. The missing probabilities $\prob(X=7)$ and $\prob(X=8)$ are equal to each other.

```{r, echo = FALSE} set.seed(20221021) x = 0:8 p = rnorm(7,5,2.1) p = sort(round(p / sum(p) * 0.84, 2)) p1 = tibble(x = x, p = c(p, rep(NA,2)))

p1_tab = p1 %>% mutate(x = str_c(x)) %>% pivot_wider(names_from = x, values_from = p) %>% mutate(x = "P(X=x)", .before = `0`)

p1_tab %>% kable() %>% kable_styling(position = "center", full_width = FALSE)

Calculate the mean, the variance, and the standard deviation of this distribution.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Probability And Statistical Inference

Authors: Robert V. Hogg, Elliot Tanis, Dale Zimmerman

10th Edition

013518939X, 978-0135189399

More Books

Students also viewed these Mathematics questions

Question

2. Information that comes most readily to mind (availability).

Answered: 1 week ago