There are n total balls in the urn containing red and blue colors with unknown ratios. k red balls can be anywhere from 0 to n being equally likely and the remaining n-k will be blue balls. What is the probability of k red balls in the urn if the first ball drawn is red? What is the probability of k red balls in the urn if the first ball drawn is red without replacement and the second ball drawn is blue?
I know that Bayes's rule will be applied to find out the probability of red balls present in the given. I think P(k red balls) = 1/(n+1) and P(n-k blue balls) = n/n+1
Further, Bayes's formula will be applied so that
P(k red balls|ball drawn is red) = {P(ball drawn is red | k red balls)*P(k red balls)}/P (ball drawn is red)
But I am stuck as to how to use this to find the answer.