Grade 1 Math Levels

Welcome to Grade 1 Math Bubbles!

Perfect for first graders! These levels focus on counting to 40, skip counting patterns, and number sequence mastery.

What your child will learn: Counting to 40, skip counting by 5s and 10s, backwards counting by 5s, and even numbers to 40.

Level 1

Count fast! Pop bubbles in order from 1 to 40 before time runs out.

Number Bubble - Challenge yourself to count to 40—see how many you can pop before the clock stops!

Level 2

Pop the bubbles counting by tens from 10 up to 100.

Number Bubble - Build math foundations by skip counting by tens, a must-have for future math success!

Level 3

Pop bubbles counting by fives from 5 to 100. Finish in 40 seconds!

Number Bubble - Race through skip counting by fives—great for speed and accuracy in early math skills!

Level 4

Which bubble is different? Pop the bubble that does not fit the pattern.

Number Bubble - Test your logic! Spot the rule breaker and practice number patterns in this engaging game!

Level 5

Pop only the even number bubbles up to 40 as fast as you can!

Number Bubble - Push your skills further with even number pop! Beat the timer to master number sets.

Level 6

Pop the bubbles backwards by fives from 50 down to 5. Quick, you have 20 seconds!

Number Bubble - Counting backwards by fives boosts memory and math power. Ready for a challenge?

// Preserve inClassroom parameter in all links function addClassroomParamToLinks() { const urlParams = new URLSearchParams(window.location.search); const inClassroom = urlParams.get('inClassroom'); if (inClassroom === 'true') { // Add inClassroom=true to all internal links const links = document.querySelectorAll('a[href]:not([href^="http"])'); links.forEach(link => { const href = link.getAttribute('href'); if (href && !href.includes('inClassroom')) { const separator = href.includes('?') ? '&' : '?'; link.setAttribute('href', `${href}${separator}inClassroom=true`); } }); } } // Initialize updateProgress(); addClassroomParamToLinks();