Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Aprenda Probability & Statistics Quiz | Probability & Statistics
Mathematics for Data Science

bookProbability & Statistics Quiz

1. Two events A and B represent drawing a red card or a face card from a standard deck of 52 cards. What is the probability of drawing a red card or a face card?

P(AB)=P(A)+P(B)P(AB)P(A \cup B) = P(A) + P(B) - P(A \cap B)

2. What this code will output?

3. Two fair dice are rolled. A="first die is even"A = \text{"first die is even"}, B="sum of dice ≥ 10"B = \text{"sum of dice ≥ 10"}. What is P(AB)P(A ∩ B)?

P(AB)=P(A)×P(B)P(A \cap B) = P(A) \times P(B)

4. What this code will output?

5. In a deck: let A="card is a King"A = \text{"card is a King"}, B="card is a face card"B = \text{"card is a face card"}. What is P(AB)P(A | B)?

P(AB)=P(AB)P(B)P(A|B) = \frac{P(A \cap B)}{P(B)}

6. What this code will output?

7. A bag has 5 red and 3 blue marbles. One marble is drawn and not replaced, then a second is drawn. What is P(second is redfirst was blue)P(\text{second is red} | \text{first was blue})?

P(AB)=P(AB)P(B)P(A|B) = \frac{P(A \cap B)}{P(B)}

8. What this code will output?

9. A rare disease affects 0.5% of the population. Test sensitivity is 98% and false-positive rate is 3%. If a person tests positive, what is P(diseasepositive)P(\text{disease} | \text{positive})?

P(DPos)=P(PosD)P(D)P(Pos)P(D|Pos) = \frac{P(Pos|D)P(D)}{P(Pos)}

10. What this code will output?

11. Which statement is true about a sample and population (and the sample mean)?

xˉ=1ni=1nxi\bar{x} = \frac{1}{n}\sum^n_{i=1}x_i

12. What this code will output?

13. If 12 successes are observed in a sample of 50, what is the sample proportion p^\hat{p}?

p^=xn\hat{p} = \frac{x}{n}

14. What this code will output?

15. Which sampling method is most likely to introduce bias in a survey about average weekly exercise time?

xˉ=1ni=1nxi\bar{x} = \frac{1}{n}\sum^n_{i=1}x_i

16. What this code will output?

17. If every data point in a dataset is increased by constant c, which measure(s) change?

μ=xiN\mu = \frac{\sum{x_i}}{N}

18. What this code will output?

19. Population variance formula and compute variance for [2,4,6,8].

σ2=(xiμ)2N\sigma^2 = \frac{\sum(x_i - \mu)^2}{N}

20. What this code will output?

21. Binomial probability formula. For n=10, p=0.5, what is P(X=3)?

P(X=k)=(nk)pk(1p)nkP(X=k)=\begin{pmatrix}n\\k\end{pmatrix}p^k(1-p)^{n-k}

22. What this code will output?

23. Z-score formula: for N(μ=100,σ=15)\mathcal{N}(μ=100, σ=15), what is z for x=130x=130?

z=xμσz = \frac{x-\mu}{\sigma}

24. What this code will output?

25. Uniform(0,10)\text{Uniform}(0,10). What is P(2X5)P(2 ≤ X ≤ 5)?

f(x)=1ba,for axbf(x) = \frac{1}{b-a},\quad for\ a \le x \le b

26. What this code will output?

question mark

Two events A and B represent drawing a red card or a face card from a standard deck of 52 cards. What is the probability of drawing a red card or a face card?

P(AB)=P(A)+P(B)P(AB)P(A \cup B) = P(A) + P(B) - P(A \cap B)

Select the correct answer

question mark

What this code will output?

Select the correct answer

question mark

Two fair dice are rolled. A="first die is even"A = \text{"first die is even"}, B="sum of dice ≥ 10"B = \text{"sum of dice ≥ 10"}. What is P(AB)P(A ∩ B)?

P(AB)=P(A)×P(B)P(A \cap B) = P(A) \times P(B)

Select the correct answer

question mark

What this code will output?

Select the correct answer

question mark

In a deck: let A="card is a King"A = \text{"card is a King"}, B="card is a face card"B = \text{"card is a face card"}. What is P(AB)P(A | B)?

P(AB)=P(AB)P(B)P(A|B) = \frac{P(A \cap B)}{P(B)}

Select the correct answer

question mark

What this code will output?

Select the correct answer

question mark

A bag has 5 red and 3 blue marbles. One marble is drawn and not replaced, then a second is drawn. What is P(second is redfirst was blue)P(\text{second is red} | \text{first was blue})?

P(AB)=P(AB)P(B)P(A|B) = \frac{P(A \cap B)}{P(B)}

Select the correct answer

question mark

What this code will output?

Select the correct answer

question mark

A rare disease affects 0.5% of the population. Test sensitivity is 98% and false-positive rate is 3%. If a person tests positive, what is P(diseasepositive)P(\text{disease} | \text{positive})?

