Lottery games let you pay $\$1$ in exchange for filling gout a ticket with six different numbers, that range from $1$ to $49$. How many ways are there to fill out the ticket?
I believe since the numbers have to be different, then we need to use combinations in the following way where we remove 1 number from the range and calculate the number of combinations for the next slot:
$\binom{49}{1} + \binom{48}{1} + \binom{47}{1} + \binom{46}{1} + \binom{45}{1} + \binom{44}{1}$
The sum of above expression will yield the number of ways to fill out the ticket. Is this correct?