I am trying to calculate the probability of guessing 70 or more correct answers on a 100 question test with 4 answer choices (so 25% chance of guessing correctly on each answer) to illustrate that even a "C" student actually does quite well compared with random guessing.
My understanding of R suggests that 1 − pbinom(69,100,0.25) should be the answer, but R outputs "0" I have tried options(digits=20) and the "mpfr" package but have been unsuccessful.
What is the best way to calculate the answer?
Thanks!