返回题库

AIME 1992 · 第 6 题

AIME 1992 — Problem 6

专题
Contest Math
难度
L4
来源
AIME

题目详情

Problem

For how many pairs of consecutive integers in {1000,1001,1002,,2000}\{1000,1001,1002,\ldots,2000\} is no carrying required when the two integers are added?

解析

Solution 1

For one such pair of consecutive integers, let the smaller integer be 1ABC,\underline{1ABC}, where A,B,A,B, and CC are digits from 00 through 9.9.

We wish to count the ordered triples (A,B,C).(A,B,C). By casework, we consider all possible forms of the larger integer, as shown below.

AIME diagram

Together, the answer is 53+52+5+1=156.5^3+5^2+5+1=\boxed{156}.

~MRENTHUSIASM

Solution 2

Consider what carrying means: If carrying is needed to add two numbers with digits abcdabcd and efghefgh, then h+d10h+d\ge 10 or c+g10c+g\ge 10 or b+f10b+f\ge 10. 6. Consider c{0,1,2,3,4}c \in \{0, 1, 2, 3, 4\}. 1abc+1ab(c+1)1abc + 1ab(c+1) has no carry if a,b{0,1,2,3,4}a, b \in \{0, 1, 2, 3, 4\}. This gives 53=1255^3=125 possible solutions.

With c{5,6,7,8}c \in \{5, 6, 7, 8\}, there obviously must be a carry. Consider c=9c = 9. a,b{0,1,2,3,4}a, b \in \{0, 1, 2, 3, 4\} have no carry. This gives 52=255^2=25 possible solutions. Considering b=9b = 9, a{0,1,2,3,4,9}a \in \{0, 1, 2, 3, 4, 9\} have no carry. Thus, the solution is 125+25+6=156125 + 25 + 6=\boxed{156}.

Solution 3

Consider the ordered pair (1abc,1abc1)(1abc , 1abc - 1) where a,ba,b and cc are digits. We are trying to find all ordered pairs where (1abc)+(1abc1)(1abc) + (1abc - 1) does not require carrying. For the addition to require no carrying, 2a,2b<102a,2b < 10, so a,b<5a,b < 5 unless 1abc1abc ends in 0000, which we will address later. Clearly, if c{0,1,2,3,4,5}c \in \{0, 1, 2, 3, 4 ,5\}, then adding (1abc)+(1abc1)(1abc) + (1abc - 1) will require no carrying. We have 55 possibilities for the value of aa, 55 for bb, and 66 for cc, giving a total of (5)(5)(6)=150(5)(5)(6) = 150, but we are not done yet.

We now have to consider the cases where b,c=0b,c = 0, specifically when 1abc{1100,1200,1300,1400,1500,1600,1700,1800,1900,2000}1abc \in \{1100, 1200, 1300, 1400, 1500, 1600, 1700, 1800, 1900, 2000\}. We can see that 1100,1200,1300,1400,15001100, 1200, 1300, 1400, 1500, and 20002000 all work, giving a grand total of 150+6=156150 + 6 = \boxed{156} ordered pairs.

Solution 4 (Complementary Counting)

Since there are 20001000+1=10012000-1000+1 = 1001 numbers in the set, this means that there are 10001000 consecutive pairs of integers (a,b)(a, b) in the set. For a pair to carry over, either the hundreds digits will carry over, the tens digits will carry over, or the ones digits will carry over.

For the hundreds digits, every consecutive pair in {1500,1501,...,2000}\{1500, 1501, ..., 2000\} will have to carry over, except for the pair {1999,2000}\{1999, 2000\} when no carrying occurs, removing 5001=499500-1 = 499 pairs.

Now, consider the case when the tens digit is more than 5. Every pair of consecutive integers from {1050,1051,...,1100}\{1050,1051, ..., 1100\} will have to carry over except for the pair {1099,1100}\{1099, 1100\}, and since there are 5 of these cases less than 15001500 (namely the integers from 105011001050-1100, 115012001150-1200, 125013001250-1300, 135014001350-1400, and 145015001450-1500) this removes 495=24549 \cdot 5 = 245 pairs from the list.

Now, consider the case where the ones digits carry over. In this case, every pair of consecutive integers from {1005,1006,1007,1008,1009}\{1005, 1006, 1007, 1008, 1009\} carries over, removing 4 pairs. Since there are 5 possible cases for the tens digit (040-4) and 5 possible cases for the hundreds digit, there are 455=1004 \cdot 5 \cdot 5 = 100 more cases to be excluded.

In total, there are 1000499245100=1561000 - 499 - 245 - 100 = \boxed{156} consecutive pairs.

~Soupboy0