I'm having some trouble understanding how to calculate how many trials are needed before you expect to see a given event, I'm not sure what I've misunderstood yet.
I've followed these explanations so far:
https://www.cut-the-knot.org/Probability/LengthToFirstSuccess.shtml
https://www.geeksforgeeks.org/expected-number-of-trials-before-success/
Lets say we have a trial that produces an event $V$ with probability $0.3$, my understanding from the pages above is we expect to see event $V$ after $\frac{1}{0.3}$ trials, or $3.3$ trials.
But if we perform two trials, and look at the probability of seeing the event, don't we get 51%?
$$
0.3^2+0.3*0.7+0.7*0.3 = 0.51
$$
or
$$
1 - (0.7^2) = 0.51
$$
So I would expect to expect $V$ to happen when the number of trials is as low as 2.
Can anyone show me what I've misunderstood here please?
Just because you “expect” a certain thing to happen, that does not make it an “expected value.” It’s just a quirk of mathematical English.
Expected value means the average value. Sure, more than half the time, it only takes 1 or 2 trials. Still, there is a $0.3· (0.7)^2=14.7$% chance that it will take $3$ trials, there is a $0.3· (0.7)^3\approx 10.3$% chance that it will take $4$ trials, and so on. The expected value considers all of these possibilities, and averages them together. It just so happens that the events of taking $3,4,5\ldots$ trials are significant enough to push the average up to $3.3$ trials.