Another way to approach the problem might be to consider each point an independent event. Thus, what is the probability that you win a point?
Based on your 7-4 average score, we can roughly assume that your opponent wins a point with a probability of 7/11 and you win with a probability of 4/11.
Then we just need to figure out the probability that you get to 7 points before your opponent gets to 7 points given those probabilities. I am certain there is an exact answer, but for me it is easier to simulate it.
R Code
Code:
outcome <- c("win", "lose")
sims <- 1000000
wins <- 0
losses <- 0
for(i in 1:sims) {
game <- sample(outcome, 13, prob=c(4/11, 7/11), replace=T)
winsum <- sum(game=="win")
losesum <- sum(game=="lose")
if(winsum >= 7) {wins <- wins + 1}
if(losesum >= 7) {losses <- losses + 1}
}
wins / sims
losses / sims
After 1,000,000 trials you won 15.31% of the time. So I'd estimate your probability of winning at about 15%.
edit: Ok...pokerfarian beat me to the post...and made me feel like an idiot because it definitely was not easier to simulate it. I just stopped thinking.