Step-by-Step Guide to Grade 1 Teen Number Formation

My Grade 1 student is struggling to understand how teen numbers (11-19) are formed. Can you provide a step-by-step guide to help me teach this concept effectively?

1 Answers

✓ Best Answer

Understanding Teen Numbers for Grade 1 🧮

Teen numbers (11-19) can be tricky for Grade 1 students because they don't directly follow the naming pattern of numbers 1-10. This guide breaks down the process into manageable steps, focusing on place value and visual aids.

Step 1: Review Numbers 1-10 🔢

Before introducing teen numbers, ensure your student has a solid understanding of numbers 1 through 10. Practice counting, writing, and representing these numbers with objects.

Step 2: Introduce the Concept of 'Ten' 🖐️🖐️

Explain that 'ten' is a group of 10 individual items. Use manipulatives like counters, blocks, or even fingers to demonstrate this. For example:

  • Gather 10 small objects (e.g., counters).
  • Explain: "These 10 counters together make one group of ten."

Step 3: Introducing Numbers 11-19 as 'Ten and Some More' ➕

This is the core concept. Explain that teen numbers are formed by having 'one ten' and then some additional ones.

  1. Start with 11: Show the group of 10 counters. Then, add one more counter. Explain: "This is ten and one more. We call it eleven."
  2. Continue with 12: Keep the group of 10. Add two more counters. Explain: "This is ten and two more. We call it twelve."
  3. Repeat for 13-19: Follow the same pattern, adding one more counter each time and explaining the corresponding number name.

Step 4: Visual Representation with Place Value Charts 📊

Introduce a simple place value chart with two columns: 'Tens' and 'Ones'.

  • For the number 11, place '1' in the 'Tens' column (representing one group of ten) and '1' in the 'Ones' column (representing one additional one).
  • For the number 15, place '1' in the 'Tens' column and '5' in the 'Ones' column.
  • Continue this for all teen numbers.

Step 5: Practice Writing Teen Numbers ✍️

Provide practice worksheets where students can write teen numbers. Include activities like:

  • Tracing teen numbers.
  • Writing teen numbers from dictation (you say the number, they write it).
  • Matching numbers to their corresponding representations (e.g., matching '13' to a picture of one ten and three ones).

Step 6: Reinforcement Activities and Games 🎲

Make learning fun with games and activities:

  • Teen Number Bingo: Create bingo cards with teen numbers. Call out the numbers and have students mark them off.
  • Matching Games: Create cards with teen numbers and corresponding pictures (e.g., a card with '16' and a card with a picture of one ten and six ones). Have students match the pairs.
  • Online Games: Utilize educational websites and apps that offer interactive games for learning teen numbers.

Step 7: Real-World Connections 🌍

Relate teen numbers to real-world situations:

  • "We have 14 crayons in the box."
  • "There are 17 students in the class."

Example Code Snippet for a Simple Teen Number Game (Python) 💻


import random

def teen_number_game():
    number = random.randint(11, 19)
    print("I'm thinking of a teen number between 11 and 19.")
    guess = int(input("What is your guess? "))

    if guess == number:
        print("Congratulations! You guessed it!")
    else:
        print(f"Sorry, the number was {number}.")

teen_number_game()

Key Takeaways 🔑

  • Teen numbers are 'ten and some more'.
  • Use manipulatives and visual aids to illustrate the concept.
  • Practice writing and recognizing teen numbers regularly.
  • Make learning fun with games and real-world connections.

Know the answer? Login to help.