diff --git a/xml/chapter1/section2/subsection2.xml b/xml/chapter1/section2/subsection2.xml index 11673bd91..b733d57f8 100644 --- a/xml/chapter1/section2/subsection2.xml +++ b/xml/chapter1/section2/subsection2.xml @@ -675,7 +675,11 @@ f_recursive(5); that computes elements of Pascals triangle by means of a recursive process. - + + Assuming that we count the rows of the triangle from the top starting + at 1 and the numbers in each row using indices from left to right + starting at 1, the following function computes the number in the + triangle in a given row at a given index. pascal_triangle example_1.13