How Many Small Triangles to Make the 100th Figure?
Ever stared at a stack of paper‑cut triangles and wondered how many little ones you’d need to build the 100th shape in the series? It’s a question that pops up in math contests, in classroom demos, and even in those viral TikToks where someone turns a single triangle into a thousand. Let’s dig into the math, the trick behind the pattern, and how you can count them fast Not complicated — just consistent..
What Is the “100th Figure” Anyway?
When people talk about “figures” in this context, they’re usually referring to a set of equilateral triangles arranged in a larger triangle shape. Think of it like a pyramid made of paper cuts: the first figure has one triangle, the second has three, the third has six, and so on. Each figure is a triangular number—a number that can form an equilateral triangle when you arrange dots or, in our case, little triangles The details matter here..
The sequence goes: 1, 3, 6, 10, 15, …
These are the triangular numbers (T_n = \frac{n(n+1)}{2}). Practically speaking, that formula is the key. It tells you how many triangles fit into the (n)‑th figure No workaround needed..
So, the 100th figure means we’re looking at the 100th triangular number, but with a twist: we want to know how many small triangles make it up, not just the big ones. The trick is that each larger triangle contains many smaller ones, and the count grows quickly.
Why This Matters / Why People Care
You might wonder why you’d ever need to know how many small triangles are in a big one. A few reasons pop up in real life:
- Design & Art: Patterns in textiles or architectural tiles often rely on triangular grids. Knowing the count helps you plan materials.
- Computer Graphics: 3‑D models use triangular meshes. Calculating vertex counts is essential for optimization.
- Education: It’s a classic “show me the pattern” problem that trains pattern recognition and algebraic thinking.
- Games & Puzzles: Some board games and puzzle designs hinge on triangular arrangements. Knowing the math can give you a strategic edge.
So, if you’re a designer, coder, teacher, or just a math lover, this little counting trick can save you time and spark some creative ideas.
How It Works (or How to Do It)
1. Understand the Basic Pattern
The first figure is a single triangle.
The second figure is a triangle made of three smaller triangles.
The third figure is a triangle made of six smaller triangles, and so on.
If you draw the first few, a pattern emerges: each new figure adds a row of triangles below the previous one. So naturally, that row has one more triangle than the row above it. It looks a lot like the triangular numbers we mentioned That's the part that actually makes a difference..
2. Count Small Triangles in a Single Figure
For a figure built from (n) rows of small triangles, the number of small triangles inside is the sum of the first (n) triangular numbers. Consider this: why? Because each row contributes a triangular number of small triangles.
Mathematically: [ S_n = \sum_{k=1}^{n} T_k = \sum_{k=1}^{n} \frac{k(k+1)}{2} ] Simplifying that sum gives a neat formula: [ S_n = \frac{n(n+1)(n+2)}{6} ] This is the tetrahedral number—the 3‑dimensional analogue of triangular numbers. It tells you how many unit triangles fit into a 3‑D pyramid of side length (n).
3. Apply It to the 100th Figure
If the 100th figure has 100 rows of small triangles, plug (n = 100) into the formula: [ S_{100} = \frac{100 \times 101 \times 102}{6} ]
Let’s crunch it step by step:
- Multiply 100 × 101 = 10,100
- Multiply that by 102 = 1,030,200
- Divide by 6 = 171,700
So the 100th figure contains 171,700 small triangles Most people skip this — try not to..
That’s a lot of little shapes! And it’s neat because the formula scales. If you ever need the 200th figure, just swap 100 for 200 and do the same math.
4. Quick Mental Math Trick
If you’re in a hurry and don’t want to pull out a calculator, remember that: [ \frac{n(n+1)(n+2)}{6} = \frac{n(n+1)}{2} \times \frac{n+2}{3} ] So for (n = 100):
- First compute the 100th triangular number: (\frac{100 \times 101}{2} = 5,050).
- Then multiply by (\frac{102}{3} = 34).
- (5,050 \times 34 = 171,700).
This two‑step method is handy for mental math or quick checks.
Common Mistakes / What Most People Get Wrong
-
Confusing the count of large triangles with small ones
The 100th figure has 100 large triangles (one per row). But the question is about small triangles, which explode in number Most people skip this — try not to. But it adds up.. -
Using the wrong formula
Some people mistakenly use (T_n = \frac{n(n+1)}{2}) directly, which gives 5,050 for the 100th figure—just the number of large triangles. Forgetting to sum those triangular numbers leads to a huge undercount Took long enough.. -
Ignoring the extra row
The formula (\frac{n(n+1)(n+2)}{6}) includes an extra ((n+2)) factor that accounts for the third dimension of the pyramid. Dropping it gives the wrong result. -
Rounding errors in mental math
When doing quick mental math, it’s easy to slip on the division by 6 or misplace a decimal. Double‑check the intermediate steps. -
Assuming all triangles are the same size
In some visual puzzles, small triangles can be inverted or rotated. Make sure you’re counting only the unit triangles that fit perfectly It's one of those things that adds up..
Practical Tips / What Actually Works
- Draw it out: For small (n) (say up to 10), sketching the figure helps you see the pattern and verify the formula.
- Use a spreadsheet: If you’re dealing with very large (n) (thousands or more), input the formula into Excel or Google Sheets. It’ll give you instant results and double‑check your mental math.
- Remember the shortcut: (\frac{n(n+1)(n+2)}{6}). Memorize it, and you’ll be able to answer “how many small triangles in the 100th figure?” in a heartbeat.
- Check with a known value: For (n=4), the formula gives (\frac{4 \times 5 \times 6}{6} = 20). Counting on paper confirms 20 small triangles in the 4th figure.
- Use modular arithmetic for huge numbers: If you need the answer modulo 1,000,000,000 (common in programming contests), compute each multiplication modulo that number to avoid overflow.
FAQ
Q1: What if the figure isn’t a perfect triangle?
A1: The formula only works for equilateral triangular arrangements. If the shape is irregular, you’ll need to count manually or adjust the formula based on the geometry Worth keeping that in mind..
Q2: Can I use this for non‑equilateral triangles?
A2: As long as the smaller triangles are congruent and fit perfectly into the larger shape, the counting logic stays the same. The side lengths don’t affect the count, only the arrangement Surprisingly effective..
Q3: How do I find the number of triangles of a specific size within the 100th figure?
A3: That’s a deeper combinatorial problem. For unit triangles, use the tetrahedral number. For larger triangles (e.g., made of 4 small triangles), you’d divide the side length by the size of the sub‑triangle and apply a similar counting formula.
Q4: Is there a general formula for the kth figure?
A4: Yes. The number of small triangles in the kth figure is (\frac{k(k+1)(k+2)}{6}). Replace k with any integer to get the answer.
Q5: Why is this called a “tetrahedral number”?
A5: Because if you stack the triangular layers into a 3‑D pyramid, the shape is a tetrahedron. The count of unit tetrahedra in a larger one is analogous to our triangle count.
Closing Thought
Counting small triangles in a big figure isn’t just a math puzzle—it’s a window into how patterns scale, how formulas emerge from simple observations, and how a single line of algebra can solve a seemingly daunting problem. That said, next time you see a stack of paper triangles or a tiled floor, remember the hidden 171,700 that could be lurking beneath the surface. And if you’re ever stuck, just bring the trusty formula (\frac{n(n+1)(n+2)}{6}) into the mix—your math brain will thank you.