Grade 1 Math: Teen Numbers - Building Confidence in Math

My son is in first grade and really struggling with understanding teen numbers. He gets confused when they go above 10. I'm looking for easy ways to explain them and build his confidence so he doesn't get discouraged with math early on.

1 Answers

✓ Best Answer

Understanding Teen Numbers 🔢

Teen numbers (11-19) can be tricky for first graders because they don't follow the same naming pattern as other numbers. They are essential for building a strong foundation in place value and addition.

Breaking Down the Basics 🧱

Explain that teen numbers are made up of a ten and some ones. Use visual aids like blocks or drawings to demonstrate this concept. For example:

  • 11 is one ten and one one.
  • 15 is one ten and five ones.
  • 19 is one ten and nine ones.

Using Manipulatives 🖐️

Hands-on activities are great for reinforcing understanding:

  1. Ten Frames: Use ten frames to represent teen numbers. Fill one ten frame completely and then add extra counters to the second frame to show the ones.
  2. Base Ten Blocks: Use base ten blocks where a 'rod' represents ten, and single blocks represent ones. Have your child build teen numbers using these blocks.

Relating to Addition ➕

Connect teen numbers to addition problems. Show that a teen number can be broken down into 10 + [some number]. For example:

  • 12 = 10 + 2
  • 17 = 10 + 7

Practice writing these addition sentences to reinforce the concept.

Games and Activities 🎲

Make learning fun with games:

  • Teen Number Bingo: Create bingo cards with teen numbers and call out addition problems (e.g., 10 + 3).
  • Matching Game: Create cards with teen numbers and corresponding representations (ten frames, blocks). Have your child match the pairs.

Real-World Examples 🌎

Relate teen numbers to real-world situations. For example:

"We have 14 apples. That's one bag of ten apples and four more apples."

Building Confidence 💪

Encourage your child and celebrate their progress. Positive reinforcement can go a long way in building their confidence in math. Start with easier numbers and gradually increase the difficulty.

Example Code (for advanced learners) 💻

Here's a simple Python example to visualize teen number decomposition:


def decompose_teen_number(number):
    if 11 <= number <= 19:
        tens = 10
        ones = number - 10
        return f"{number} = {tens} + {ones}"
    else:
        return "Number must be between 11 and 19"

print(decompose_teen_number(15))

Know the answer? Login to help.