← 패턴 해부도

패턴 해부도

각 패턴을 구조부터 멤버까지.

units-digit-tracking

순위 13/19 0.8% 전체 AMC 문제 중 학년 4–4

Determine the last digit of a multi-digit arithmetic expression by tracking only the units digit through additions and subtractions. Exploits that the ones column is closed under mod 10, so the bulk of the digits can be ignored.

10문제 풀기변형 문제 18개 있음
지금 풀어보기
대표 문제
풀러 가기 →
27년간 추세
1999–2026 ↑ 100%
2026 예상 슬롯

풀이 전략

주요 도구 simplifyfind-patterns
무엇을 살펴볼까
  • Swap repeated_digit from 2 to 7 — units digit pattern shifts but strategy is identical
  • Mix in one addition among the subtractions to force students to track sign carefully
  • For an easier Grade-3 variant use addition only with 3-digit operands

세부 유형 분포 (3)

한 줄을 클릭하면 그 안의 문제를 볼 수 있어요.

  • power-cycle-lookup 43% (3)

    Find the units digit of a base raised to a large exponent (possibly added to other such terms). Reduce the base to its units digit, compute the first few powers to expose a short repeating cycle (length 1, 2, or 4), then index into that cycle using the exponent mod cycle length.

  • tail-collapses-to-zero 14% (1)

    A long sum or product chain where, past some index, every term has units digit 0 because a factor of 10 (or a 2-and-5 pair) appears in its construction. Compute the first few terms, notice where the units digit goes to 0 forever, discard the tail, and sum the finite prefix mod 10.

  • digitwise-additive-reduction 43% (3)

    A multi-term expression built only from addition and subtraction of specific concrete numbers (no exponents, no recursion). Replace each term with just its units digit, then add or subtract those single-digit values mod 10 to read off the answer.

더 보기 (연도 추세, 도구 fingerprint, 학년 분포, 전체 문제)
7
members
1999–2026
활동 연도
연도별 빈도

도구 fingerprint (1–17)

학년 분포

  • Gr 4
    3
  • Gr 5
    1
  • Gr 8
    1