P(DPos)=P(PosD)P(D)P(Pos)P(D|Pos) = \frac{P(Pos|D)P(D)}{P(Pos)}

Select the correct answer

question mark

What this code will output?

Select the correct answer

question mark

Which statement is true about a sample and population (and the sample mean)?

xˉ=1ni=1nxi\bar{x} = \frac{1}{n}\sum^n_{i=1}x_i

Select the correct answer

question mark

What this code will output?

Select the correct answer

question mark

If 12 successes are observed in a sample of 50, what is the sample proportion p^\hat{p}?

p^=xn\hat{p} = \frac{x}{n}

Select the correct answer

question mark

What this code will output?

Select the correct answer

question mark

Which sampling method is most likely to introduce bias in a survey about average weekly exercise time?

xˉ=1ni=1nxi\bar{x} = \frac{1}{n}\sum^n_{i=1}x_i

Select the correct answer

question mark

What this code will output?

Select the correct answer

question mark

If every data point in a dataset is increased by constant c, which measure(s) change?

μ=xiN\mu = \frac{\sum{x_i}}{N}

Select the correct answer

question mark

What this code will output?

Select the correct answer

question mark

Population variance formula and compute variance for [2,4,6,8].

σ2=(xiμ)2N\sigma^2 = \frac{\sum(x_i - \mu)^2}{N}

Select the correct answer

question mark

What this code will output?

Select the correct answer

question mark

Binomial probability formula. For n=10, p=0.5, what is P(X=3)?

P(X=k)=(nk)pk(1p)nkP(X=k)=\begin{pmatrix}n\\k\end{pmatrix}p^k(1-p)^{n-k}

Select the correct answer

question mark

What this code will output?

Select the correct answer

question mark

Z-score formula: for N(μ=100,σ=15)\mathcal{N}(μ=100, σ=15), what is z for x=130x=130?

z=xμσz = \frac{x-\mu}{\sigma}

Select the correct answer

question mark

What this code will output?

Select the correct answer

question mark

Uniform(0,10)\text{Uniform}(0,10). What is P(2X5)P(2 ≤ X ≤ 5)?

f(x)=1ba,for axbf(x) = \frac{1}{b-a},\quad for\ a \le x \le b

Select the correct answer

question mark

What this code will output?

Select the correct answer

Tudo estava claro?

Como podemos melhorá-lo?

Obrigado pelo seu feedback!

Seção 5. Capítulo 13

Pergunte à IA

expand

Pergunte à IA

ChatGPT

Pergunte o que quiser ou experimente uma das perguntas sugeridas para iniciar nosso bate-papo

Awesome!

Completion rate improved to 1.89

bookProbability & Statistics Quiz

Deslize para mostrar o menu

1. Two events A and B represent drawing a red card or a face card from a standard deck of 52 cards. What is the probability of drawing a red card or a face card?

P(AB)=P(A)+P(B)P(AB)P(A \cup B) = P(A) + P(B) - P(A \cap B)

2. What this code will output?

3. Two fair dice are rolled. A="first die is even"A = \text{"first die is even"}, B="sum of dice ≥ 10"B = \text{"sum of dice ≥ 10"}. What is P(AB)P(A ∩ B)?

P(AB)=P(A)×P(B)P(A \cap B) = P(A) \times P(B)

4. What this code will output?

5. In a deck: let A="card is a King"A = \text{"card is a King"}, B="card is a face card"B = \text{"card is a face card"}. What is P(AB)P(A | B)?

P(AB)=P(AB)P(B)P(A|B) = \frac{P(A \cap B)}{P(B)}

6. What this code will output?

7. A bag has 5 red and 3 blue marbles. One marble is drawn and not replaced, then a second is drawn. What is P(second is redfirst was blue)P(\text{second is red} | \text{first was blue})?

P(AB)=P(AB)P(B)P(A|B) = \frac{P(A \cap B)}{P(B)}

8. What this code will output?

9. A rare disease affects 0.5% of the population. Test sensitivity is 98% and false-positive rate is 3%. If a person tests positive, what is P(diseasepositive)P(\text{disease} | \text{positive})?

P(DPos)=P(PosD)P(D)P(Pos)P(D|Pos) = \frac{P(Pos|D)P(D)}{P(Pos)}

10. What this code will output?

11. Which statement is true about a sample and population (and the sample mean)?

xˉ=1ni=1nxi\bar{x} = \frac{1}{n}\sum^n_{i=1}x_i

12. What this code will output?

13. If 12 successes are observed in a sample of 50, what is the sample proportion p^\hat{p}?

p^=xn\hat{p} = \frac{x}{n}

14. What this code will output?

15. Which sampling method is most likely to introduce bias in a survey about average weekly exercise time?

xˉ=1ni=1nxi\bar{x} = \frac{1}{n}\sum^n_{i=1}x_i

16. What this code will output?

17. If every data point in a dataset is increased by constant c, which measure(s) change?

μ=xiN\mu = \frac{\sum{x_i}}{N}

