185k views
14 votes
Write a function f(b) that determines the number of

triangles in any given level of the pyramid.

Write a function f(b) that determines the number of triangles in any given level of-example-1

1 Answer

9 votes

Answer:

f(l) = l/3

Explanation:

A clue to the functional relation is often found in the differences between values in the table.

Here the differences between "level" values are all 3. The differences between "triangles" values are all 1. The constant differences suggest the relation is linear. We note that all "triangles" values are 1/3 the "level" values.

f(l) = (1/3)l

User Arychj
by
3.5k points