I had a questions about 2-sided p-values in a binomial distribution:
Given the symmetric shape of a binomial dist. when $p = 0.5$, why the below observations (i.e., 2 and 13) which have exact opposite positions in such a binomial dist. don't have the same probability. In R, this inequality is shown as follows:
pbinom( 2, 15, prob = .5) # 0.00369
pbinom(13, 15, prob = .5, lower.tail = F) # 0.000488