18. What this code will output?

19. Population variance formula and compute variance for [2,4,6,8].

σ2=(xiμ)2N\sigma^2 = \frac{\sum(x_i - \mu)^2}{N}

20. What this code will output?

21. Binomial probability formula. For n=10, p=0.5, what is P(X=3)?

P(X=k)=(nk)pk(1p)nkP(X=k)=\begin{pmatrix}n\\k\end{pmatrix}p^k(1-p)^{n-k}

22. What this code will output?

23. Z-score formula: for N(μ=100,σ=15)\mathcal{N}(μ=100, σ=15), what is z for x=130x=130?

z=xμσz = \frac{x-\mu}{\sigma}

24. What this code will output?

25. Uniform(0,10)\text{Uniform}(0,10). What is P(2X5)P(2 ≤ X ≤ 5)?

f(x)=1ba,for axbf(x) = \frac{1}{b-a},\quad for\ a \le x \le b

26. What this code will output?

question mark

Two events A and B represent drawing a red card or a face card from a standard deck of 52 cards. What is the probability of drawing a red card or a face card?

P(AB)=P(A)+P(B)P(AB)P(A \cup B) = P(A) + P(B) - P(A \cap B)

Select the correct answer

question mark

What this code will output?

Select the correct answer

question mark

Two fair dice are rolled. A="first die is even"A = \text{"first die is even"}, B="sum of dice ≥ 10"B = \text{"sum of dice ≥ 10"}. What is P(AB)P(A ∩ B)?

P(AB)=P(A)×P(B)P(A \cap B) = P(A) \times P(B)

Select the correct answer

question mark

What this code will output?

Select the correct answer

question mark

In a deck: let A="card is a King"A = \text{"card is a King"}, B="card is a face card"B = \text{"card is a face card"}. What is P(AB)P(A | B)?

P(AB)=P(AB)P(B)P(A|B) = \frac{P(A \cap B)}{P(B)}

Select the correct answer

question mark

What this code will output?

Select the correct answer

question mark

A bag has 5 red and 3 blue marbles. One marble is drawn and not replaced, then a second is drawn. What is P(second is redfirst was blue)P(\text{second is red} | \text{first was blue})?

P(AB)=P(AB)P(B)P(A|B) = \frac{P(A \cap B)}{P(B)}

Select the correct answer

question mark

What this code will output?

Select the correct answer

question mark

A rare disease affects 0.5% of the population. Test sensitivity is 98% and false-positive rate is 3%. If a person tests positive, what is P(diseasepositive)P(\text{disease} | \text{positive})?

P(DPos)=P(PosD)P(D)P(Pos)P(D|Pos) = \frac{P(Pos|D)P(D)}{P(Pos)}

Select the correct answer

question mark

What this code will output?

Select the correct answer

question mark

Which statement is true about a sample and population (and the sample mean)?

xˉ=1ni=1nxi\bar{x} = \frac{1}{n}\sum^n_{i=1}x_i

Select the correct answer

question mark

What this code will output?

Select the correct answer

question mark

If 12 successes are observed in a sample of 50, what is the sample proportion p^\hat{p}?

p^=xn\hat{p} = \frac{x}{n}

Select the correct answer

question mark

What this code will output?

Select the correct answer

question mark

Which sampling method is most likely to introduce bias in a survey about average weekly exercise time?

xˉ=1ni=1nxi\bar{x} = \frac{1}{n}\sum^n_{i=1}x_i

Select the correct answer

question mark

What this code will output?

Select the correct answer

question mark

If every data point in a dataset is increased by constant c, which measure(s) change?

μ=xiN\mu = \frac{\sum{x_i}}{N}

Select the correct answer

question mark

What this code will output?

Select the correct answer

question mark

Population variance formula and compute variance for [2,4,6,8].

σ2=(xiμ)2N\sigma^2 = \frac{\sum(x_i - \mu)^2}{N}

Select the correct answer

question mark

What this code will output?

Select the correct answer

question mark

Binomial probability formula. For n=10, p=0.5, what is P(X=3)?

P(X=k)=(nk)pk(1p)nkP(X=k)=\begin{pmatrix}n\\k\end{pmatrix}p^k(1-p)^{n-k}

Select the correct answer

question mark

What this code will output?

Select the correct answer

question mark

Z-score formula: for N(μ=100,σ=15)\mathcal{N}(μ=100, σ=15), what is z for x=130x=130?

z=xμσz = \frac{x-\mu}{\sigma}

Select the correct answer

question mark

What this code will output?

Select the correct answer

question mark

Uniform(0,10)\text{Uniform}(0,10). What is P(2X5)P(2 ≤ X ≤ 5)?

f(x)=1ba,for axbf(x) = \frac{1}{b-a},\quad for\ a \le x \le b

Select the correct answer

question mark

What this code will output?

Select the correct answer

Tudo estava claro?

Como podemos melhorá-lo?

Obrigado pelo seu feedback!

Seção 5. Capítulo 13
some-alt