What is the probability that a 75% free throw shooter, given the assumptions listed below, can make at least $5$ in a row of $10$ shots? So in effect he must make $5$, $6$, $7$, $8$, $9$, or all $10$ in a row. He only gets $10$ shots total.
The main difference of this question vs. others I've seen on this site is that mine asks for "in a row" which changes the math needed to solve it. I can solve this using placeholders using a divide and conquer method but I was told a recurrence relation can be used so I would like to see that solution method please.
Some assumptions:
A) The 75% free throw (f.t.) percentage remains constant during the 10 shots. So things like fatigue, distractions... are not of any concern for this question. The shooter is a professional and the 75% is his average over a long period of time as a professional so it can be considered a very accurate prediction of his future f.t. performance.
B) The shooter makes an honest attempt to make as many shots as he can (in other words, he doesn't intentionally miss any shots).
C) When I say at least $5$ in a row, I am talking about the longest streak only of the made shots so for example, using $M$ for make and $x$ for miss, this is NOT considered $5$ in a row $MMMxxxMMxx$ because the longest streak of makes is only $3$ in a row. However, $xxMMMMMxxx$ is $5$ in a row. Note that $MMMMxMMMMx$, even though it is $8$ out of $10$ made shots, is only considered $4$ in a row for this question (kinda like in bowling, $2$ strikes in a row, then an open frame, then a single strike is not considered a "turkey" ($3$ strikes in a row)).
D) Note that when I ask for the "longest" streak of makes, it could actually be the only streak (such as all $10$ in a row) or it could be the longer streak (if there are only $2$ streaks of makes) so I wanted to clarify that. Also cases such as $MMxMMxMMxx$ has no longest make streak (they are all of length $2$), but 2 is considered the "longest" in this case.
A bonus question related to this main question is which is the shooter more likely to get, $8$ in a row or all $10$ in a row?
Thank you.