But I want to confirm that the answer should be sum of GP from k to k power n ? |
What is T? Your questions is missing something? That aside, I believe you've incorrectly understood the question. Here's a simple example.
In this example, there are three (N=3) questions, with four (K=4) possible answers per question. You need 4*4*4 players in order to get one success.
First question:
64 players attempt this question, 16 (number of players in this round / number of possible answers = 64 / 4 = 16) make it through to the next round.
Second question:
16 players attempt this question, 4 make it through to the next round.
Third question:
4 players attempt this question, 1 wins the game.
You are asked to determine how many players attempt question i;
your task is to determine the sum of total number of players who has attempted ith question |
How many players attempt question 1 (i=1) ? 64
How many players attempt question 2 (i=2)? 16
How many players attempt question 3 (i=3)? 4
As you can see, the answer is NOT the sum of GP from k to k power n.
But what is T? Is T the number of games? Is each game different?