find n if c(n,3)=120

One way to solve is to look at a Combinations version of Pascal's triangle. Find the diagonal along which all the "choose 3" combinations live. Then compare this to the Number version of Pascal's triangle to see where 120 occurs, and you'll quickly see what n is.