What is the total number of ways in which the poker hand is full of house that is you have to pick 5 cards out of 52 cards such that it contains exactly 3 cards with the same value.
Example a card consisting of 3 sixes and 1 king and 1 queen is a full of house.
And my solution is for the first 2 card can be different and rest of remaining cards needed to be same
13*12*11 = 1716
I think my approach is wrong as the answer given in the book is 3744.
Can someone tell me what I am missing and how can I extend this to pick 5 card such that atleast 3 of them have the same value.
What you are describing is not a full house, but a three of a kind. For a full house, there will be $3$ cards of the same value, and the remaining $2$ cards will share a different value. For example, three sixes and two queens is a full house.
Don't forget that for each value, there is one card of each suit, for a total of $4$ cards of each value.
Now, to get a full house, you will need to pick two different values: one for the trio and one for the pair. We can do this in $13\cdot12$ different ways. Once we have chosen the value for the trio, we must pick three of the four suits, which we can do in $\binom43=4$ ways. Once we have chosen the value for the pair, we must pick two of the four suits, which we can do in $\binom42=6$ ways. Hence, we have $$13\cdot12\cdot4\cdot6=3744$$ different ways.