Answer:

Explanation:
Pascal’s triangle defines the coefficients which appear in binomial expansions. That means the nth row of Pascal’s triangle comprises the coefficients of the expanded expression of the polynomial (a + b)ⁿ
To create Pascal's triangle for any n in (a + b)ⁿ ,
- To build the triangle, start with "1" at the top, then continue placing numbers below it in a triangular pattern.
- Each number is the numbers directly above it added together. Add the upper left and upper right diagonals to compute an entry. If a diagonal does not exist, use 0
- The first and last entries in each row are 1
- Each row of the triangle represents the coefficients of the binomial expansion of (a + b)ⁿ where n starts at 0
Here is Pascal's triangle for the first 5 rows. The first row is row 0
Row #
0 1
1 1 1
2 1 2 1
3 1 3 3 1
4 1 4 6 4 1
=





For the specific problem, (4x + 3y)³ use coefficients of row 3 and use 4x instead of a and 3y instead of b

