what is pascal's triangle
Answers
The rows of Pascal's triangle are conventionally enumerated starting with row n = 0 at the top (the 0th row). The entries in each row are numbered from the left beginning with k = 0 and are usually staggered relative to the numbers in the adjacent rows. The triangle may be constructed in the following manner: In row 0 (the topmost row), there is a unique nonzero entry 1. Each entry of each subsequent row is constructed by adding the number above and to the left with the number above and to the right, treating blank entries as 0. For example, the initial number in the first (or any other) row is 1 (the sum of 0 and 1), whereas the numbers 1 and 3 in the third row are added to produce the number 4 in the fourth row.
The entry in the nth row and kth column of Pascal's triangle is denoted {\displaystyle {\tbinom {n}{k}}}. For example, the unique nonzero entry in the topmost row is {\displaystyle {\tbinom {0}{0}}=1}. With this notation, the construction of the previous paragraph may be written as follows:
{\displaystyle {n \choose k}={n-1 \choose k-1}+{n-1 \choose k}},
for any non-negative integer n and any integer k between 0 and n, inclusive.[3] This recurrence for the binomial coefficients is known as Pascal's rule.
Pascal's triangle has higher dimensionalgeneralizations. The three-dimensional version is called Pascal's pyramid or Pascal's tetrahedron, while the general versions are called Pascal's simplices.

Pascal's triangle:
Pascal's triangle is used to write the binomial coefficient in the triangular form. It was founded by Blaise Pascal, hence it is named as Pascal's triangle.
ㅤ
Some patterns of Pascal's triangle:
ㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤ ㅤㅤ1
ㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤ1 1
ㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤ1 2 1
ㅤㅤㅤㅤㅤㅤㅤㅤㅤ 1 3 3 1
ㅤㅤㅤㅤㅤㅤㅤ ㅤ1 4 6 4 1
ㅤㅤㅤㅤㅤㅤㅤ 1 5 10 10 5 1
So, explaining the pattern of above Pascal's triangle:
→ 0 = 1.
→ 1 = 1, 1.
→ 2 = 1 + 1 = 2.
→ 3 = 1 + 2 = 3, 2 + 1 = 3.
→ 4 = 1 + 3 = 4, 3 + 3 = 6, 3 + 1 = 4.
→ 5 = 1 + 4 = 5, 4 + 6 = 10, 6 + 4 = 10, 4 + 1 = 5.
ㅤ
Thank you.