2$. This can be done using statistical software or a graphing calculator with the capability to generate binomial random variables. For example, in Python, you could use:
```python
import numpy as np
data = np.random.binomial(n=5, p=0.2, size=500)
```
This will
Show more…