I'm trying to answer a question using Pascal's triangle to expand binomial functions, and I know how to do it for cases such as (x+1) which is quite simple, but I'm having troubles understanding and looking for a pattern when the question changes to (x+2)^n
I understand that (x+1)^3 would be x^3 + 3x^2 + 3x + 1 ; Using pascal's triangle
But I do not understand how to expand (x+2)^ 3 using pascal's triangle; I'm not sure what to do with the constant value 2 or any other value aside from 1 in this case.

$$(x+1)^3=1(x^3)(1^0)+3(x^2)(1^1)+3(x^1)(1^2)+1(x^0)(1^3)$$ If you can discern the pattern, it's a logical step toward being able to expand $(x+2)^3$.