If your \(x = 542\) (ie the number of “successes” and your \(n = 3611\), this is how you can have R calculate a 90% Confidence Interval for you.
binom.test(x = 542, n = 3611, conf.level = .90)[["conf.int"]]
## [1] 0.1403939 0.1602214
## attr(,"conf.level")
## [1] 0.9
25.
Point estimate = 0.181
341.8 ??? 10; less than 5% of the population is included in the sample
lower bound = .1678 ; upper bound = .1942
90% confidence that the range for people who donated blood ranges between .168 and .194
26.
Point estimate = .43
282 ??? 10; less than 5% of the population is included in the sample
lower bound: .4; upper bound: .46
95% confidence lies between the range .4 and .46
27.
Point estimate= .52
250.34 ??? 10; less than 5% of the population is included in the sample.
lower bound: .489; upper bound: .551
no, since it is outside the confidence interval
95% confidence range lies between .450 and .512
28.
Point estimate= .75
192 ??? 10; less than 5% of the population is included in the sample.
lower bound: .72; upper bound .78
no since the range is between .72 and .78
99% confidence suggests that range lies between .28 and .22
29.
95% confidence interval lies between .07 and 1.5
99% confidence interval lies between .6 and .16
the margin for error increases as the level of confidence increases since margin for error for 95% was +-.04, for 99% was +- .05