Hi Sylvian,
I don't know what technology you use, but I used R to get your initial histogram for 1. I cannot post a graph due to character limits, but code is below So:
#1.
success<-0:10
plot(success, dbinom(success, size=10, prob=0.8), type='h')
size=number of questions, 10 in this case
"success"=probability of success, which. ironically, means "incorrect answer" in our case.
A note on the binomial distribution: we can define success and failure any way we want. Anyway:
size=10
success=0.8--probability that Hannah will answer any question wrong is 4/5, or 0.8.
Distribution appears slightly left-skewed.
#2. For any binomial distribution, if we are looking for number of successes:
mu=np
n=number of trials
p=probability of success
Again, we are ironically defining success as missing multiple-choice questions, so:
n=10
p=0.8
mu=10*0.8= 8
#3. Formula for standard deviation of binomial distribution is:
sigma=sqrt(n*p*(1-p)) where:
sigma=standard deviation
n=number of trials
p=probability of "success"
Again, we define success ironically here as incorrect answers, so:
n=10
p=0.8
sigma=sqrt(10*0.8*0.2)
sigma=1.265
#4. Center--essentially mean--should be much lower for x here than for y in the previous scenario. Recall:
mu=np, so, if we define success as correct answer for x:
mux=10*0.2=2
muy=10*0.8=8
Variability (spread) is generally measured by standard deviation, which is identical. Recall:
sigma=sqrt(n*p*(1-p))
It will not matter which probability we call p because of the inclusion of 1-p.
sigmax=sqrt(10*0.2*0.8)=1.265
sigmay=sqrt(10*0.8*0.2)=1.265
So, spread or standard deviation should be essentially identical for X and Y.
As for shape, I can't post a graph here due to character limits, but just use the same R code as in part #1 and change the probability to 0.2. You will get a right-skewed histogram. Shape of X is slightly right-skewed while shape of y is slightly left-skewed.
I hope this helps.