Given two random variables x and y with different uniform distribution, i.e., $0\le x \le 1$ and $0.75\le y\le 1$. Find the probability of $x\ge y$ when $x$ and $y$ are chosen randomly.
What I tried was finding probability of $x\le y$ which will be sum of two cases, when $x\le 0.75$ and when $x\ge0.75$: $P(x\le y) = (3/4)(1) + (1/4)(1/2) = 7/8$.
Thus $P(x\ge y) = 1 - 7/8 = 1/8$. Is this right?
If x lands between 0 and 0.75, y will always be greater. $ (3/4)∗(1) $
If x lands between 0.75 and 1, y will be greater 50% of the time, as both are uniform. $ (1/4)*(1/2) $
I agree with your calculations.